@kolkrabbi/kol-theme 0.62.0 → 0.64.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.
@@ -900,8 +900,20 @@
900
900
  .kol-row--divided {
901
901
  border-bottom: 1px solid var(--kol-fg-08);
902
902
  }
903
+ /* THE THUMB IS A FIXED SQUARE BOX (ContentRowsAndPrintCard, kol-website
904
+ * 2026-08-27 — user: "the image should not control height, image should fit
905
+ * the row image placeholder"). Verbatim from the /stack + /prints tune: the
906
+ * box is `--kol-row-thumb` wide and square, sits at the top of the row, and
907
+ * whatever is inside fills it (ContentMedia object-covers). Row height =
908
+ * max(thumb, text) — an image's intrinsic height never sizes a row again. */
903
909
  .kol-row > .kol-row-thumb {
904
910
  width: var(--kol-row-thumb);
911
+ aspect-ratio: 1 / 1;
912
+ align-self: flex-start;
913
+ }
914
+ .kol-row > .kol-row-thumb > * {
915
+ height: 100%;
916
+ width: 100%;
905
917
  }
906
918
 
907
919
  /* CONTAINER query, not a viewport one (2026-08-15). The row steps on the width
@@ -983,6 +995,33 @@
983
995
  border-color 300ms var(--kol-ease-house);
984
996
  }
985
997
 
998
+ /* ContentCard `reveal` (TypefaceCardAndRow, kol-website 2026-08-27 — the
999
+ * shipped TypefaceLibraryItem's hover, verbatim): the plate and the media
1000
+ * fade OUT, the reveal node fades IN, all 300ms on the house curve. Keyed
1001
+ * on the card root, only when it carries a reveal (`has-reveal`). */
1002
+ .kol-card.has-reveal .kol-card-plate,
1003
+ .kol-card.has-reveal .kol-card-canvas-media,
1004
+ .kol-card.has-reveal .kol-card-reveal {
1005
+ transition: opacity 300ms var(--kol-ease-house);
1006
+ }
1007
+ .kol-card.has-reveal .kol-card-reveal {
1008
+ opacity: 0;
1009
+ }
1010
+ @media (hover: hover) {
1011
+ .kol-card.has-reveal:hover .kol-card-plate,
1012
+ .kol-card.has-reveal:hover .kol-card-canvas-media {
1013
+ opacity: 0;
1014
+ }
1015
+ .kol-card.has-reveal:hover .kol-card-reveal {
1016
+ opacity: 1;
1017
+ }
1018
+ }
1019
+ @media (prefers-reduced-motion: reduce) {
1020
+ .kol-card.has-reveal .kol-card-plate,
1021
+ .kol-card.has-reveal .kol-card-canvas-media,
1022
+ .kol-card.has-reveal .kol-card-reveal { transition: none; }
1023
+ }
1024
+
986
1025
  /* ─────────────────────────────────────────────────────────────────────
987
1026
  * The house expand — molecules/SearchInput.jsx · organisms/ContentFilters.jsx
988
1027
  *
@@ -1049,6 +1088,16 @@
1049
1088
  }
1050
1089
  }
1051
1090
 
1091
+ /* ContentMedia `fade` — the image fades in on load (PrintGridCard's 500ms,
1092
+ * carried to ContentCard print 2026-08-27). Opacity only; no relayout. */
1093
+ .kol-media-fade {
1094
+ opacity: 0;
1095
+ transition: opacity 500ms var(--kol-ease-house);
1096
+ }
1097
+ .kol-media-fade.is-loaded {
1098
+ opacity: 1;
1099
+ }
1100
+
1052
1101
  /* ─────────────────────────────────────────────────────────────────────
1053
1102
  * ContentText — the title dim (StackCardHover, 2026-08-27)
1054
1103
  *
@@ -270,6 +270,22 @@
270
270
  color: var(--kol-fg-emphasis);
271
271
  }
272
272
 
273
+ /* THE EYEBROW HAS ONE NAME (ContentRowsAndPrintCard, user 2026-08-27: "you have
274
+ * a class for eyebrow that's not called eyebrow but kicker? you think that's
275
+ * good practice?"). `kol-eyebrow` is the role — mono 12 · 500 · 0.06em ·
276
+ * uppercase · fg-64; the slot is `eyebrow` on ContentText and SectionText.
277
+ * `kol-card-kicker` is the alias below, on the retirement ledger. */
278
+ .kol-eyebrow {
279
+ font-family: var(--kol-font-family-mono);
280
+ font-size: 12px;
281
+ line-height: 1;
282
+ font-weight: 500;
283
+ letter-spacing: 0.06em;
284
+ text-transform: uppercase;
285
+ color: var(--kol-fg-64);
286
+ }
287
+
288
+ /* @deprecated 2026-08-27 → kol-eyebrow */
273
289
  .kol-card-kicker {
274
290
  font-family: var(--kol-font-family-mono);
275
291
  font-size: 12px;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kolkrabbi/kol-theme",
3
- "version": "0.62.0",
3
+ "version": "0.64.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",