@kolkrabbi/kol-theme 0.57.0 → 0.58.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.
package/kol-components-atoms.css
CHANGED
|
@@ -34,7 +34,7 @@
|
|
|
34
34
|
* [aria-disabled="true"] /
|
|
35
35
|
* :disabled auto opacity-50 + pointer-events-none
|
|
36
36
|
*
|
|
37
|
-
* Single visible-border tone (--kol-oq-
|
|
37
|
+
* Single visible-border tone (--kol-oq-08, opaque — user ruling 2026-08-26; was oq-16). No hover/focus escalation,
|
|
38
38
|
* no `--bordered` modifier. When you want a ghost field to render
|
|
39
39
|
* persistently visible (e.g. "is-edited" indicator), switch the variant
|
|
40
40
|
* to `--outline` — same visual, clearer semantic.
|
|
@@ -83,7 +83,8 @@
|
|
|
83
83
|
.kol-control--outline {
|
|
84
84
|
background-color: transparent;
|
|
85
85
|
color: var(--kol-surface-on-primary);
|
|
86
|
-
|
|
86
|
+
/* oq-08 — the one outline border (user ruling 2026-08-26); was oq-16 */
|
|
87
|
+
border-color: var(--kol-oq-08);
|
|
87
88
|
}
|
|
88
89
|
|
|
89
90
|
/* Textarea modifier — flips the inline-flex shell to block so a multi-line
|
|
@@ -276,7 +277,11 @@
|
|
|
276
277
|
.kol-btn-outline {
|
|
277
278
|
background: transparent;
|
|
278
279
|
color: var(--kol-surface-on-primary);
|
|
279
|
-
border
|
|
280
|
+
/* ONE outline border across the controls (user ruling 2026-08-26): OPAQUE
|
|
281
|
+
* 8% — the system's hairline. oq-16 read heavy beside the segmented
|
|
282
|
+
* toggle's fg-04, and fg is out: a translucent border doubles where two
|
|
283
|
+
* controls touch. Button outline · .kol-control--outline · .kol-seg agree. */
|
|
284
|
+
border: 1px solid var(--kol-oq-08);
|
|
280
285
|
}
|
|
281
286
|
@media (hover: hover) {
|
|
282
287
|
.kol-btn-outline:not(.kol-btn-animate):hover {
|
|
@@ -502,7 +507,7 @@
|
|
|
502
507
|
}
|
|
503
508
|
|
|
504
509
|
.toggle-switch--primary { background-color: var(--kol-surface-secondary); }
|
|
505
|
-
.toggle-switch--outline { border-color: var(--kol-oq-
|
|
510
|
+
.toggle-switch--outline { border-color: var(--kol-oq-08); }
|
|
506
511
|
|
|
507
512
|
/* shells take button padding; bare stays padding 0 */
|
|
508
513
|
.toggle-switch--primary.toggle-switch--sm, .toggle-switch--outline.toggle-switch--sm { padding: 4px 12px; }
|
|
@@ -1091,7 +1096,7 @@ a.kol-icon-frame {
|
|
|
1091
1096
|
.kol-icon-frame-outline {
|
|
1092
1097
|
background: transparent;
|
|
1093
1098
|
color: var(--kol-surface-on-primary);
|
|
1094
|
-
border: 1px solid var(--kol-oq-
|
|
1099
|
+
border: 1px solid var(--kol-oq-08);
|
|
1095
1100
|
}
|
|
1096
1101
|
.kol-icon-frame-ghost {
|
|
1097
1102
|
background: transparent;
|
|
@@ -95,7 +95,7 @@
|
|
|
95
95
|
.kol-dd-panel--grey { background: var(--kol-oq-12); }
|
|
96
96
|
.kol-dd-panel--outline {
|
|
97
97
|
background: var(--kol-surface-primary);
|
|
98
|
-
border: 1px solid var(--kol-oq-
|
|
98
|
+
border: 1px solid var(--kol-oq-08); /* matches the trigger's rest border */
|
|
99
99
|
border-top: none; /* the trigger's bottom edge is the divider (docs page) */
|
|
100
100
|
}
|
|
101
101
|
.kol-dd-div { border-top: 1px solid var(--kol-fg-08); }
|
|
@@ -469,7 +469,9 @@
|
|
|
469
469
|
* ───────────────────────────────────────────────────────────────────── */
|
|
470
470
|
.kol-seg {
|
|
471
471
|
display: flex;
|
|
472
|
-
border
|
|
472
|
+
/* oq-08, opaque — the one outline border every control wears (user ruling
|
|
473
|
+
* 2026-08-26); was fg-04, which doubled wherever two strips touched. */
|
|
474
|
+
border: 1px solid var(--kol-oq-08);
|
|
473
475
|
border-radius: var(--kol-radius-sm);
|
|
474
476
|
overflow: hidden;
|
|
475
477
|
/* The button-height LAW (2026-08-12): the strip's OUTER height is PINNED
|
|
@@ -513,7 +515,7 @@
|
|
|
513
515
|
background-color var(--kol-transition-base);
|
|
514
516
|
}
|
|
515
517
|
|
|
516
|
-
.kol-seg-cell + .kol-seg-cell { border-left: 1px solid var(--kol-
|
|
518
|
+
.kol-seg-cell + .kol-seg-cell { border-left: 1px solid var(--kol-oq-08); }
|
|
517
519
|
|
|
518
520
|
/* ONE STEP, not a leap. Rest is `oq-48` and hover went straight to full ink —
|
|
519
521
|
* a 48 → 100 jump that read as the cell selecting itself under the cursor.
|
|
@@ -289,8 +289,11 @@
|
|
|
289
289
|
text-transform: uppercase;
|
|
290
290
|
}
|
|
291
291
|
|
|
292
|
-
.kol-
|
|
293
|
-
|
|
292
|
+
/* .kol-section-text-label — RETIRED 0.57.1 (SectionTextLabelVoice): the
|
|
293
|
+
* family's label wears the hero's helper-12 / meta voice now, as utilities on
|
|
294
|
+
* the element; this mono-18 accent kicker paints only a consumer's own
|
|
295
|
+
* `.kol-feature-split-kicker` until the next major. */
|
|
296
|
+
.kol-feature-split-kicker {
|
|
294
297
|
font-family: var(--kol-font-family-mono, monospace);
|
|
295
298
|
font-size: 18px;
|
|
296
299
|
font-weight: 600;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kolkrabbi/kol-theme",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.58.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",
|