@kolkrabbi/kol-theme 0.69.0 → 0.70.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-molecules.css +22 -0
- package/package.json +1 -1
|
@@ -275,6 +275,28 @@
|
|
|
275
275
|
border-color: currentColor;
|
|
276
276
|
}
|
|
277
277
|
|
|
278
|
+
/* tertiary — secondary's fill, NO outline, the MONO voice at 80 (TagTertiary,
|
|
279
|
+
* kol-website 2026-08-27, ruled on /work's rows: the outline read wrong beside
|
|
280
|
+
* the display line and the helper voice was too loud under a title). The size
|
|
281
|
+
* classes carry the helper type by default; tertiary re-types them on the mono
|
|
282
|
+
* ramp — 10 / 12 / 14, weight 400, line-height 100%, 0.04em. */
|
|
283
|
+
.kol-tag--tertiary {
|
|
284
|
+
background-color: var(--kol-surface-primary);
|
|
285
|
+
color: var(--kol-fg-80);
|
|
286
|
+
border-color: transparent;
|
|
287
|
+
}
|
|
288
|
+
.kol-tag--tertiary:hover {
|
|
289
|
+
background-color: color-mix(in srgb, var(--kol-surface-on-primary) 08%, transparent);
|
|
290
|
+
border-color: transparent;
|
|
291
|
+
}
|
|
292
|
+
.kol-tag--tertiary.is-active {
|
|
293
|
+
background-color: color-mix(in srgb, var(--kol-surface-on-primary) 16%, transparent);
|
|
294
|
+
border-color: transparent;
|
|
295
|
+
}
|
|
296
|
+
.kol-tag--tertiary.kol-tag--sm { font-size: 10px; font-weight: 400; line-height: 100%; letter-spacing: 0.04em; }
|
|
297
|
+
.kol-tag--tertiary.kol-tag--md { font-size: 12px; font-weight: 400; line-height: 100%; letter-spacing: 0.04em; }
|
|
298
|
+
.kol-tag--tertiary.kol-tag--lg { font-size: 14px; font-weight: 400; line-height: 100%; letter-spacing: 0.04em; }
|
|
299
|
+
|
|
278
300
|
/* StatusChip — the record-surface status control (reference: Framer CMS,
|
|
279
301
|
* 2026-08-09; rebuilt off Tag onto the Dropdown-sm metrics the same day).
|
|
280
302
|
* Tint + ink ride the --ui-* ladder; box/type live in the JSX (kol-btn-sm
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kolkrabbi/kol-theme",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.70.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",
|