@kolkrabbi/kol-theme 0.38.0 → 0.39.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.
@@ -349,7 +349,8 @@
349
349
  text-align: left;
350
350
  border-radius: 0px;
351
351
  text-decoration: none;
352
- color: var(--kol-fg-64);
352
+ /* fg-64 → fg-80 (ShellNavItemInk, user ruling 2026-08-12) */
353
+ color: var(--kol-fg-80);
353
354
  cursor: pointer;
354
355
  transition: color 0.15s ease, background-color 0.15s ease;
355
356
  /* THE TEXT INDENT, named (2026-08-01). It was the last value of the padding
@@ -376,6 +377,9 @@
376
377
  * role set ends up with call sites that do not know it exists. */
377
378
  .shell-nav-item.is-active {
378
379
  color: var(--kol-fg-emphasis);
380
+ /* where-you-are steps 100 → 300 in weight beside its emphasis ink
381
+ * (ShellNavItemInk, user ruling 2026-08-12) */
382
+ font-weight: 300;
379
383
  }
380
384
 
381
385
  /* THIS PAGE'S OWN ROW — brighter than the rest of the list (user ruling
@@ -387,7 +391,11 @@
387
391
  * to live beside that rule. Same file, same specificity, declared later. */
388
392
  .shell-nav-item--own {
389
393
  color: var(--kol-fg-emphasis);
390
- font-weight: 500;
394
+ /* 500 → 300 (ShellNavItemInk, 2026-08-12): the --own tags block at 500 WAS
395
+ * the "one side light, one side medium" inconsistency — verified by
396
+ * computed-style probe: every non---own row in both rails rests at 100.
397
+ * Emphasis weight is now ONE step (300), shared with .is-active. */
398
+ font-weight: 300;
391
399
  }
392
400
 
393
401
  /* …AND THE REST STEP DOWN (user ruling 2026-08-01: *"no needs more"*). Raising
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kolkrabbi/kol-theme",
3
- "version": "0.38.0",
3
+ "version": "0.39.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",