@kolkrabbi/kol-theme 0.68.0 → 0.70.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -242,9 +242,11 @@
242
242
  * line-height, so a 10px chip inherited the body's ~1.5 and stood 22px tall
243
243
  * beside 14px rows. Two owners of one concept is the drift this repo keeps
244
244
  * paying for; the class owns the type, the rule owns the box. */
245
- .kol-tag--sm { padding: 2px 10px; }
246
- .kol-tag--md { padding: 4px 16px; }
247
- .kol-tag--lg { padding: 6px 20px; }
245
+ /* the SIZE carries its type (WorkListingRowsAndFilters, 2026-08-27): the helper
246
+ * rung that rode beside it in the atom (sm → 10 · md 12 · lg → 14) lives here. */
247
+ .kol-tag--sm { padding: 2px 10px; font-family: var(--kol-font-family-mono); font-size: 10px; line-height: 1; font-weight: 500; letter-spacing: 0.10em; }
248
+ .kol-tag--md { padding: 4px 16px; font-family: var(--kol-font-family-mono); font-size: 12px; line-height: 1; font-weight: 500; letter-spacing: 0.06em; }
249
+ .kol-tag--lg { padding: 6px 20px; font-family: var(--kol-font-family-mono); font-size: 14px; line-height: 1; font-weight: 500; letter-spacing: 0.06em; }
248
250
 
249
251
  /* primary — the filled chip. Mirrors .pill-subtle's weight. */
250
252
  .kol-tag--primary {
@@ -273,6 +275,28 @@
273
275
  border-color: currentColor;
274
276
  }
275
277
 
278
+ /* tertiary — secondary's fill, NO outline, the MONO voice at 80 (TagTertiary,
279
+ * kol-website 2026-08-27, ruled on /work's rows: the outline read wrong beside
280
+ * the display line and the helper voice was too loud under a title). The size
281
+ * classes carry the helper type by default; tertiary re-types them on the mono
282
+ * ramp — 10 / 12 / 14, weight 400, line-height 100%, 0.04em. */
283
+ .kol-tag--tertiary {
284
+ background-color: var(--kol-surface-primary);
285
+ color: var(--kol-fg-80);
286
+ border-color: transparent;
287
+ }
288
+ .kol-tag--tertiary:hover {
289
+ background-color: color-mix(in srgb, var(--kol-surface-on-primary) 08%, transparent);
290
+ border-color: transparent;
291
+ }
292
+ .kol-tag--tertiary.is-active {
293
+ background-color: color-mix(in srgb, var(--kol-surface-on-primary) 16%, transparent);
294
+ border-color: transparent;
295
+ }
296
+ .kol-tag--tertiary.kol-tag--sm { font-size: 10px; font-weight: 400; line-height: 100%; letter-spacing: 0.04em; }
297
+ .kol-tag--tertiary.kol-tag--md { font-size: 12px; font-weight: 400; line-height: 100%; letter-spacing: 0.04em; }
298
+ .kol-tag--tertiary.kol-tag--lg { font-size: 14px; font-weight: 400; line-height: 100%; letter-spacing: 0.04em; }
299
+
276
300
  /* StatusChip — the record-surface status control (reference: Framer CMS,
277
301
  * 2026-08-09; rebuilt off Tag onto the Dropdown-sm metrics the same day).
278
302
  * Tint + ink ride the --ui-* ladder; box/type live in the JSX (kol-btn-sm
@@ -928,6 +952,9 @@
928
952
  height: 100%;
929
953
  width: 100%;
930
954
  }
955
+ /* `thumb="fill"` (WorkListingRowsAndFilters, 2026-08-27): the row publishes
956
+ * `--kol-row-thumb` as the rung minus its vertical padding, so the square above
957
+ * IS the content height — `/work`: 136 in a 168 row at 16 padding. */
931
958
 
932
959
  /* CONTAINER query, not a viewport one (2026-08-15). The row steps on the width
933
960
  * of the WALL it sits in, for exactly the reason the card-wall law gives: the
@@ -302,6 +302,12 @@
302
302
  }
303
303
 
304
304
  .kol-feature-split-pull,
305
+ /* headlines BALANCE (WorkListingRowsAndFilters, 2026-08-27 — user: "don't leave
306
+ * one word, it's tacky"): no orphaned last word on any SectionText headline. */
307
+ .kol-section-text-headline {
308
+ text-wrap: balance;
309
+ }
310
+
305
311
  .kol-section-text-pull {
306
312
  margin: 0;
307
313
  font-family: var(--kol-font-family-sans);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kolkrabbi/kol-theme",
3
- "version": "0.68.0",
3
+ "version": "0.70.0",
4
4
  "description": "KOL (Kolkrabbi) design-system tokens + base CSS — brand-neutral. The canonical token/cascade layer every other KOL package and consumer builds on.",
5
5
  "license": "MIT",
6
6
  "type": "module",