@kolkrabbi/kol-theme 0.12.2 → 0.13.1
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-molecules.css +8 -0
- package/kol-components-organisms.css +4 -1
- package/kol-theme.css +11 -4
- package/kol-type-roles.css +3 -1
- package/package.json +1 -1
|
@@ -483,6 +483,14 @@
|
|
|
483
483
|
|
|
484
484
|
/* the ONE chip — filename if present, else the language. In-flow above the
|
|
485
485
|
* code. VERBATIM from the live reference build (index-Bro9Jnn6.css). */
|
|
486
|
+
/* bare — the host owns the frame (PreviewCard Code tab); highlight/chip/copy
|
|
487
|
+
* only, no border/bg/radius of its own. */
|
|
488
|
+
.kol-codeblock--bare {
|
|
489
|
+
background: none;
|
|
490
|
+
border: none;
|
|
491
|
+
border-radius: 0;
|
|
492
|
+
}
|
|
493
|
+
|
|
486
494
|
.kol-codeblock-filename {
|
|
487
495
|
font-family: var(--kol-font-family-mono);
|
|
488
496
|
font-size: 11px;
|
|
@@ -195,7 +195,10 @@
|
|
|
195
195
|
.kol-table-wrapper.kol-table--simple .kol-table td:last-child { padding-inline-end: 0; }
|
|
196
196
|
|
|
197
197
|
.kol-table th,
|
|
198
|
-
|
|
198
|
+
/* oq, not fg — alpha verticals brightened over the thead's fg-04 tint while
|
|
199
|
+
* the (already-converted) horizontals stayed flat. The fourth seam of the
|
|
200
|
+
* 2026-07-15 chess-audit finding 4; the first three were converted then. */
|
|
201
|
+
.kol-table td { border-right: 1px solid var(--kol-oq-08); }
|
|
199
202
|
.kol-table th:last-child,
|
|
200
203
|
.kol-table td:last-child { border-right: none; }
|
|
201
204
|
|
package/kol-theme.css
CHANGED
|
@@ -72,11 +72,18 @@
|
|
|
72
72
|
--kol-spacing-gap-md: var(--kol-spacing-4);
|
|
73
73
|
--kol-spacing-gap-lg: var(--kol-spacing-6);
|
|
74
74
|
|
|
75
|
-
/* Content widths (2026-07-28) — ONE frame,
|
|
76
|
-
* Every page: mx-auto max-w-shell + the one padding
|
|
77
|
-
* LEFT-ANCHORED inside. Width is a content decision, never a
|
|
78
|
-
* column caps reading blocks,
|
|
75
|
+
/* Content widths (2026-07-28; panel added 2026-07-30) — ONE frame, three
|
|
76
|
+
* inner caps (chess law). Every page: mx-auto max-w-shell + the one padding
|
|
77
|
+
* rhythm, content LEFT-ANCHORED inside. Width is a content decision, never a
|
|
78
|
+
* page identity: column caps reading blocks, panel caps tables / code /
|
|
79
|
+
* framed panels (the ~900–1200 band every consumer was improvising —
|
|
80
|
+
* kol-website audit, lobby/WidthSystemContradictions), measure caps running
|
|
81
|
+
* text. Nothing else — a hardcoded max-w-[Npx] at a call site means this
|
|
82
|
+
* scale failed; file it, don't improvise it.
|
|
83
|
+
* kol-framework's --kol-container-max is the responsive RESOLUTION of the
|
|
84
|
+
* shell (100% → 1400 → 1600 → shell), not a rival family. */
|
|
79
85
|
--kol-content-shell: 1800px;
|
|
86
|
+
--kol-content-panel: 960px;
|
|
80
87
|
--kol-content-column: 768px;
|
|
81
88
|
--kol-content-measure: 65ch;
|
|
82
89
|
|
package/kol-type-roles.css
CHANGED
|
@@ -193,7 +193,9 @@
|
|
|
193
193
|
.kol-prose figure,
|
|
194
194
|
.kol-doc-figure {
|
|
195
195
|
margin: 0;
|
|
196
|
-
|
|
196
|
+
/* oq, not fg (2026-07-30) — the seam law: chrome borders are opaque so they
|
|
197
|
+
* never brighten over tinted fills; weight 08 matches the table wrapper. */
|
|
198
|
+
border: 1px solid var(--kol-oq-08);
|
|
197
199
|
border-radius: var(--kol-radius-sm); /* 4px — THE radius law */
|
|
198
200
|
overflow: hidden;
|
|
199
201
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kolkrabbi/kol-theme",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.13.1",
|
|
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",
|