@customercity/tokens 0.2.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.
@@ -0,0 +1,36 @@
1
+ {
2
+ "core": {
3
+ "$type": "color",
4
+ "brand-50": { "$value": "#EEF3FF" },
5
+ "brand-100": { "$value": "#DBE6FF" },
6
+ "brand-200": { "$value": "#B8CDFF" },
7
+ "brand-300": { "$value": "#8CB9FF" },
8
+ "brand-400": { "$value": "#4D8BFF" },
9
+ "brand-500": { "$value": "#1554FF" },
10
+ "brand-600": { "$value": "#0052D2" },
11
+ "brand-700": { "$value": "#0043AB" },
12
+ "brand-800": { "$value": "#0A2F73" },
13
+ "brand-900": { "$value": "#071731" },
14
+
15
+ "neutral-50": { "$value": "#F6F8FB" },
16
+ "neutral-100": { "$value": "#F0F3F8" },
17
+ "neutral-200": { "$value": "#DBDCE0" },
18
+ "neutral-300": { "$value": "#CDD2DF" },
19
+ "neutral-400": { "$value": "#868B98" },
20
+ "neutral-500": { "$value": "#5B6577" },
21
+ "neutral-600": { "$value": "#4E5663" },
22
+ "neutral-700": { "$value": "#38404E" },
23
+ "neutral-800": { "$value": "#1E232C" },
24
+ "neutral-900": { "$value": "#0E1626" },
25
+
26
+ "green-100": { "$value": "#DFF4E5" },
27
+ "green-500": { "$value": "#60C67C" },
28
+ "green-700": { "$value": "#2E8B57" },
29
+ "red-100": { "$value": "#F7E6EA" },
30
+ "red-500": { "$value": "#FB4E6D" },
31
+ "red-700": { "$value": "#C42A47" },
32
+ "orange-100": { "$value": "#F8E6DF" },
33
+ "orange-500": { "$value": "#FFA26D" },
34
+ "orange-700": { "$value": "#D9691F" }
35
+ }
36
+ }
@@ -0,0 +1,14 @@
1
+ {
2
+ "core": {
3
+ "z-base": { "$value": 0, "$type": "number" },
4
+ "z-dropdown": { "$value": 1000, "$type": "number" },
5
+ "z-sticky": { "$value": 1100, "$type": "number" },
6
+ "z-overlay": { "$value": 1200, "$type": "number" },
7
+ "z-modal": { "$value": 1300, "$type": "number" },
8
+ "z-popover": { "$value": 1400, "$type": "number" },
9
+ "z-toast": { "$value": 1500, "$type": "number" },
10
+ "z-tooltip": { "$value": 1600, "$type": "number" },
11
+
12
+ "radius": { "$value": "0.5rem", "$type": "dimension" }
13
+ }
14
+ }
@@ -0,0 +1,182 @@
1
+ /* ── Shadows ── Light mode (soft navy-tinted #1F2E52) */
2
+ .card-shadow {
3
+ box-shadow: 0 1px 2px rgba(31,46,82,0.06), 0 1px 3px rgba(31,46,82,0.04);
4
+ }
5
+ .card-shadow-md {
6
+ box-shadow: 0 4px 24px rgba(31,46,82,0.08);
7
+ }
8
+ .card-shadow-lg {
9
+ box-shadow: 0 12px 32px rgba(31,46,82,0.14), 0 4px 8px rgba(31,46,82,0.06);
10
+ }
11
+
12
+ /* ── Shadows ── Dark mode (navy) */
13
+ html.dark .card-shadow {
14
+ box-shadow: 0 1px 2px rgba(0,0,0,0.40);
15
+ }
16
+ html.dark .card-shadow-md {
17
+ box-shadow: 0 4px 24px rgba(0,0,0,0.45);
18
+ }
19
+ html.dark .card-shadow-lg {
20
+ box-shadow: 0 12px 32px rgba(0,0,0,0.55);
21
+ }
22
+
23
+ /* Dark mode card border helper */
24
+ html.dark .card-border {
25
+ border: 1px solid var(--border);
26
+ }
27
+
28
+ /* ── Agent card utilities — Violet → Purple → Pink ── */
29
+ .agent-card {
30
+ background: var(--sparkle-light);
31
+ border: 1px solid var(--sparkle-border);
32
+ }
33
+ html.dark .agent-card {
34
+ background: var(--sparkle-light);
35
+ border: 1px solid var(--sparkle-border);
36
+ box-shadow: 0 2px 8px rgba(0,0,0,0.40), 0 0 24px rgba(118,55,255,0.18);
37
+ }
38
+
39
+ .agent-shimmer {
40
+ position: relative;
41
+ overflow: hidden;
42
+ }
43
+ .agent-shimmer::after {
44
+ content: '';
45
+ position: absolute;
46
+ top: 0;
47
+ left: 0;
48
+ right: 0;
49
+ height: 3px;
50
+ background: linear-gradient(90deg, transparent 0%, rgba(170,0,255,0.45) 30%, rgba(118,55,255,0.45) 50%, rgba(213,0,249,0.45) 70%, transparent 100%);
51
+ background-size: 200% 100%;
52
+ animation: sparkle-shimmer 4s ease-in-out infinite;
53
+ }
54
+ html.dark .agent-shimmer::after {
55
+ background: linear-gradient(90deg, transparent 0%, rgba(194,77,255,0.6) 30%, rgba(157,107,255,0.55) 50%, rgba(232,102,251,0.55) 70%, transparent 100%);
56
+ background-size: 200% 100%;
57
+ }
58
+
59
+ @theme inline {
60
+ --color-background: var(--background);
61
+ --color-foreground: var(--foreground);
62
+ --color-card: var(--card);
63
+ --color-card-foreground: var(--card-foreground);
64
+ --color-muted: var(--muted);
65
+ --color-muted-foreground: var(--muted-foreground);
66
+ --color-border: var(--border);
67
+ --color-border-light: var(--border-light);
68
+ --color-ring: var(--ring);
69
+ --color-accent: var(--accent);
70
+ --color-accent-foreground: var(--accent-foreground);
71
+ --color-brand: var(--brand);
72
+ --color-brand-hover: var(--brand-hover);
73
+ --color-brand-light: var(--brand-light);
74
+ --color-brand-lighter: var(--brand-lighter);
75
+ --color-brand-subtle: var(--brand-subtle);
76
+ --color-navy: var(--navy);
77
+ --color-navy-light: var(--navy-light);
78
+ --color-green: var(--green);
79
+ --color-green-bg: var(--green-bg);
80
+ --color-red: var(--red);
81
+ --color-red-bg: var(--red-bg);
82
+ --color-orange: var(--orange);
83
+ --color-orange-bg: var(--orange-bg);
84
+ --color-sparkle: var(--sparkle);
85
+ --color-sparkle-bg: var(--sparkle-bg);
86
+ --color-sparkle-light: var(--sparkle-light);
87
+ --color-agent-card: var(--agent-card);
88
+ --color-sparkle-border: var(--sparkle-border);
89
+ --color-yellow: var(--yellow);
90
+ --color-yellow-bg: var(--yellow-bg);
91
+ --color-background-alt: var(--background-alt);
92
+ --color-mint: var(--mint);
93
+ --color-mint-bg: var(--mint-bg);
94
+ --color-sky: var(--sky);
95
+ --color-sky-bg: var(--sky-bg);
96
+ --color-violet: var(--violet);
97
+ --color-violet-bg: var(--violet-bg);
98
+ --color-purple: var(--purple);
99
+ --color-purple-bg: var(--purple-bg);
100
+ --color-pink: var(--pink);
101
+ --color-pink-bg: var(--pink-bg);
102
+ --font-sans: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
103
+ --font-mono: "SF Mono", "Roboto Mono", "Menlo", monospace;
104
+ }
105
+
106
+ /* ── Animations ── */
107
+ @keyframes shimmer {
108
+ 0% { background-position: -200% 0; }
109
+ 100% { background-position: 200% 0; }
110
+ }
111
+
112
+ @keyframes sparkle-pulse {
113
+ 0%, 100% { opacity: 1; }
114
+ 50% { opacity: 0.5; }
115
+ }
116
+
117
+ @keyframes sparkle-shimmer {
118
+ 0% { background-position: -200% 0; }
119
+ 100% { background-position: 200% 0; }
120
+ }
121
+
122
+ @keyframes m-sparkle-shimmer {
123
+ 0% { background-position: -200% 0; }
124
+ 100% { background-position: 200% 0; }
125
+ }
126
+
127
+ @keyframes score-glow {
128
+ 0%, 100% { filter: brightness(1); }
129
+ 50% { filter: brightness(1.08); }
130
+ }
131
+
132
+ @keyframes status-pulse {
133
+ 0%, 100% { opacity: 1; }
134
+ 50% { opacity: 0.4; }
135
+ }
136
+
137
+ .skeleton {
138
+ background: linear-gradient(90deg, var(--accent) 25%, var(--border-light) 50%, var(--accent) 75%);
139
+ background-size: 200% 100%;
140
+ animation: shimmer 1.5s ease-in-out infinite;
141
+ }
142
+
143
+ .sparkle-pulse {
144
+ animation: sparkle-pulse 3s ease-in-out infinite;
145
+ }
146
+
147
+ .score-glow {
148
+ animation: score-glow 4s ease-in-out infinite;
149
+ }
150
+
151
+ .status-pulse {
152
+ animation: status-pulse 2s ease-in-out infinite;
153
+ }
154
+
155
+ .custom-scrollbar::-webkit-scrollbar {
156
+ width: 4px;
157
+ }
158
+ .custom-scrollbar::-webkit-scrollbar-track {
159
+ background: transparent;
160
+ }
161
+ .custom-scrollbar::-webkit-scrollbar-thumb {
162
+ background: var(--border);
163
+ border-radius: 2px;
164
+ }
165
+ .custom-scrollbar::-webkit-scrollbar-thumb:hover {
166
+ background: var(--muted);
167
+ }
168
+
169
+ /* Respect reduced motion */
170
+ @media (prefers-reduced-motion: reduce) {
171
+ *, *::before, *::after {
172
+ animation-duration: 0.01ms !important;
173
+ animation-iteration-count: 1 !important;
174
+ transition-duration: 0.01ms !important;
175
+ }
176
+ }
177
+
178
+ body {
179
+ background: var(--background);
180
+ color: var(--foreground);
181
+ -webkit-font-smoothing: antialiased;
182
+ }
@@ -0,0 +1,13 @@
1
+ @import "tailwindcss";
2
+
3
+ @custom-variant dark (&:where(.dark, .dark *));
4
+
5
+ /* ============================================================
6
+ Customer City Design System v1.0 — design tokens.
7
+ GENERATED FILE — do not edit by hand.
8
+ Token values are authored in tokens/*.json (DTCG format) and
9
+ compiled to these CSS variables by Style Dictionary:
10
+ pnpm tokens:build
11
+ Brand royal blue #1554FF · navy dark mode · Inter ·
12
+ violet -> purple -> pink agent identity.
13
+ ============================================================ */
package/tokens.css ADDED
@@ -0,0 +1,326 @@
1
+ @import "tailwindcss";
2
+
3
+ @custom-variant dark (&:where(.dark, .dark *));
4
+
5
+ /* ============================================================
6
+ Customer City Design System v1.0 — design tokens.
7
+ GENERATED FILE — do not edit by hand.
8
+ Token values are authored in tokens/*.json (DTCG format) and
9
+ compiled to these CSS variables by Style Dictionary:
10
+ pnpm tokens:build
11
+ Brand royal blue #1554FF · navy dark mode · Inter ·
12
+ violet -> purple -> pink agent identity.
13
+ ============================================================ */
14
+
15
+ :root {
16
+ --brand: #1554FF;
17
+ --brand-hover: #0052D2;
18
+ --brand-light: rgba(21,84,255,0.08);
19
+ --brand-lighter: #F4F9FF;
20
+ --brand-subtle: #8CB9FF;
21
+ --background: #F0F3F8;
22
+ --background-alt: #E6EAF2;
23
+ --foreground: #1E232C;
24
+ --card: #FFFFFF;
25
+ --card-foreground: #1E232C;
26
+ --muted: #4E5663;
27
+ --muted-foreground: #868B98;
28
+ --border: #CDD2DF;
29
+ --border-light: #DBDCE0;
30
+ --ring: #1554FF;
31
+ --accent: #E8EBF1;
32
+ --accent-foreground: #1E232C;
33
+ --navy: #071731;
34
+ --navy-light: #0E254A;
35
+ --green: #60C67C;
36
+ --green-bg: #DFF4E5;
37
+ --red: #FB4E6D;
38
+ --red-bg: #F7E6EA;
39
+ --orange: #FFA26D;
40
+ --orange-bg: #F8E6DF;
41
+ --yellow: #FFE600;
42
+ --yellow-bg: #FFFBD2;
43
+ --mint: #00CEDB;
44
+ --mint-bg: #E1F9FF;
45
+ --sky: #29B6F6;
46
+ --sky-bg: #E3F4FF;
47
+ --violet: #AA00FF;
48
+ --violet-bg: #EEDEFB;
49
+ --purple: #7637FF;
50
+ --purple-bg: #E9E4FB;
51
+ --pink: #D500F9;
52
+ --pink-bg: #F3DEFB;
53
+ --sparkle: #7637FF;
54
+ --sparkle-bg: #E9E4FB;
55
+ --sparkle-light: #F4EEFE;
56
+ --agent-card: #F4EEFE;
57
+ --sparkle-border: rgba(118,55,255,0.20);
58
+ --brand-50: #EEF3FF;
59
+ --brand-100: #DBE6FF;
60
+ --brand-200: #B8CDFF;
61
+ --brand-300: #8CB9FF;
62
+ --brand-400: #4D8BFF;
63
+ --brand-500: #1554FF;
64
+ --brand-600: #0052D2;
65
+ --brand-700: #0043AB;
66
+ --brand-800: #0A2F73;
67
+ --brand-900: #071731;
68
+ --neutral-50: #F6F8FB;
69
+ --neutral-100: #F0F3F8;
70
+ --neutral-200: #DBDCE0;
71
+ --neutral-300: #CDD2DF;
72
+ --neutral-400: #868B98;
73
+ --neutral-500: #5B6577;
74
+ --neutral-600: #4E5663;
75
+ --neutral-700: #38404E;
76
+ --neutral-800: #1E232C;
77
+ --neutral-900: #0E1626;
78
+ --green-100: #DFF4E5;
79
+ --green-500: #60C67C;
80
+ --green-700: #2E8B57;
81
+ --red-100: #F7E6EA;
82
+ --red-500: #FB4E6D;
83
+ --red-700: #C42A47;
84
+ --orange-100: #F8E6DF;
85
+ --orange-500: #FFA26D;
86
+ --orange-700: #D9691F;
87
+ --z-base: 0;
88
+ --z-dropdown: 1000;
89
+ --z-sticky: 1100;
90
+ --z-overlay: 1200;
91
+ --z-modal: 1300;
92
+ --z-popover: 1400;
93
+ --z-toast: 1500;
94
+ --z-tooltip: 1600;
95
+ --radius: 0.5rem;
96
+ }
97
+
98
+ html.dark {
99
+ --brand: #4D8BFF;
100
+ --brand-hover: #6FA3FF;
101
+ --brand-light: rgba(77,139,255,0.16);
102
+ --brand-lighter: #14254A;
103
+ --brand-subtle: #8CB9FF;
104
+ --background: #071731;
105
+ --background-alt: #0A1C3C;
106
+ --foreground: #EAEEF5;
107
+ --card: #0E254A;
108
+ --card-foreground: #EAEEF5;
109
+ --muted: #A9B4C6;
110
+ --muted-foreground: #6E7C93;
111
+ --border: #1C3358;
112
+ --border-light: #15294A;
113
+ --ring: #4D8BFF;
114
+ --accent: #16294A;
115
+ --accent-foreground: #EAEEF5;
116
+ --navy: #040E20;
117
+ --navy-light: #071731;
118
+ --green: #7BD89A;
119
+ --green-bg: rgba(96,198,124,0.16);
120
+ --red: #FF7B92;
121
+ --red-bg: rgba(251,78,109,0.16);
122
+ --orange: #FFB98F;
123
+ --orange-bg: rgba(255,162,109,0.16);
124
+ --yellow: #FFEF66;
125
+ --yellow-bg: rgba(255,230,0,0.14);
126
+ --mint: #4DDDE8;
127
+ --mint-bg: rgba(0,206,219,0.16);
128
+ --sky: #5FC8F8;
129
+ --sky-bg: rgba(41,182,246,0.16);
130
+ --violet: #C24DFF;
131
+ --violet-bg: rgba(170,0,255,0.18);
132
+ --purple: #9D6BFF;
133
+ --purple-bg: rgba(118,55,255,0.18);
134
+ --pink: #E866FB;
135
+ --pink-bg: rgba(213,0,249,0.18);
136
+ --sparkle: #9D6BFF;
137
+ --sparkle-bg: rgba(118,55,255,0.18);
138
+ --sparkle-light: #1C1A3D;
139
+ --agent-card: #1C1A3D;
140
+ --sparkle-border: rgba(157,107,255,0.30);
141
+
142
+ color-scheme: dark;
143
+ }
144
+
145
+ /* ── Shadows ── Light mode (soft navy-tinted #1F2E52) */
146
+ .card-shadow {
147
+ box-shadow: 0 1px 2px rgba(31,46,82,0.06), 0 1px 3px rgba(31,46,82,0.04);
148
+ }
149
+ .card-shadow-md {
150
+ box-shadow: 0 4px 24px rgba(31,46,82,0.08);
151
+ }
152
+ .card-shadow-lg {
153
+ box-shadow: 0 12px 32px rgba(31,46,82,0.14), 0 4px 8px rgba(31,46,82,0.06);
154
+ }
155
+
156
+ /* ── Shadows ── Dark mode (navy) */
157
+ html.dark .card-shadow {
158
+ box-shadow: 0 1px 2px rgba(0,0,0,0.40);
159
+ }
160
+ html.dark .card-shadow-md {
161
+ box-shadow: 0 4px 24px rgba(0,0,0,0.45);
162
+ }
163
+ html.dark .card-shadow-lg {
164
+ box-shadow: 0 12px 32px rgba(0,0,0,0.55);
165
+ }
166
+
167
+ /* Dark mode card border helper */
168
+ html.dark .card-border {
169
+ border: 1px solid var(--border);
170
+ }
171
+
172
+ /* ── Agent card utilities — Violet → Purple → Pink ── */
173
+ .agent-card {
174
+ background: var(--sparkle-light);
175
+ border: 1px solid var(--sparkle-border);
176
+ }
177
+ html.dark .agent-card {
178
+ background: var(--sparkle-light);
179
+ border: 1px solid var(--sparkle-border);
180
+ box-shadow: 0 2px 8px rgba(0,0,0,0.40), 0 0 24px rgba(118,55,255,0.18);
181
+ }
182
+
183
+ .agent-shimmer {
184
+ position: relative;
185
+ overflow: hidden;
186
+ }
187
+ .agent-shimmer::after {
188
+ content: '';
189
+ position: absolute;
190
+ top: 0;
191
+ left: 0;
192
+ right: 0;
193
+ height: 3px;
194
+ background: linear-gradient(90deg, transparent 0%, rgba(170,0,255,0.45) 30%, rgba(118,55,255,0.45) 50%, rgba(213,0,249,0.45) 70%, transparent 100%);
195
+ background-size: 200% 100%;
196
+ animation: sparkle-shimmer 4s ease-in-out infinite;
197
+ }
198
+ html.dark .agent-shimmer::after {
199
+ background: linear-gradient(90deg, transparent 0%, rgba(194,77,255,0.6) 30%, rgba(157,107,255,0.55) 50%, rgba(232,102,251,0.55) 70%, transparent 100%);
200
+ background-size: 200% 100%;
201
+ }
202
+
203
+ @theme inline {
204
+ --color-background: var(--background);
205
+ --color-foreground: var(--foreground);
206
+ --color-card: var(--card);
207
+ --color-card-foreground: var(--card-foreground);
208
+ --color-muted: var(--muted);
209
+ --color-muted-foreground: var(--muted-foreground);
210
+ --color-border: var(--border);
211
+ --color-border-light: var(--border-light);
212
+ --color-ring: var(--ring);
213
+ --color-accent: var(--accent);
214
+ --color-accent-foreground: var(--accent-foreground);
215
+ --color-brand: var(--brand);
216
+ --color-brand-hover: var(--brand-hover);
217
+ --color-brand-light: var(--brand-light);
218
+ --color-brand-lighter: var(--brand-lighter);
219
+ --color-brand-subtle: var(--brand-subtle);
220
+ --color-navy: var(--navy);
221
+ --color-navy-light: var(--navy-light);
222
+ --color-green: var(--green);
223
+ --color-green-bg: var(--green-bg);
224
+ --color-red: var(--red);
225
+ --color-red-bg: var(--red-bg);
226
+ --color-orange: var(--orange);
227
+ --color-orange-bg: var(--orange-bg);
228
+ --color-sparkle: var(--sparkle);
229
+ --color-sparkle-bg: var(--sparkle-bg);
230
+ --color-sparkle-light: var(--sparkle-light);
231
+ --color-agent-card: var(--agent-card);
232
+ --color-sparkle-border: var(--sparkle-border);
233
+ --color-yellow: var(--yellow);
234
+ --color-yellow-bg: var(--yellow-bg);
235
+ --color-background-alt: var(--background-alt);
236
+ --color-mint: var(--mint);
237
+ --color-mint-bg: var(--mint-bg);
238
+ --color-sky: var(--sky);
239
+ --color-sky-bg: var(--sky-bg);
240
+ --color-violet: var(--violet);
241
+ --color-violet-bg: var(--violet-bg);
242
+ --color-purple: var(--purple);
243
+ --color-purple-bg: var(--purple-bg);
244
+ --color-pink: var(--pink);
245
+ --color-pink-bg: var(--pink-bg);
246
+ --font-sans: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
247
+ --font-mono: "SF Mono", "Roboto Mono", "Menlo", monospace;
248
+ }
249
+
250
+ /* ── Animations ── */
251
+ @keyframes shimmer {
252
+ 0% { background-position: -200% 0; }
253
+ 100% { background-position: 200% 0; }
254
+ }
255
+
256
+ @keyframes sparkle-pulse {
257
+ 0%, 100% { opacity: 1; }
258
+ 50% { opacity: 0.5; }
259
+ }
260
+
261
+ @keyframes sparkle-shimmer {
262
+ 0% { background-position: -200% 0; }
263
+ 100% { background-position: 200% 0; }
264
+ }
265
+
266
+ @keyframes m-sparkle-shimmer {
267
+ 0% { background-position: -200% 0; }
268
+ 100% { background-position: 200% 0; }
269
+ }
270
+
271
+ @keyframes score-glow {
272
+ 0%, 100% { filter: brightness(1); }
273
+ 50% { filter: brightness(1.08); }
274
+ }
275
+
276
+ @keyframes status-pulse {
277
+ 0%, 100% { opacity: 1; }
278
+ 50% { opacity: 0.4; }
279
+ }
280
+
281
+ .skeleton {
282
+ background: linear-gradient(90deg, var(--accent) 25%, var(--border-light) 50%, var(--accent) 75%);
283
+ background-size: 200% 100%;
284
+ animation: shimmer 1.5s ease-in-out infinite;
285
+ }
286
+
287
+ .sparkle-pulse {
288
+ animation: sparkle-pulse 3s ease-in-out infinite;
289
+ }
290
+
291
+ .score-glow {
292
+ animation: score-glow 4s ease-in-out infinite;
293
+ }
294
+
295
+ .status-pulse {
296
+ animation: status-pulse 2s ease-in-out infinite;
297
+ }
298
+
299
+ .custom-scrollbar::-webkit-scrollbar {
300
+ width: 4px;
301
+ }
302
+ .custom-scrollbar::-webkit-scrollbar-track {
303
+ background: transparent;
304
+ }
305
+ .custom-scrollbar::-webkit-scrollbar-thumb {
306
+ background: var(--border);
307
+ border-radius: 2px;
308
+ }
309
+ .custom-scrollbar::-webkit-scrollbar-thumb:hover {
310
+ background: var(--muted);
311
+ }
312
+
313
+ /* Respect reduced motion */
314
+ @media (prefers-reduced-motion: reduce) {
315
+ *, *::before, *::after {
316
+ animation-duration: 0.01ms !important;
317
+ animation-iteration-count: 1 !important;
318
+ transition-duration: 0.01ms !important;
319
+ }
320
+ }
321
+
322
+ body {
323
+ background: var(--background);
324
+ color: var(--foreground);
325
+ -webkit-font-smoothing: antialiased;
326
+ }
package/tokens.d.ts ADDED
@@ -0,0 +1,4 @@
1
+ // GENERATED by build.mjs -- do not edit by hand.
2
+ export type TokenMap = Record<string, string>;
3
+ export declare const tokens: { light: TokenMap; dark: TokenMap; global: TokenMap };
4
+ export default tokens;