@kolkrabbi/kol-theme 0.67.0 → 0.69.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 {
@@ -928,6 +930,9 @@
928
930
  height: 100%;
929
931
  width: 100%;
930
932
  }
933
+ /* `thumb="fill"` (WorkListingRowsAndFilters, 2026-08-27): the row publishes
934
+ * `--kol-row-thumb` as the rung minus its vertical padding, so the square above
935
+ * IS the content height — `/work`: 136 in a 168 row at 16 padding. */
931
936
 
932
937
  /* CONTAINER query, not a viewport one (2026-08-15). The row steps on the width
933
938
  * 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);
@@ -75,3 +75,11 @@
75
75
  transform: scale(0.3);
76
76
  transform-origin: top left;
77
77
  }
78
+
79
+ /* THE APP TIER'S SELECTION IS NEUTRAL (ShellHomeSystem, 2026-08-27): kol-framework
80
+ * paints ::selection brand-yellow, which is a SITE's; an app is not a site.
81
+ * AppShell wraps its tree in `.kol-app-shell`. */
82
+ .kol-app-shell ::selection {
83
+ background-color: var(--kol-fg-24);
84
+ color: inherit;
85
+ }
@@ -275,6 +275,9 @@
275
275
  * good practice?"). `kol-eyebrow` is the role — mono 12 · 500 · 0.06em ·
276
276
  * uppercase · fg-64; the slot is `eyebrow` on ContentText and SectionText.
277
277
  * `kol-card-kicker` is the alias below, on the retirement ledger. */
278
+ /* NO ink on the role (ShellHomeSystem, 2026-08-27): type roles set type, not
279
+ * colour — a baked fg-64 outranked every ink utility beside it. Consumers that
280
+ * relied on the 64 pass `text-body`; the `kol-card-kicker` alias keeps it. */
278
281
  .kol-eyebrow {
279
282
  font-family: var(--kol-font-family-mono);
280
283
  font-size: 12px;
@@ -282,7 +285,6 @@
282
285
  font-weight: 500;
283
286
  letter-spacing: 0.06em;
284
287
  text-transform: uppercase;
285
- color: var(--kol-fg-64);
286
288
  }
287
289
 
288
290
  /* @deprecated 2026-08-27 → kol-eyebrow */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kolkrabbi/kol-theme",
3
- "version": "0.67.0",
3
+ "version": "0.69.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",