@kolkrabbi/kol-theme 0.71.0 → 0.72.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.
@@ -1145,6 +1145,26 @@ a.kol-icon-frame {
1145
1145
  border: 1px solid transparent;
1146
1146
  }
1147
1147
 
1148
+ /* PlayDisc — the Finder play/pause disc on a media tile (PlayDiscAndVideoBar,
1149
+ * kol-r2b2 2026-08-27): a round `IconFrame secondary lg radius="full"`, hidden
1150
+ * at rest, shown on hover of the tile (`.kol-media-tile`) or on focus, over
1151
+ * full-bleed artwork. Declared AFTER the variants so it wins in-layer — the
1152
+ * consumer no longer restates bg-fg-inverse-64 / border-fg-96 beside the
1153
+ * variant. Absolute colours: it sits on artwork, not on the theme. NO
1154
+ * backdrop-filter — it flips the tile onto a composited layer on hover and the
1155
+ * artwork's saturation jumps (Chrome). */
1156
+ .kol-play-disc {
1157
+ background-color: color-mix(in srgb, var(--kol-surface-on-inverse) 64%, transparent);
1158
+ color: var(--kol-color-absolute-white);
1159
+ border: 2px solid color-mix(in srgb, var(--kol-surface-on-primary) 96%, transparent);
1160
+ box-shadow: 0 0 4px 3.5px rgba(0, 0, 0, 0.4);
1161
+ opacity: 0;
1162
+ transition: opacity var(--kol-transition-base);
1163
+ }
1164
+ .kol-play-disc svg { color: inherit; }
1165
+ .kol-media-tile:hover .kol-play-disc,
1166
+ .kol-play-disc:focus-visible { opacity: 1; }
1167
+
1148
1168
  /* ═══════════════════════════════════════════════════════════════
1149
1169
  * ThemeToggle — .kol-theme-toggle
1150
1170
  *
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kolkrabbi/kol-theme",
3
- "version": "0.71.0",
3
+ "version": "0.72.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",