@kolkrabbi/kol-theme 0.49.0 → 0.50.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.
@@ -495,7 +495,6 @@
495
495
  align-items: center;
496
496
  justify-content: center;
497
497
  padding: 6px 16px; /* md — .kol-btn-md */
498
- background: transparent;
499
498
  border: none;
500
499
  cursor: pointer;
501
500
  white-space: nowrap;
@@ -504,6 +503,12 @@
504
503
  * overlap — oq-48 reads identical on the resting surface but stays
505
504
  * opaque. Hover/active use fg-emphasis, which is full ink (no alpha). */
506
505
  color: var(--kol-oq-48);
506
+ /* THE FILL IS THE UNSELECTED STATE (user ruling 2026-08-15 — "same exactly
507
+ * like before, just swapping stages"). The two treatments are unchanged;
508
+ * which state wears which is inverted. A rest cell is a raised tile you can
509
+ * press; the SELECTED one is the bare dark ground, because it is already
510
+ * where you are. */
511
+ background: var(--kol-surface-secondary);
507
512
  transition: color var(--kol-transition-base),
508
513
  background-color var(--kol-transition-base);
509
514
  }
@@ -512,15 +517,9 @@
512
517
 
513
518
  .kol-seg-cell:hover { color: var(--kol-fg-emphasis); }
514
519
 
515
- /* SELECTED IS THE INVERSE TILE (user ruling 2026-08-15) — a near-white fill
516
- * with dark ink, the same pair `/work`'s sliding pill uses (`bg-fg-96` over
517
- * `surface-primary` ink). It read as `surface-secondary`, which in dark theme
518
- * is a tile only a shade off the strip it sits in: the selected cell was the
519
- * QUIETEST thing in the control instead of the loudest, and the unselected
520
- * cells looked like the raised ones. */
521
520
  .kol-seg-cell.is-active {
522
- background: var(--kol-fg-96);
523
- color: var(--kol-surface-primary);
521
+ background: transparent;
522
+ color: var(--kol-fg-emphasis);
524
523
  }
525
524
 
526
525
  /* Reads the quiet ring token so the segmented strip is part of the system-wide
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kolkrabbi/kol-theme",
3
- "version": "0.49.0",
3
+ "version": "0.50.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",