@chekinapp/tokens 0.2.12 → 0.2.13

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@chekinapp/tokens",
3
- "version": "0.2.12",
3
+ "version": "0.2.13",
4
4
  "description": "Chekin design tokens — CSS variables, JSON, and Tailwind preset",
5
5
  "private": false,
6
6
  "license": "UNLICENSED",
@@ -60,6 +60,8 @@
60
60
  --chekin-gray-400: #9ca3af;
61
61
  --chekin-gray-500: #6b7280;
62
62
  --chekin-gray-600: #4b5563;
63
+ --chekin-gray-700: #353945; /* dark slate (links / strong body text) */
64
+ --chekin-gray-900: #101828; /* near-black ink (widget / darkest text) */
63
65
 
64
66
  /* ── Green (success) ───────────────────────────────────────────────── */
65
67
  --chekin-green-50: #e8fcf7;
@@ -122,6 +124,14 @@
122
124
  --chekin-airbnb-pink-surface: #ffe8ef;
123
125
  --chekin-airbnb-pink-surface-soft: #fff5f3;
124
126
 
127
+ /* ── Alpha overlays (translucent tints over content) ───────────────── */
128
+ --chekin-blue-900-a05: rgba(22, 22, 67, 0.05); /* navy 5% — subtle dividers / hover */
129
+ --chekin-blue-500-a15: rgba(56, 91, 248, 0.15); /* brand 15% — soft fill */
130
+ --chekin-blue-600-a10: rgba(41, 77, 241, 0.1); /* brand glow — box-shadow color */
131
+
132
+ /* ── HSL channels (for hsl(var(--…)) consumers) ────────────────────── */
133
+ --chekin-neutral-150-hsl: 233, 21%, 92%; /* = neutral-150 (#e5e6ee) */
134
+
125
135
  --chekin-white: var(--chekin-neutral-0);
126
136
 
127
137
  /* ════════════════════════════════════════════════════════════════════
package/src/tokens.json CHANGED
@@ -37,7 +37,9 @@
37
37
  "300": {"value": "#D1D5DB", "type": "color"},
38
38
  "400": {"value": "#9CA3AF", "type": "color"},
39
39
  "500": {"value": "#6B7280", "type": "color"},
40
- "600": {"value": "#4B5563", "type": "color"}
40
+ "600": {"value": "#4B5563", "type": "color"},
41
+ "700": {"value": "#353945", "type": "color", "description": "Dark slate (links / strong body text)"},
42
+ "900": {"value": "#101828", "type": "color", "description": "Near-black ink (widget / darkest text)"}
41
43
  },
42
44
  "green": {
43
45
  "50": {"value": "#E8FCF7", "type": "color"},