@kolkrabbi/kol-theme 0.31.3 → 0.32.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.
@@ -257,6 +257,32 @@
257
257
  border-color: currentColor;
258
258
  }
259
259
 
260
+ /* StatusChip tones — the record-surface status control (reference: Framer
261
+ * CMS, 2026-08-09). Tint + ink ride the --ui-* ladder; the chip stays a Tag
262
+ * underneath, so these only override color/fill. .kol-tag doubled for source-
263
+ * order safety against the tag variants above. */
264
+ .kol-tag.kol-status-chip { gap: var(--kol-spacing-1); }
265
+ .kol-tag.kol-status-chip--success {
266
+ color: var(--ui-success);
267
+ background-color: color-mix(in srgb, var(--ui-success) 12%, transparent);
268
+ border-color: transparent;
269
+ }
270
+ .kol-tag.kol-status-chip--warning {
271
+ color: var(--ui-warning);
272
+ background-color: color-mix(in srgb, var(--ui-warning) 12%, transparent);
273
+ border-color: transparent;
274
+ }
275
+ .kol-tag.kol-status-chip--error {
276
+ color: var(--ui-error);
277
+ background-color: color-mix(in srgb, var(--ui-error) 12%, transparent);
278
+ border-color: transparent;
279
+ }
280
+ .kol-tag.kol-status-chip--info {
281
+ color: var(--ui-info);
282
+ background-color: color-mix(in srgb, var(--ui-info) 12%, transparent);
283
+ border-color: transparent;
284
+ }
285
+
260
286
  /* inverse — the flipped chip. Mirrors .pill-inverse. */
261
287
  .kol-tag--inverse {
262
288
  background-color: var(--kol-surface-on-primary);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kolkrabbi/kol-theme",
3
- "version": "0.31.3",
3
+ "version": "0.32.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",