@kolkrabbi/kol-theme 0.11.0 → 0.11.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.
Files changed (2) hide show
  1. package/kol-color.css +24 -0
  2. package/package.json +1 -1
package/kol-color.css CHANGED
@@ -55,6 +55,30 @@
55
55
  --ui-info: #1D4ED8;
56
56
  --ui-success: #15803D;
57
57
 
58
+ /* ---------------------------------------------------------------------------
59
+ * PALETTE — shared categorical colors for tags, charts, data viz.
60
+ * Lifted verbatim from the monorepo theme (2026-07-16): the dashboards +
61
+ * chess component CSS already reference these vars, but the definitions
62
+ * never migrated — first real kol-dashboards consumer found them dangling.
63
+ * --------------------------------------------------------------------------- */
64
+
65
+ --kol-palette-blue: #3740D3;
66
+ --kol-palette-teal: #49a0a2;
67
+ --kol-palette-green: #66a44c;
68
+ --kol-palette-yellow: #ffe32e;
69
+ --kol-palette-red: #ce4646;
70
+ --kol-palette-orange: #db8000;
71
+ --kol-palette-purple: #9437FF;
72
+
73
+ /* Palette Light — muted variants for light-mode backgrounds */
74
+ --kol-palette-blue-light: #c8caf4;
75
+ --kol-palette-teal-light: #d0e8e9;
76
+ --kol-palette-green-light: #d4e6cb;
77
+ --kol-palette-yellow-light: #d0d79d;
78
+ --kol-palette-red-light: #f0caca;
79
+ --kol-palette-orange-light: #f5ddb3;
80
+ --kol-palette-purple-light: #e0c8ff;
81
+
58
82
  /* ---------------------------------------------------------------------------
59
83
  * BORDER
60
84
  * --------------------------------------------------------------------------- */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kolkrabbi/kol-theme",
3
- "version": "0.11.0",
3
+ "version": "0.11.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",