@kolkrabbi/kol-theme 0.94.0 → 0.96.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-base-tokens.css +14 -6
- package/kol-components-molecules.css +33 -0
- package/package.json +1 -1
package/kol-base-tokens.css
CHANGED
|
@@ -49,8 +49,8 @@
|
|
|
49
49
|
/* Surface split tokens */
|
|
50
50
|
--kol-surface-support-split: #eeeeee;
|
|
51
51
|
--kol-surface-support-split-inverse: #202026;
|
|
52
|
-
--kol-surface-
|
|
53
|
-
--kol-surface-
|
|
52
|
+
--kol-surface-ab-split: #ffffff;
|
|
53
|
+
--kol-surface-ab-split-inverse: #000000;
|
|
54
54
|
}
|
|
55
55
|
|
|
56
56
|
/* Dark Mode — surface overrides */
|
|
@@ -77,8 +77,8 @@
|
|
|
77
77
|
/* Surface split tokens - Dark Mode */
|
|
78
78
|
--kol-surface-support-split: #202026;
|
|
79
79
|
--kol-surface-support-split-inverse: #eeeeee;
|
|
80
|
-
--kol-surface-
|
|
81
|
-
--kol-surface-
|
|
80
|
+
--kol-surface-ab-split: #000000;
|
|
81
|
+
--kol-surface-ab-split-inverse: #ffffff;
|
|
82
82
|
}
|
|
83
83
|
|
|
84
84
|
/* UI STATE — dark tier. The base ladder (kol-color.css) is authored for
|
|
@@ -122,8 +122,8 @@
|
|
|
122
122
|
/* Surface split tokens - Dark Mode */
|
|
123
123
|
--kol-surface-support-split: #202026;
|
|
124
124
|
--kol-surface-support-split-inverse: #eeeeee;
|
|
125
|
-
--kol-surface-
|
|
126
|
-
--kol-surface-
|
|
125
|
+
--kol-surface-ab-split: #000000;
|
|
126
|
+
--kol-surface-ab-split-inverse: #ffffff;
|
|
127
127
|
|
|
128
128
|
/* UI STATE — dark tier (mirror of the block above — edit both) */
|
|
129
129
|
--ui-error: #F87171;
|
|
@@ -132,3 +132,11 @@
|
|
|
132
132
|
--ui-success: #3DD68C;
|
|
133
133
|
}
|
|
134
134
|
}
|
|
135
|
+
|
|
136
|
+
/* ALIASES — the old `absolute` spelling (renamed to `ab`, user ruling
|
|
137
|
+
* 2026-08-28: "change every absolute to ab"). Kept so no consumer breaks
|
|
138
|
+
* silently; new code writes `ab`. Drop once the estate has moved. */
|
|
139
|
+
:root {
|
|
140
|
+
--kol-surface-absolute-split: var(--kol-surface-ab-split);
|
|
141
|
+
--kol-surface-absolute-split-inverse: var(--kol-surface-ab-split-inverse);
|
|
142
|
+
}
|
|
@@ -962,6 +962,39 @@
|
|
|
962
962
|
.kol-row--divided {
|
|
963
963
|
border-bottom: 1px solid var(--kol-fg-08);
|
|
964
964
|
}
|
|
965
|
+
/* `specs` — the row's trailing label/value column (RowVariantNamesAndSpecs,
|
|
966
|
+
* 2026-08-29). It rides every horizontal variant because year · material ·
|
|
967
|
+
* edition is a CONTENT difference, not a geometry one; a seventh page-named
|
|
968
|
+
* variant for it would repeat the mistake that ticket opens with.
|
|
969
|
+
* Type is declared HERE, not as `kol-mono-12` on the element — ARCHITECTURE §5:
|
|
970
|
+
* a utility class on the markup ties at specificity and loses to whichever
|
|
971
|
+
* sheet loads last. Values match the family's meta voice (kol-mono-12). */
|
|
972
|
+
.kol-row-specs {
|
|
973
|
+
display: flex;
|
|
974
|
+
flex-direction: column;
|
|
975
|
+
gap: var(--kol-spacing-1);
|
|
976
|
+
margin: 0;
|
|
977
|
+
}
|
|
978
|
+
.kol-row-specs > div {
|
|
979
|
+
display: flex;
|
|
980
|
+
justify-content: space-between;
|
|
981
|
+
gap: var(--kol-spacing-3);
|
|
982
|
+
}
|
|
983
|
+
.kol-row-specs dt,
|
|
984
|
+
.kol-row-specs dd {
|
|
985
|
+
margin: 0;
|
|
986
|
+
font-family: var(--kol-font-family-mono);
|
|
987
|
+
font-size: 12px;
|
|
988
|
+
line-height: 16px;
|
|
989
|
+
font-weight: 400;
|
|
990
|
+
}
|
|
991
|
+
.kol-row-specs dt {
|
|
992
|
+
color: var(--kol-fg-meta);
|
|
993
|
+
}
|
|
994
|
+
.kol-row-specs dd {
|
|
995
|
+
color: var(--kol-fg-emphasis);
|
|
996
|
+
text-align: right;
|
|
997
|
+
}
|
|
965
998
|
/* THE THUMB IS A FIXED SQUARE BOX (ContentRowsAndPrintCard, kol-website
|
|
966
999
|
* 2026-08-27 — user: "the image should not control height, image should fit
|
|
967
1000
|
* the row image placeholder"). Verbatim from the /stack + /prints tune: the
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kolkrabbi/kol-theme",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.96.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",
|