@kolkrabbi/kol-theme 0.11.0 → 0.11.2

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-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
  * --------------------------------------------------------------------------- */
@@ -45,10 +45,12 @@
45
45
  * the largest that fits both the column width and the viewport minus the
46
46
  * stage chrome. Mobile budget is bigger (strip + transport + notation min). */
47
47
  .chess-board--fluid {
48
- width: min(100%, calc(100dvh - 200px));
48
+ /* height-fenced, no hard px cap (0.11.2): the board fills its column up to
49
+ * what fits the viewport height; reserve = consumer chrome above+below,
50
+ * same knob the stage cap reads (--chess-stage-reserve, chess 0.5.1) */
51
+ width: min(100%, calc(100dvh - var(--chess-stage-reserve, 200px)));
49
52
  height: auto;
50
53
  aspect-ratio: 1;
51
- max-width: 760px;
52
54
  min-width: 280px;
53
55
  }
54
56
 
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.2",
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",