@kolkrabbi/kol-theme 0.97.0 → 0.98.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.
@@ -672,7 +672,13 @@
672
672
  }
673
673
 
674
674
  .slider-black {
675
- --kol-slider-track: var(--kol-fg-64);
675
+ /* A FALLBACK, NOT A DECLARATION (SliderTrackVariableNotForwarded, kol-mirror
676
+ * 2026-08-30). This was `--kol-slider-track: var(--kol-fg-64)` set ON the
677
+ * element, and an element's own declaration beats anything it would inherit —
678
+ * so the override the component's docstring promised was unreachable from any
679
+ * ancestor. Consumers were reaching into `.slider-black` by specificity from
680
+ * their own stylesheets to get a track colour. `.kol-slider-dual-playhead`
681
+ * below had it right from the start; this now matches it. */
676
682
  -webkit-appearance: none;
677
683
  appearance: none;
678
684
  background: transparent;
@@ -686,13 +692,13 @@
686
692
  }
687
693
 
688
694
  .slider-black::-webkit-slider-runnable-track {
689
- background: var(--kol-slider-track);
695
+ background: var(--kol-slider-track, var(--kol-fg-64));
690
696
  height: 2px;
691
697
  border-radius: 0;
692
698
  }
693
699
 
694
700
  .slider-black::-moz-range-track {
695
- background: var(--kol-slider-track);
701
+ background: var(--kol-slider-track, var(--kol-fg-64));
696
702
  height: 2px;
697
703
  border-radius: 0;
698
704
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kolkrabbi/kol-theme",
3
- "version": "0.97.0",
3
+ "version": "0.98.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",