nuvox 0.1.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.
@@ -0,0 +1,1155 @@
1
+ /* Light — Default, neutral, high-legibility surface.
2
+ Generated from src/tokens/themes/light.ts — do not hand-edit. */
3
+ [data-theme="light"] {
4
+ --color-neutral-0: #ffffff;
5
+ --color-neutral-50: #f9fafb;
6
+ --color-neutral-100: #f3f4f6;
7
+ --color-neutral-200: #e5e7eb;
8
+ --color-neutral-300: #d1d5db;
9
+ --color-neutral-400: #9ca3af;
10
+ --color-neutral-500: #6b7280;
11
+ --color-neutral-600: #4b5563;
12
+ --color-neutral-700: #374151;
13
+ --color-neutral-800: #1f2937;
14
+ --color-neutral-900: #111827;
15
+ --color-neutral-950: #030712;
16
+ --color-success-light: #d1fae5;
17
+ --color-success-subtle: #a7f3d0;
18
+ --color-success-base: #10b981;
19
+ --color-success-dark: #059669;
20
+ --color-success-deeper: #064e3b;
21
+ --color-danger-light: #fee2e2;
22
+ --color-danger-subtle: #fecaca;
23
+ --color-danger-base: #ef4444;
24
+ --color-danger-dark: #dc2626;
25
+ --color-danger-deeper: #7f1d1d;
26
+ --color-warning-light: #fef3c7;
27
+ --color-warning-subtle: #fde68a;
28
+ --color-warning-base: #f59e0b;
29
+ --color-warning-dark: #d97706;
30
+ --color-warning-deeper: #78350f;
31
+ --color-info-light: #dbeafe;
32
+ --color-info-subtle: #bfdbfe;
33
+ --color-info-base: #3b82f6;
34
+ --color-info-dark: #2563eb;
35
+ --color-info-deeper: #1e3a5f;
36
+ --color-background: #ffffff;
37
+ --color-surface: #ffffff;
38
+ --color-surfaceRaised: #ffffff;
39
+ --color-border: #e5e7eb;
40
+ --color-borderFocus: #9ca3af;
41
+ --color-text: #111827;
42
+ --color-textMuted: #6b7280;
43
+ --color-textInverse: #ffffff;
44
+ --radius-sm: 6px;
45
+ --radius-md: 10px;
46
+ --radius-lg: 14px;
47
+ --radius-xl: 18px;
48
+ --radius-2xl: 24px;
49
+ --radius-full: 9999px;
50
+ --spacing-xs: 4px;
51
+ --spacing-sm: 8px;
52
+ --spacing-md: 12px;
53
+ --spacing-lg: 16px;
54
+ --spacing-xl: 24px;
55
+ --spacing-2xl: 32px;
56
+ --typography-fontSans: 'Inter', system-ui, sans-serif;
57
+ --typography-fontMono: 'JetBrains Mono', monospace;
58
+ --typography-sizeXs: 12px;
59
+ --typography-sizeSm: 14px;
60
+ --typography-sizeMd: 16px;
61
+ --typography-sizeLg: 18px;
62
+ --typography-sizeXl: 22px;
63
+ --typography-weightNormal: 400;
64
+ --typography-weightMedium: 500;
65
+ --typography-weightBold: 700;
66
+ --typography-lineHeightTight: 1.2;
67
+ --typography-lineHeightNormal: 1.5;
68
+ --shadow-xs: 0 1px 2px rgba(0,0,0,0.05);
69
+ --shadow-sm: 0 2px 6px rgba(0,0,0,0.06);
70
+ --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
71
+ --shadow-lg: 0 10px 24px rgba(0,0,0,0.10);
72
+ --shadow-xl: 0 20px 40px rgba(0,0,0,0.12);
73
+ --shadow-2xl: 0 28px 56px rgba(0,0,0,0.16);
74
+ --shadow-inner: inset 0 1px 2px rgba(0,0,0,0.05);
75
+ --elevation-dropdown: 1000;
76
+ --elevation-popover: 1100;
77
+ --elevation-modal: 1200;
78
+ --elevation-toast: 1300;
79
+ --elevation-tooltip: 1400;
80
+ --motion-durationFast: 120ms;
81
+ --motion-durationNormal: 200ms;
82
+ --motion-durationSlow: 320ms;
83
+ --motion-easeStandard: cubic-bezier(0.4, 0, 0.2, 1);
84
+ --motion-easeEmphasized: cubic-bezier(0.2, 0, 0, 1);
85
+ --motion-durationInstant: 0ms;
86
+ --border-widthThin: 1px;
87
+ --border-widthMedium: 1.5px;
88
+ --border-widthThick: 2px;
89
+ --border-style: solid;
90
+ --effects-backdropBlur: 0px;
91
+ }
92
+
93
+ /* Dark — Low-glare surface for extended use.
94
+ Generated from src/tokens/themes/dark.ts — do not hand-edit. */
95
+ [data-theme="dark"] {
96
+ --color-neutral-0: #030712;
97
+ --color-neutral-50: #111827;
98
+ --color-neutral-100: #1f2937;
99
+ --color-neutral-200: #374151;
100
+ --color-neutral-300: #4b5563;
101
+ --color-neutral-400: #6b7280;
102
+ --color-neutral-500: #9ca3af;
103
+ --color-neutral-600: #d1d5db;
104
+ --color-neutral-700: #e5e7eb;
105
+ --color-neutral-800: #f3f4f6;
106
+ --color-neutral-900: #f9fafb;
107
+ --color-neutral-950: #ffffff;
108
+ --color-success-light: #064e3b;
109
+ --color-success-subtle: #065f46;
110
+ --color-success-base: #34d399;
111
+ --color-success-dark: #6ee7b7;
112
+ --color-success-deeper: #d1fae5;
113
+ --color-danger-light: #7f1d1d;
114
+ --color-danger-subtle: #991b1b;
115
+ --color-danger-base: #f87171;
116
+ --color-danger-dark: #fca5a5;
117
+ --color-danger-deeper: #fee2e2;
118
+ --color-warning-light: #78350f;
119
+ --color-warning-subtle: #92400e;
120
+ --color-warning-base: #fbbf24;
121
+ --color-warning-dark: #fcd34d;
122
+ --color-warning-deeper: #fef3c7;
123
+ --color-info-light: #1e3a5f;
124
+ --color-info-subtle: #1e40af;
125
+ --color-info-base: #60a5fa;
126
+ --color-info-dark: #93c5fd;
127
+ --color-info-deeper: #dbeafe;
128
+ --color-background: #0b0f19;
129
+ --color-surface: #131826;
130
+ --color-surfaceRaised: #1c2333;
131
+ --color-border: #2a3143;
132
+ --color-borderFocus: #6b7280;
133
+ --color-text: #f3f4f6;
134
+ --color-textMuted: #9ca3af;
135
+ --color-textInverse: #111827;
136
+ --radius-sm: 6px;
137
+ --radius-md: 10px;
138
+ --radius-lg: 14px;
139
+ --radius-xl: 18px;
140
+ --radius-2xl: 24px;
141
+ --radius-full: 9999px;
142
+ --spacing-xs: 4px;
143
+ --spacing-sm: 8px;
144
+ --spacing-md: 12px;
145
+ --spacing-lg: 16px;
146
+ --spacing-xl: 24px;
147
+ --spacing-2xl: 32px;
148
+ --typography-fontSans: 'Inter', system-ui, sans-serif;
149
+ --typography-fontMono: 'JetBrains Mono', monospace;
150
+ --typography-sizeXs: 12px;
151
+ --typography-sizeSm: 14px;
152
+ --typography-sizeMd: 16px;
153
+ --typography-sizeLg: 18px;
154
+ --typography-sizeXl: 22px;
155
+ --typography-weightNormal: 400;
156
+ --typography-weightMedium: 500;
157
+ --typography-weightBold: 700;
158
+ --typography-lineHeightTight: 1.2;
159
+ --typography-lineHeightNormal: 1.5;
160
+ --shadow-xs: 0 1px 2px rgba(0,0,0,0.4);
161
+ --shadow-sm: 0 2px 6px rgba(0,0,0,0.45);
162
+ --shadow-md: 0 4px 12px rgba(0,0,0,0.5);
163
+ --shadow-lg: 0 10px 24px rgba(0,0,0,0.55);
164
+ --shadow-xl: 0 20px 40px rgba(0,0,0,0.6);
165
+ --shadow-2xl: 0 28px 56px rgba(0,0,0,0.65);
166
+ --shadow-inner: inset 0 1px 2px rgba(0,0,0,0.4);
167
+ --elevation-dropdown: 1000;
168
+ --elevation-popover: 1100;
169
+ --elevation-modal: 1200;
170
+ --elevation-toast: 1300;
171
+ --elevation-tooltip: 1400;
172
+ --motion-durationFast: 120ms;
173
+ --motion-durationNormal: 200ms;
174
+ --motion-durationSlow: 320ms;
175
+ --motion-easeStandard: cubic-bezier(0.4, 0, 0.2, 1);
176
+ --motion-easeEmphasized: cubic-bezier(0.2, 0, 0, 1);
177
+ --motion-durationInstant: 0ms;
178
+ --border-widthThin: 1px;
179
+ --border-widthMedium: 1.5px;
180
+ --border-widthThick: 2px;
181
+ --border-style: solid;
182
+ --effects-backdropBlur: 0px;
183
+ }
184
+
185
+ /* Glass — Translucent, softly rounded, floating surfaces. Needs a rich background behind it.
186
+ Generated from src/tokens/themes/glass.ts — do not hand-edit. */
187
+ [data-theme="glass"] {
188
+ --color-neutral-0: #ffffff;
189
+ --color-neutral-50: #f9fafb;
190
+ --color-neutral-100: #f3f4f6;
191
+ --color-neutral-200: #e5e7eb;
192
+ --color-neutral-300: #d1d5db;
193
+ --color-neutral-400: #9ca3af;
194
+ --color-neutral-500: #6b7280;
195
+ --color-neutral-600: #4b5563;
196
+ --color-neutral-700: #374151;
197
+ --color-neutral-800: #1f2937;
198
+ --color-neutral-900: #111827;
199
+ --color-neutral-950: #030712;
200
+ --color-success-light: #d1fae5;
201
+ --color-success-subtle: #a7f3d0;
202
+ --color-success-base: #10b981;
203
+ --color-success-dark: #059669;
204
+ --color-success-deeper: #064e3b;
205
+ --color-danger-light: #fee2e2;
206
+ --color-danger-subtle: #fecaca;
207
+ --color-danger-base: #ef4444;
208
+ --color-danger-dark: #dc2626;
209
+ --color-danger-deeper: #7f1d1d;
210
+ --color-warning-light: #fef3c7;
211
+ --color-warning-subtle: #fde68a;
212
+ --color-warning-base: #f59e0b;
213
+ --color-warning-dark: #d97706;
214
+ --color-warning-deeper: #78350f;
215
+ --color-info-light: #dbeafe;
216
+ --color-info-subtle: #bfdbfe;
217
+ --color-info-base: #3b82f6;
218
+ --color-info-dark: #2563eb;
219
+ --color-info-deeper: #1e3a5f;
220
+ --color-background: transparent;
221
+ --color-surface: rgba(255,255,255,0.55);
222
+ --color-surfaceRaised: rgba(255,255,255,0.75);
223
+ --color-border: rgba(255,255,255,0.35);
224
+ --color-borderFocus: #9ca3af;
225
+ --color-text: #111827;
226
+ --color-textMuted: rgba(17,24,39,0.65);
227
+ --color-textInverse: #ffffff;
228
+ --radius-sm: 10px;
229
+ --radius-md: 16px;
230
+ --radius-lg: 22px;
231
+ --radius-xl: 28px;
232
+ --radius-2xl: 36px;
233
+ --radius-full: 9999px;
234
+ --spacing-xs: 4px;
235
+ --spacing-sm: 8px;
236
+ --spacing-md: 12px;
237
+ --spacing-lg: 16px;
238
+ --spacing-xl: 24px;
239
+ --spacing-2xl: 32px;
240
+ --typography-fontSans: 'Inter', system-ui, sans-serif;
241
+ --typography-fontMono: 'JetBrains Mono', monospace;
242
+ --typography-sizeXs: 12px;
243
+ --typography-sizeSm: 14px;
244
+ --typography-sizeMd: 16px;
245
+ --typography-sizeLg: 18px;
246
+ --typography-sizeXl: 22px;
247
+ --typography-weightNormal: 400;
248
+ --typography-weightMedium: 500;
249
+ --typography-weightBold: 700;
250
+ --typography-lineHeightTight: 1.2;
251
+ --typography-lineHeightNormal: 1.5;
252
+ --shadow-xs: 0 2px 8px rgba(0,0,0,0.06);
253
+ --shadow-sm: 0 4px 16px rgba(0,0,0,0.08);
254
+ --shadow-md: 0 8px 32px rgba(0,0,0,0.10);
255
+ --shadow-lg: 0 16px 48px rgba(0,0,0,0.12);
256
+ --shadow-xl: 0 24px 64px rgba(0,0,0,0.14);
257
+ --shadow-2xl: 0 32px 80px rgba(0,0,0,0.18);
258
+ --shadow-inner: inset 0 1px 0 rgba(255,255,255,0.4);
259
+ --elevation-dropdown: 1000;
260
+ --elevation-popover: 1100;
261
+ --elevation-modal: 1200;
262
+ --elevation-toast: 1300;
263
+ --elevation-tooltip: 1400;
264
+ --motion-durationFast: 160ms;
265
+ --motion-durationNormal: 260ms;
266
+ --motion-durationSlow: 400ms;
267
+ --motion-easeStandard: cubic-bezier(0.25, 0.1, 0.25, 1);
268
+ --motion-easeEmphasized: cubic-bezier(0.16, 1, 0.3, 1);
269
+ --motion-durationInstant: 0ms;
270
+ --border-widthThin: 1px;
271
+ --border-widthMedium: 1px;
272
+ --border-widthThick: 1.5px;
273
+ --border-style: solid;
274
+ --effects-backdropBlur: 16px;
275
+ }
276
+
277
+ /* Dark Glass — Translucent glass panels floating over a dark background.
278
+ Generated from src/tokens/themes/dark-glass.ts — do not hand-edit. */
279
+ [data-theme="dark-glass"] {
280
+ --color-neutral-0: #030712;
281
+ --color-neutral-50: #111827;
282
+ --color-neutral-100: #1f2937;
283
+ --color-neutral-200: #374151;
284
+ --color-neutral-300: #4b5563;
285
+ --color-neutral-400: #6b7280;
286
+ --color-neutral-500: #9ca3af;
287
+ --color-neutral-600: #d1d5db;
288
+ --color-neutral-700: #e5e7eb;
289
+ --color-neutral-800: #f3f4f6;
290
+ --color-neutral-900: #f9fafb;
291
+ --color-neutral-950: #ffffff;
292
+ --color-success-light: #064e3b;
293
+ --color-success-subtle: #065f46;
294
+ --color-success-base: #34d399;
295
+ --color-success-dark: #6ee7b7;
296
+ --color-success-deeper: #d1fae5;
297
+ --color-danger-light: #7f1d1d;
298
+ --color-danger-subtle: #991b1b;
299
+ --color-danger-base: #f87171;
300
+ --color-danger-dark: #fca5a5;
301
+ --color-danger-deeper: #fee2e2;
302
+ --color-warning-light: #78350f;
303
+ --color-warning-subtle: #92400e;
304
+ --color-warning-base: #fbbf24;
305
+ --color-warning-dark: #fcd34d;
306
+ --color-warning-deeper: #fef3c7;
307
+ --color-info-light: #1e3a5f;
308
+ --color-info-subtle: #1e40af;
309
+ --color-info-base: #60a5fa;
310
+ --color-info-dark: #93c5fd;
311
+ --color-info-deeper: #dbeafe;
312
+ --color-background: #05070d;
313
+ --color-surface: rgba(255,255,255,0.06);
314
+ --color-surfaceRaised: rgba(255,255,255,0.10);
315
+ --color-border: rgba(255,255,255,0.12);
316
+ --color-borderFocus: #6b7280;
317
+ --color-text: #f3f4f6;
318
+ --color-textMuted: #9ca3af;
319
+ --color-textInverse: #111827;
320
+ --radius-sm: 10px;
321
+ --radius-md: 16px;
322
+ --radius-lg: 22px;
323
+ --radius-xl: 28px;
324
+ --radius-2xl: 36px;
325
+ --radius-full: 9999px;
326
+ --spacing-xs: 4px;
327
+ --spacing-sm: 8px;
328
+ --spacing-md: 12px;
329
+ --spacing-lg: 16px;
330
+ --spacing-xl: 24px;
331
+ --spacing-2xl: 32px;
332
+ --typography-fontSans: 'Inter', system-ui, sans-serif;
333
+ --typography-fontMono: 'JetBrains Mono', monospace;
334
+ --typography-sizeXs: 12px;
335
+ --typography-sizeSm: 14px;
336
+ --typography-sizeMd: 16px;
337
+ --typography-sizeLg: 18px;
338
+ --typography-sizeXl: 22px;
339
+ --typography-weightNormal: 400;
340
+ --typography-weightMedium: 500;
341
+ --typography-weightBold: 700;
342
+ --typography-lineHeightTight: 1.2;
343
+ --typography-lineHeightNormal: 1.5;
344
+ --shadow-xs: 0 2px 8px rgba(0,0,0,0.5);
345
+ --shadow-sm: 0 4px 16px rgba(0,0,0,0.55);
346
+ --shadow-md: 0 8px 32px rgba(0,0,0,0.6);
347
+ --shadow-lg: 0 16px 48px rgba(0,0,0,0.65);
348
+ --shadow-xl: 0 24px 64px rgba(0,0,0,0.7);
349
+ --shadow-2xl: 0 32px 80px rgba(0,0,0,0.75);
350
+ --shadow-inner: inset 0 1px 0 rgba(255,255,255,0.08);
351
+ --elevation-dropdown: 1000;
352
+ --elevation-popover: 1100;
353
+ --elevation-modal: 1200;
354
+ --elevation-toast: 1300;
355
+ --elevation-tooltip: 1400;
356
+ --motion-durationFast: 160ms;
357
+ --motion-durationNormal: 260ms;
358
+ --motion-durationSlow: 400ms;
359
+ --motion-easeStandard: cubic-bezier(0.4, 0, 0.2, 1);
360
+ --motion-easeEmphasized: cubic-bezier(0.2, 0, 0, 1);
361
+ --motion-durationInstant: 0ms;
362
+ --border-widthThin: 1px;
363
+ --border-widthMedium: 1.5px;
364
+ --border-widthThick: 2px;
365
+ --border-style: solid;
366
+ --effects-backdropBlur: 18px;
367
+ }
368
+
369
+ /* Minimalism — Reduced to essentials — thin borders, flat surfaces, no shadow, tight radius.
370
+ Generated from src/tokens/themes/minimalism.ts — do not hand-edit. */
371
+ [data-theme="minimalism"] {
372
+ --color-neutral-0: #ffffff;
373
+ --color-neutral-50: #f9fafb;
374
+ --color-neutral-100: #f3f4f6;
375
+ --color-neutral-200: #e5e7eb;
376
+ --color-neutral-300: #d1d5db;
377
+ --color-neutral-400: #9ca3af;
378
+ --color-neutral-500: #6b7280;
379
+ --color-neutral-600: #4b5563;
380
+ --color-neutral-700: #374151;
381
+ --color-neutral-800: #1f2937;
382
+ --color-neutral-900: #111827;
383
+ --color-neutral-950: #030712;
384
+ --color-success-light: #d1fae5;
385
+ --color-success-subtle: #a7f3d0;
386
+ --color-success-base: #10b981;
387
+ --color-success-dark: #059669;
388
+ --color-success-deeper: #064e3b;
389
+ --color-danger-light: #fee2e2;
390
+ --color-danger-subtle: #fecaca;
391
+ --color-danger-base: #ef4444;
392
+ --color-danger-dark: #dc2626;
393
+ --color-danger-deeper: #7f1d1d;
394
+ --color-warning-light: #fef3c7;
395
+ --color-warning-subtle: #fde68a;
396
+ --color-warning-base: #f59e0b;
397
+ --color-warning-dark: #d97706;
398
+ --color-warning-deeper: #78350f;
399
+ --color-info-light: #dbeafe;
400
+ --color-info-subtle: #bfdbfe;
401
+ --color-info-base: #3b82f6;
402
+ --color-info-dark: #2563eb;
403
+ --color-info-deeper: #1e3a5f;
404
+ --color-background: #ffffff;
405
+ --color-surface: #ffffff;
406
+ --color-surfaceRaised: #ffffff;
407
+ --color-border: #e2e2e2;
408
+ --color-borderFocus: #9ca3af;
409
+ --color-text: #111827;
410
+ --color-textMuted: #6b7280;
411
+ --color-textInverse: #ffffff;
412
+ --radius-sm: 2px;
413
+ --radius-md: 3px;
414
+ --radius-lg: 4px;
415
+ --radius-xl: 6px;
416
+ --radius-2xl: 8px;
417
+ --radius-full: 9999px;
418
+ --spacing-xs: 4px;
419
+ --spacing-sm: 8px;
420
+ --spacing-md: 12px;
421
+ --spacing-lg: 16px;
422
+ --spacing-xl: 24px;
423
+ --spacing-2xl: 32px;
424
+ --typography-fontSans: 'Inter', system-ui, sans-serif;
425
+ --typography-fontMono: 'JetBrains Mono', monospace;
426
+ --typography-sizeXs: 12px;
427
+ --typography-sizeSm: 14px;
428
+ --typography-sizeMd: 16px;
429
+ --typography-sizeLg: 18px;
430
+ --typography-sizeXl: 22px;
431
+ --typography-weightNormal: 400;
432
+ --typography-weightMedium: 500;
433
+ --typography-weightBold: 700;
434
+ --typography-lineHeightTight: 1.2;
435
+ --typography-lineHeightNormal: 1.5;
436
+ --shadow-xs: none;
437
+ --shadow-sm: none;
438
+ --shadow-md: none;
439
+ --shadow-lg: none;
440
+ --shadow-xl: none;
441
+ --shadow-2xl: none;
442
+ --shadow-inner: none;
443
+ --elevation-dropdown: 1000;
444
+ --elevation-popover: 1100;
445
+ --elevation-modal: 1200;
446
+ --elevation-toast: 1300;
447
+ --elevation-tooltip: 1400;
448
+ --motion-durationFast: 120ms;
449
+ --motion-durationNormal: 200ms;
450
+ --motion-durationSlow: 320ms;
451
+ --motion-easeStandard: cubic-bezier(0.4, 0, 0.2, 1);
452
+ --motion-easeEmphasized: cubic-bezier(0.2, 0, 0, 1);
453
+ --motion-durationInstant: 0ms;
454
+ --border-widthThin: 1px;
455
+ --border-widthMedium: 1px;
456
+ --border-widthThick: 1px;
457
+ --border-style: solid;
458
+ --effects-backdropBlur: 0px;
459
+ }
460
+
461
+ /* Brutalism — Raw, unstyled web aesthetic — square corners, zero shadow, monospace type.
462
+ Generated from src/tokens/themes/brutalism.ts — do not hand-edit. */
463
+ [data-theme="brutalism"] {
464
+ --color-neutral-0: #ffffff;
465
+ --color-neutral-50: #f9fafb;
466
+ --color-neutral-100: #f3f4f6;
467
+ --color-neutral-200: #e5e7eb;
468
+ --color-neutral-300: #d1d5db;
469
+ --color-neutral-400: #9ca3af;
470
+ --color-neutral-500: #6b7280;
471
+ --color-neutral-600: #4b5563;
472
+ --color-neutral-700: #374151;
473
+ --color-neutral-800: #1f2937;
474
+ --color-neutral-900: #111827;
475
+ --color-neutral-950: #030712;
476
+ --color-success-light: #d1fae5;
477
+ --color-success-subtle: #a7f3d0;
478
+ --color-success-base: #10b981;
479
+ --color-success-dark: #059669;
480
+ --color-success-deeper: #064e3b;
481
+ --color-danger-light: #fee2e2;
482
+ --color-danger-subtle: #fecaca;
483
+ --color-danger-base: #ef4444;
484
+ --color-danger-dark: #dc2626;
485
+ --color-danger-deeper: #7f1d1d;
486
+ --color-warning-light: #fef3c7;
487
+ --color-warning-subtle: #fde68a;
488
+ --color-warning-base: #f59e0b;
489
+ --color-warning-dark: #d97706;
490
+ --color-warning-deeper: #78350f;
491
+ --color-info-light: #dbeafe;
492
+ --color-info-subtle: #bfdbfe;
493
+ --color-info-base: #3b82f6;
494
+ --color-info-dark: #2563eb;
495
+ --color-info-deeper: #1e3a5f;
496
+ --color-background: #ffffff;
497
+ --color-surface: #ffffff;
498
+ --color-surfaceRaised: #ffffff;
499
+ --color-border: #000000;
500
+ --color-borderFocus: #ff0000;
501
+ --color-text: #000000;
502
+ --color-textMuted: #6b7280;
503
+ --color-textInverse: #ffffff;
504
+ --radius-sm: 0px;
505
+ --radius-md: 0px;
506
+ --radius-lg: 0px;
507
+ --radius-xl: 0px;
508
+ --radius-2xl: 0px;
509
+ --radius-full: 0px;
510
+ --spacing-xs: 4px;
511
+ --spacing-sm: 8px;
512
+ --spacing-md: 12px;
513
+ --spacing-lg: 16px;
514
+ --spacing-xl: 24px;
515
+ --spacing-2xl: 32px;
516
+ --typography-fontSans: 'Courier New', monospace;
517
+ --typography-fontMono: 'Courier New', monospace;
518
+ --typography-sizeXs: 12px;
519
+ --typography-sizeSm: 14px;
520
+ --typography-sizeMd: 16px;
521
+ --typography-sizeLg: 18px;
522
+ --typography-sizeXl: 22px;
523
+ --typography-weightNormal: 400;
524
+ --typography-weightMedium: 500;
525
+ --typography-weightBold: 700;
526
+ --typography-lineHeightTight: 1.2;
527
+ --typography-lineHeightNormal: 1.5;
528
+ --shadow-xs: none;
529
+ --shadow-sm: none;
530
+ --shadow-md: none;
531
+ --shadow-lg: none;
532
+ --shadow-xl: none;
533
+ --shadow-2xl: none;
534
+ --shadow-inner: none;
535
+ --elevation-dropdown: 1000;
536
+ --elevation-popover: 1100;
537
+ --elevation-modal: 1200;
538
+ --elevation-toast: 1300;
539
+ --elevation-tooltip: 1400;
540
+ --motion-durationFast: 0ms;
541
+ --motion-durationNormal: 0ms;
542
+ --motion-durationSlow: 0ms;
543
+ --motion-easeStandard: cubic-bezier(0.4, 0, 0.2, 1);
544
+ --motion-easeEmphasized: cubic-bezier(0.2, 0, 0, 1);
545
+ --motion-durationInstant: 0ms;
546
+ --border-widthThin: 1px;
547
+ --border-widthMedium: 2px;
548
+ --border-widthThick: 3px;
549
+ --border-style: solid;
550
+ --effects-backdropBlur: 0px;
551
+ }
552
+
553
+ /* Neo Brutalism — Bold black borders, flat offset shadows, saturated color blocks.
554
+ Generated from src/tokens/themes/neobrutalism.ts — do not hand-edit. */
555
+ [data-theme="neobrutalism"] {
556
+ --color-neutral-0: #ffffff;
557
+ --color-neutral-50: #f9fafb;
558
+ --color-neutral-100: #f3f4f6;
559
+ --color-neutral-200: #e5e7eb;
560
+ --color-neutral-300: #d1d5db;
561
+ --color-neutral-400: #9ca3af;
562
+ --color-neutral-500: #6b7280;
563
+ --color-neutral-600: #4b5563;
564
+ --color-neutral-700: #374151;
565
+ --color-neutral-800: #1f2937;
566
+ --color-neutral-900: #111827;
567
+ --color-neutral-950: #030712;
568
+ --color-success-light: #d1fae5;
569
+ --color-success-subtle: #a7f3d0;
570
+ --color-success-base: #10b981;
571
+ --color-success-dark: #059669;
572
+ --color-success-deeper: #064e3b;
573
+ --color-danger-light: #fee2e2;
574
+ --color-danger-subtle: #fecaca;
575
+ --color-danger-base: #ef4444;
576
+ --color-danger-dark: #dc2626;
577
+ --color-danger-deeper: #7f1d1d;
578
+ --color-warning-light: #fef3c7;
579
+ --color-warning-subtle: #fde68a;
580
+ --color-warning-base: #f59e0b;
581
+ --color-warning-dark: #d97706;
582
+ --color-warning-deeper: #78350f;
583
+ --color-info-light: #dbeafe;
584
+ --color-info-subtle: #bfdbfe;
585
+ --color-info-base: #3b82f6;
586
+ --color-info-dark: #2563eb;
587
+ --color-info-deeper: #1e3a5f;
588
+ --color-background: #fef3c7;
589
+ --color-surface: #ffffff;
590
+ --color-surfaceRaised: #ffffff;
591
+ --color-border: #000000;
592
+ --color-borderFocus: #000000;
593
+ --color-text: #111827;
594
+ --color-textMuted: #6b7280;
595
+ --color-textInverse: #ffffff;
596
+ --radius-sm: 4px;
597
+ --radius-md: 6px;
598
+ --radius-lg: 8px;
599
+ --radius-xl: 10px;
600
+ --radius-2xl: 12px;
601
+ --radius-full: 9999px;
602
+ --spacing-xs: 4px;
603
+ --spacing-sm: 8px;
604
+ --spacing-md: 12px;
605
+ --spacing-lg: 16px;
606
+ --spacing-xl: 24px;
607
+ --spacing-2xl: 32px;
608
+ --typography-fontSans: 'Inter', system-ui, sans-serif;
609
+ --typography-fontMono: 'JetBrains Mono', monospace;
610
+ --typography-sizeXs: 12px;
611
+ --typography-sizeSm: 14px;
612
+ --typography-sizeMd: 16px;
613
+ --typography-sizeLg: 18px;
614
+ --typography-sizeXl: 22px;
615
+ --typography-weightNormal: 400;
616
+ --typography-weightMedium: 500;
617
+ --typography-weightBold: 700;
618
+ --typography-lineHeightTight: 1.2;
619
+ --typography-lineHeightNormal: 1.5;
620
+ --shadow-xs: 2px 2px 0 #000000;
621
+ --shadow-sm: 3px 3px 0 #000000;
622
+ --shadow-md: 4px 4px 0 #000000;
623
+ --shadow-lg: 6px 6px 0 #000000;
624
+ --shadow-xl: 8px 8px 0 #000000;
625
+ --shadow-2xl: 10px 10px 0 #000000;
626
+ --shadow-inner: inset 2px 2px 0 #000000;
627
+ --elevation-dropdown: 1000;
628
+ --elevation-popover: 1100;
629
+ --elevation-modal: 1200;
630
+ --elevation-toast: 1300;
631
+ --elevation-tooltip: 1400;
632
+ --motion-durationFast: 80ms;
633
+ --motion-durationNormal: 140ms;
634
+ --motion-durationSlow: 200ms;
635
+ --motion-easeStandard: linear;
636
+ --motion-easeEmphasized: linear;
637
+ --motion-durationInstant: 0ms;
638
+ --border-widthThin: 2px;
639
+ --border-widthMedium: 3px;
640
+ --border-widthThick: 4px;
641
+ --border-style: solid;
642
+ --effects-backdropBlur: 0px;
643
+ }
644
+
645
+ /* Cyberpunk — Neon-on-black, glowing edges, high-saturation magenta/cyan accents.
646
+ Generated from src/tokens/themes/cyberpunk.ts — do not hand-edit. */
647
+ [data-theme="cyberpunk"] {
648
+ --color-neutral-0: #030712;
649
+ --color-neutral-50: #111827;
650
+ --color-neutral-100: #1f2937;
651
+ --color-neutral-200: #374151;
652
+ --color-neutral-300: #4b5563;
653
+ --color-neutral-400: #6b7280;
654
+ --color-neutral-500: #9ca3af;
655
+ --color-neutral-600: #d1d5db;
656
+ --color-neutral-700: #e5e7eb;
657
+ --color-neutral-800: #f3f4f6;
658
+ --color-neutral-900: #f9fafb;
659
+ --color-neutral-950: #ffffff;
660
+ --color-success-light: #064e3b;
661
+ --color-success-subtle: #065f46;
662
+ --color-success-base: #34d399;
663
+ --color-success-dark: #6ee7b7;
664
+ --color-success-deeper: #d1fae5;
665
+ --color-danger-light: #7f1d1d;
666
+ --color-danger-subtle: #991b1b;
667
+ --color-danger-base: #f87171;
668
+ --color-danger-dark: #fca5a5;
669
+ --color-danger-deeper: #fee2e2;
670
+ --color-warning-light: #78350f;
671
+ --color-warning-subtle: #92400e;
672
+ --color-warning-base: #fbbf24;
673
+ --color-warning-dark: #fcd34d;
674
+ --color-warning-deeper: #fef3c7;
675
+ --color-info-light: #1e3a5f;
676
+ --color-info-subtle: #1e40af;
677
+ --color-info-base: #60a5fa;
678
+ --color-info-dark: #93c5fd;
679
+ --color-info-deeper: #dbeafe;
680
+ --color-background: #0a0014;
681
+ --color-surface: #12001f;
682
+ --color-surfaceRaised: #1a0230;
683
+ --color-border: #ff2bd6;
684
+ --color-borderFocus: #00f0ff;
685
+ --color-text: #e8faff;
686
+ --color-textMuted: #9a8cc9;
687
+ --color-textInverse: #111827;
688
+ --radius-sm: 2px;
689
+ --radius-md: 4px;
690
+ --radius-lg: 6px;
691
+ --radius-xl: 8px;
692
+ --radius-2xl: 10px;
693
+ --radius-full: 9999px;
694
+ --spacing-xs: 4px;
695
+ --spacing-sm: 8px;
696
+ --spacing-md: 12px;
697
+ --spacing-lg: 16px;
698
+ --spacing-xl: 24px;
699
+ --spacing-2xl: 32px;
700
+ --typography-fontSans: 'Inter', system-ui, sans-serif;
701
+ --typography-fontMono: 'JetBrains Mono', monospace;
702
+ --typography-sizeXs: 12px;
703
+ --typography-sizeSm: 14px;
704
+ --typography-sizeMd: 16px;
705
+ --typography-sizeLg: 18px;
706
+ --typography-sizeXl: 22px;
707
+ --typography-weightNormal: 400;
708
+ --typography-weightMedium: 500;
709
+ --typography-weightBold: 700;
710
+ --typography-lineHeightTight: 1.2;
711
+ --typography-lineHeightNormal: 1.5;
712
+ --shadow-xs: 0 0 6px rgba(255,43,214,0.5);
713
+ --shadow-sm: 0 0 12px rgba(255,43,214,0.55);
714
+ --shadow-md: 0 0 20px rgba(0,240,255,0.5);
715
+ --shadow-lg: 0 0 32px rgba(0,240,255,0.55);
716
+ --shadow-xl: 0 0 48px rgba(255,43,214,0.6);
717
+ --shadow-2xl: 0 0 64px rgba(0,240,255,0.65);
718
+ --shadow-inner: inset 0 0 8px rgba(255,43,214,0.4);
719
+ --elevation-dropdown: 1000;
720
+ --elevation-popover: 1100;
721
+ --elevation-modal: 1200;
722
+ --elevation-toast: 1300;
723
+ --elevation-tooltip: 1400;
724
+ --motion-durationFast: 120ms;
725
+ --motion-durationNormal: 200ms;
726
+ --motion-durationSlow: 320ms;
727
+ --motion-easeStandard: cubic-bezier(0.83,0,0.17,1);
728
+ --motion-easeEmphasized: cubic-bezier(0.9,0,0.1,1);
729
+ --motion-durationInstant: 0ms;
730
+ --border-widthThin: 1px;
731
+ --border-widthMedium: 1.5px;
732
+ --border-widthThick: 2px;
733
+ --border-style: solid;
734
+ --effects-backdropBlur: 0px;
735
+ }
736
+
737
+ /* Gradient — Vibrant, colorful transitions across surfaces and accents.
738
+ Generated from src/tokens/themes/gradient.ts — do not hand-edit. */
739
+ [data-theme="gradient"] {
740
+ --color-neutral-0: #ffffff;
741
+ --color-neutral-50: #f9fafb;
742
+ --color-neutral-100: #f3f4f6;
743
+ --color-neutral-200: #e5e7eb;
744
+ --color-neutral-300: #d1d5db;
745
+ --color-neutral-400: #9ca3af;
746
+ --color-neutral-500: #6b7280;
747
+ --color-neutral-600: #4b5563;
748
+ --color-neutral-700: #374151;
749
+ --color-neutral-800: #1f2937;
750
+ --color-neutral-900: #111827;
751
+ --color-neutral-950: #030712;
752
+ --color-success-light: #d1fae5;
753
+ --color-success-subtle: #a7f3d0;
754
+ --color-success-base: #10b981;
755
+ --color-success-dark: #059669;
756
+ --color-success-deeper: #064e3b;
757
+ --color-danger-light: #fee2e2;
758
+ --color-danger-subtle: #fecaca;
759
+ --color-danger-base: #ef4444;
760
+ --color-danger-dark: #dc2626;
761
+ --color-danger-deeper: #7f1d1d;
762
+ --color-warning-light: #fef3c7;
763
+ --color-warning-subtle: #fde68a;
764
+ --color-warning-base: #f59e0b;
765
+ --color-warning-dark: #d97706;
766
+ --color-warning-deeper: #78350f;
767
+ --color-info-light: #dbeafe;
768
+ --color-info-subtle: #bfdbfe;
769
+ --color-info-base: #3b82f6;
770
+ --color-info-dark: #2563eb;
771
+ --color-info-deeper: #1e3a5f;
772
+ --color-background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
773
+ --color-surface: linear-gradient(135deg, rgba(255,255,255,0.92), rgba(255,255,255,0.75));
774
+ --color-surfaceRaised: #ffffff;
775
+ --color-border: rgba(118,75,162,0.25);
776
+ --color-borderFocus: #764ba2;
777
+ --color-text: #111827;
778
+ --color-textMuted: #6b7280;
779
+ --color-textInverse: #ffffff;
780
+ --radius-sm: 12px;
781
+ --radius-md: 18px;
782
+ --radius-lg: 24px;
783
+ --radius-xl: 32px;
784
+ --radius-2xl: 40px;
785
+ --radius-full: 9999px;
786
+ --spacing-xs: 4px;
787
+ --spacing-sm: 8px;
788
+ --spacing-md: 12px;
789
+ --spacing-lg: 16px;
790
+ --spacing-xl: 24px;
791
+ --spacing-2xl: 32px;
792
+ --typography-fontSans: 'Inter', system-ui, sans-serif;
793
+ --typography-fontMono: 'JetBrains Mono', monospace;
794
+ --typography-sizeXs: 12px;
795
+ --typography-sizeSm: 14px;
796
+ --typography-sizeMd: 16px;
797
+ --typography-sizeLg: 18px;
798
+ --typography-sizeXl: 22px;
799
+ --typography-weightNormal: 400;
800
+ --typography-weightMedium: 500;
801
+ --typography-weightBold: 700;
802
+ --typography-lineHeightTight: 1.2;
803
+ --typography-lineHeightNormal: 1.5;
804
+ --shadow-xs: 0 2px 10px rgba(118,75,162,0.15);
805
+ --shadow-sm: 0 4px 20px rgba(118,75,162,0.18);
806
+ --shadow-md: 0 8px 30px rgba(118,75,162,0.22);
807
+ --shadow-lg: 0 16px 40px rgba(118,75,162,0.26);
808
+ --shadow-xl: 0 24px 56px rgba(118,75,162,0.3);
809
+ --shadow-2xl: 0 32px 72px rgba(118,75,162,0.35);
810
+ --shadow-inner: inset 0 1px 0 rgba(255,255,255,0.5);
811
+ --elevation-dropdown: 1000;
812
+ --elevation-popover: 1100;
813
+ --elevation-modal: 1200;
814
+ --elevation-toast: 1300;
815
+ --elevation-tooltip: 1400;
816
+ --motion-durationFast: 120ms;
817
+ --motion-durationNormal: 240ms;
818
+ --motion-durationSlow: 380ms;
819
+ --motion-easeStandard: cubic-bezier(0.4, 0, 0.2, 1);
820
+ --motion-easeEmphasized: cubic-bezier(0.2, 0, 0, 1);
821
+ --motion-durationInstant: 0ms;
822
+ --border-widthThin: 1px;
823
+ --border-widthMedium: 1.5px;
824
+ --border-widthThick: 2px;
825
+ --border-style: solid;
826
+ --effects-backdropBlur: 0px;
827
+ }
828
+
829
+ /* Material — Google Material Design-inspired elevation shadows and motion curves.
830
+ Generated from src/tokens/themes/material.ts — do not hand-edit. */
831
+ [data-theme="material"] {
832
+ --color-neutral-0: #ffffff;
833
+ --color-neutral-50: #f9fafb;
834
+ --color-neutral-100: #f3f4f6;
835
+ --color-neutral-200: #e5e7eb;
836
+ --color-neutral-300: #d1d5db;
837
+ --color-neutral-400: #9ca3af;
838
+ --color-neutral-500: #6b7280;
839
+ --color-neutral-600: #4b5563;
840
+ --color-neutral-700: #374151;
841
+ --color-neutral-800: #1f2937;
842
+ --color-neutral-900: #111827;
843
+ --color-neutral-950: #030712;
844
+ --color-success-light: #d1fae5;
845
+ --color-success-subtle: #a7f3d0;
846
+ --color-success-base: #10b981;
847
+ --color-success-dark: #059669;
848
+ --color-success-deeper: #064e3b;
849
+ --color-danger-light: #fee2e2;
850
+ --color-danger-subtle: #fecaca;
851
+ --color-danger-base: #ef4444;
852
+ --color-danger-dark: #dc2626;
853
+ --color-danger-deeper: #7f1d1d;
854
+ --color-warning-light: #fef3c7;
855
+ --color-warning-subtle: #fde68a;
856
+ --color-warning-base: #f59e0b;
857
+ --color-warning-dark: #d97706;
858
+ --color-warning-deeper: #78350f;
859
+ --color-info-light: #dbeafe;
860
+ --color-info-subtle: #bfdbfe;
861
+ --color-info-base: #3b82f6;
862
+ --color-info-dark: #2563eb;
863
+ --color-info-deeper: #1e3a5f;
864
+ --color-background: #fafafa;
865
+ --color-surface: #ffffff;
866
+ --color-surfaceRaised: #ffffff;
867
+ --color-border: #e5e7eb;
868
+ --color-borderFocus: #9ca3af;
869
+ --color-text: #111827;
870
+ --color-textMuted: #6b7280;
871
+ --color-textInverse: #ffffff;
872
+ --radius-sm: 4px;
873
+ --radius-md: 8px;
874
+ --radius-lg: 12px;
875
+ --radius-xl: 16px;
876
+ --radius-2xl: 28px;
877
+ --radius-full: 9999px;
878
+ --spacing-xs: 4px;
879
+ --spacing-sm: 8px;
880
+ --spacing-md: 12px;
881
+ --spacing-lg: 16px;
882
+ --spacing-xl: 24px;
883
+ --spacing-2xl: 32px;
884
+ --typography-fontSans: 'Roboto', system-ui, sans-serif;
885
+ --typography-fontMono: 'JetBrains Mono', monospace;
886
+ --typography-sizeXs: 12px;
887
+ --typography-sizeSm: 14px;
888
+ --typography-sizeMd: 16px;
889
+ --typography-sizeLg: 18px;
890
+ --typography-sizeXl: 22px;
891
+ --typography-weightNormal: 400;
892
+ --typography-weightMedium: 500;
893
+ --typography-weightBold: 700;
894
+ --typography-lineHeightTight: 1.2;
895
+ --typography-lineHeightNormal: 1.5;
896
+ --shadow-xs: 0 1px 2px rgba(0,0,0,0.24);
897
+ --shadow-sm: 0 1px 4px rgba(0,0,0,0.2), 0 1px 2px rgba(0,0,0,0.12);
898
+ --shadow-md: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
899
+ --shadow-lg: 0 10px 20px rgba(0,0,0,0.19), 0 6px 6px rgba(0,0,0,0.23);
900
+ --shadow-xl: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22);
901
+ --shadow-2xl: 0 19px 38px rgba(0,0,0,0.3), 0 15px 12px rgba(0,0,0,0.22);
902
+ --shadow-inner: inset 0 1px 2px rgba(0,0,0,0.12);
903
+ --elevation-dropdown: 1000;
904
+ --elevation-popover: 1100;
905
+ --elevation-modal: 1200;
906
+ --elevation-toast: 1300;
907
+ --elevation-tooltip: 1400;
908
+ --motion-durationFast: 120ms;
909
+ --motion-durationNormal: 200ms;
910
+ --motion-durationSlow: 320ms;
911
+ --motion-easeStandard: cubic-bezier(0.4,0,0.2,1);
912
+ --motion-easeEmphasized: cubic-bezier(0.0,0,0.2,1);
913
+ --motion-durationInstant: 0ms;
914
+ --border-widthThin: 1px;
915
+ --border-widthMedium: 1.5px;
916
+ --border-widthThick: 2px;
917
+ --border-style: solid;
918
+ --effects-backdropBlur: 0px;
919
+ }
920
+
921
+ /* Skeuomorphism — Realistic depth — soft embossed surfaces mimicking physical material.
922
+ Generated from src/tokens/themes/skeuomorphism.ts — do not hand-edit. */
923
+ [data-theme="skeuomorphism"] {
924
+ --color-neutral-0: #ffffff;
925
+ --color-neutral-50: #f9fafb;
926
+ --color-neutral-100: #f3f4f6;
927
+ --color-neutral-200: #e5e7eb;
928
+ --color-neutral-300: #d1d5db;
929
+ --color-neutral-400: #9ca3af;
930
+ --color-neutral-500: #6b7280;
931
+ --color-neutral-600: #4b5563;
932
+ --color-neutral-700: #374151;
933
+ --color-neutral-800: #1f2937;
934
+ --color-neutral-900: #111827;
935
+ --color-neutral-950: #030712;
936
+ --color-success-light: #d1fae5;
937
+ --color-success-subtle: #a7f3d0;
938
+ --color-success-base: #10b981;
939
+ --color-success-dark: #059669;
940
+ --color-success-deeper: #064e3b;
941
+ --color-danger-light: #fee2e2;
942
+ --color-danger-subtle: #fecaca;
943
+ --color-danger-base: #ef4444;
944
+ --color-danger-dark: #dc2626;
945
+ --color-danger-deeper: #7f1d1d;
946
+ --color-warning-light: #fef3c7;
947
+ --color-warning-subtle: #fde68a;
948
+ --color-warning-base: #f59e0b;
949
+ --color-warning-dark: #d97706;
950
+ --color-warning-deeper: #78350f;
951
+ --color-info-light: #dbeafe;
952
+ --color-info-subtle: #bfdbfe;
953
+ --color-info-base: #3b82f6;
954
+ --color-info-dark: #2563eb;
955
+ --color-info-deeper: #1e3a5f;
956
+ --color-background: #e8e4da;
957
+ --color-surface: #f0ece2;
958
+ --color-surfaceRaised: #f7f4ec;
959
+ --color-border: #c9c2b0;
960
+ --color-borderFocus: #9ca3af;
961
+ --color-text: #3a3226;
962
+ --color-textMuted: #6b7280;
963
+ --color-textInverse: #ffffff;
964
+ --radius-sm: 8px;
965
+ --radius-md: 12px;
966
+ --radius-lg: 18px;
967
+ --radius-xl: 24px;
968
+ --radius-2xl: 32px;
969
+ --radius-full: 9999px;
970
+ --spacing-xs: 4px;
971
+ --spacing-sm: 8px;
972
+ --spacing-md: 12px;
973
+ --spacing-lg: 16px;
974
+ --spacing-xl: 24px;
975
+ --spacing-2xl: 32px;
976
+ --typography-fontSans: 'Inter', system-ui, sans-serif;
977
+ --typography-fontMono: 'JetBrains Mono', monospace;
978
+ --typography-sizeXs: 12px;
979
+ --typography-sizeSm: 14px;
980
+ --typography-sizeMd: 16px;
981
+ --typography-sizeLg: 18px;
982
+ --typography-sizeXl: 22px;
983
+ --typography-weightNormal: 400;
984
+ --typography-weightMedium: 500;
985
+ --typography-weightBold: 700;
986
+ --typography-lineHeightTight: 1.2;
987
+ --typography-lineHeightNormal: 1.5;
988
+ --shadow-xs: inset 0 1px 1px rgba(255,255,255,0.8), 0 1px 3px rgba(58,50,38,0.25);
989
+ --shadow-sm: inset 0 1px 1px rgba(255,255,255,0.8), 0 2px 6px rgba(58,50,38,0.28);
990
+ --shadow-md: inset 0 1px 1px rgba(255,255,255,0.8), 0 4px 10px rgba(58,50,38,0.3);
991
+ --shadow-lg: inset 0 1px 1px rgba(255,255,255,0.8), 0 8px 18px rgba(58,50,38,0.32);
992
+ --shadow-xl: inset 0 1px 1px rgba(255,255,255,0.8), 0 14px 28px rgba(58,50,38,0.35);
993
+ --shadow-2xl: inset 0 1px 1px rgba(255,255,255,0.8), 0 20px 40px rgba(58,50,38,0.38);
994
+ --shadow-inner: inset 0 2px 4px rgba(58,50,38,0.3);
995
+ --elevation-dropdown: 1000;
996
+ --elevation-popover: 1100;
997
+ --elevation-modal: 1200;
998
+ --elevation-toast: 1300;
999
+ --elevation-tooltip: 1400;
1000
+ --motion-durationFast: 120ms;
1001
+ --motion-durationNormal: 220ms;
1002
+ --motion-durationSlow: 320ms;
1003
+ --motion-easeStandard: cubic-bezier(0.34,1.56,0.64,1);
1004
+ --motion-easeEmphasized: cubic-bezier(0.2, 0, 0, 1);
1005
+ --motion-durationInstant: 0ms;
1006
+ --border-widthThin: 1px;
1007
+ --border-widthMedium: 1.5px;
1008
+ --border-widthThick: 2px;
1009
+ --border-style: solid;
1010
+ --effects-backdropBlur: 0px;
1011
+ }
1012
+
1013
+ /* Accent: Indigo
1014
+ Generated from src/tokens/accents/indigo.ts — do not hand-edit. */
1015
+ [data-accent="indigo"] {
1016
+ --color-brand-50: #f0f4ff;
1017
+ --color-brand-100: #e0e8ff;
1018
+ --color-brand-200: #c7d5fe;
1019
+ --color-brand-300: #a5b4fc;
1020
+ --color-brand-400: #818cf8;
1021
+ --color-brand-500: #6366f1;
1022
+ --color-brand-600: #4f46e5;
1023
+ --color-brand-700: #4338ca;
1024
+ --color-brand-800: #3730a3;
1025
+ --color-brand-900: #312e81;
1026
+ --color-brand-onAccent: #000000;
1027
+ }
1028
+
1029
+ /* Accent: Violet
1030
+ Generated from src/tokens/accents/violet.ts — do not hand-edit. */
1031
+ [data-accent="violet"] {
1032
+ --color-brand-50: #faf5ff;
1033
+ --color-brand-100: #f3e8ff;
1034
+ --color-brand-200: #e9d5ff;
1035
+ --color-brand-300: #d8b4fe;
1036
+ --color-brand-400: #c084fc;
1037
+ --color-brand-500: #a855f7;
1038
+ --color-brand-600: #9333ea;
1039
+ --color-brand-700: #7e22ce;
1040
+ --color-brand-800: #6b21a8;
1041
+ --color-brand-900: #581c87;
1042
+ --color-brand-onAccent: #000000;
1043
+ }
1044
+
1045
+ /* Accent: Teal
1046
+ Generated from src/tokens/accents/teal.ts — do not hand-edit. */
1047
+ [data-accent="teal"] {
1048
+ --color-brand-50: #f0fdfa;
1049
+ --color-brand-100: #ccfbf1;
1050
+ --color-brand-200: #99f6e4;
1051
+ --color-brand-300: #5eead4;
1052
+ --color-brand-400: #2dd4bf;
1053
+ --color-brand-500: #14b8a6;
1054
+ --color-brand-600: #0d9488;
1055
+ --color-brand-700: #0f766e;
1056
+ --color-brand-800: #115e59;
1057
+ --color-brand-900: #134e4a;
1058
+ --color-brand-onAccent: #000000;
1059
+ }
1060
+
1061
+ /* Accent: Rose
1062
+ Generated from src/tokens/accents/rose.ts — do not hand-edit. */
1063
+ [data-accent="rose"] {
1064
+ --color-brand-50: #fff1f2;
1065
+ --color-brand-100: #ffe4e6;
1066
+ --color-brand-200: #fecdd3;
1067
+ --color-brand-300: #fda4af;
1068
+ --color-brand-400: #fb7185;
1069
+ --color-brand-500: #f43f5e;
1070
+ --color-brand-600: #e11d48;
1071
+ --color-brand-700: #be123c;
1072
+ --color-brand-800: #9f1239;
1073
+ --color-brand-900: #881337;
1074
+ --color-brand-onAccent: #000000;
1075
+ }
1076
+
1077
+ /* Accent: Amber
1078
+ Generated from src/tokens/accents/amber.ts — do not hand-edit. */
1079
+ [data-accent="amber"] {
1080
+ --color-brand-50: #fffbeb;
1081
+ --color-brand-100: #fef3c7;
1082
+ --color-brand-200: #fde68a;
1083
+ --color-brand-300: #fcd34d;
1084
+ --color-brand-400: #fbbf24;
1085
+ --color-brand-500: #f59e0b;
1086
+ --color-brand-600: #d97706;
1087
+ --color-brand-700: #b45309;
1088
+ --color-brand-800: #92400e;
1089
+ --color-brand-900: #78350f;
1090
+ --color-brand-onAccent: #000000;
1091
+ }
1092
+
1093
+ /* Accent: Emerald
1094
+ Generated from src/tokens/accents/emerald.ts — do not hand-edit. */
1095
+ [data-accent="emerald"] {
1096
+ --color-brand-50: #ecfdf5;
1097
+ --color-brand-100: #d1fae5;
1098
+ --color-brand-200: #a7f3d0;
1099
+ --color-brand-300: #6ee7b7;
1100
+ --color-brand-400: #34d399;
1101
+ --color-brand-500: #10b981;
1102
+ --color-brand-600: #059669;
1103
+ --color-brand-700: #047857;
1104
+ --color-brand-800: #065f46;
1105
+ --color-brand-900: #064e3b;
1106
+ --color-brand-onAccent: #000000;
1107
+ }
1108
+
1109
+ /* Accent: Copper
1110
+ Generated from src/tokens/accents/copper.ts — do not hand-edit. */
1111
+ [data-accent="copper"] {
1112
+ --color-brand-50: #fdf6ec;
1113
+ --color-brand-100: #faebd2;
1114
+ --color-brand-200: #f3d3a0;
1115
+ --color-brand-300: #e9b56b;
1116
+ --color-brand-400: #d99a45;
1117
+ --color-brand-500: #b9752c;
1118
+ --color-brand-600: #9c5d24;
1119
+ --color-brand-700: #7d4a1f;
1120
+ --color-brand-800: #623a1c;
1121
+ --color-brand-900: #4e2f19;
1122
+ --color-brand-onAccent: #000000;
1123
+ }
1124
+
1125
+ /* Accent: Graphite
1126
+ Generated from src/tokens/accents/graphite.ts — do not hand-edit. */
1127
+ [data-accent="graphite"] {
1128
+ --color-brand-50: #fafafa;
1129
+ --color-brand-100: #f0f0f0;
1130
+ --color-brand-200: #e0e0e0;
1131
+ --color-brand-300: #c7c7c7;
1132
+ --color-brand-400: #a3a3a3;
1133
+ --color-brand-500: #525252;
1134
+ --color-brand-600: #404040;
1135
+ --color-brand-700: #262626;
1136
+ --color-brand-800: #171717;
1137
+ --color-brand-900: #0a0a0a;
1138
+ --color-brand-onAccent: #ffffff;
1139
+ }
1140
+
1141
+ /* Accent: Magenta
1142
+ Generated from src/tokens/accents/magenta.ts — do not hand-edit. */
1143
+ [data-accent="magenta"] {
1144
+ --color-brand-50: #ffe0fb;
1145
+ --color-brand-100: #ffb3f5;
1146
+ --color-brand-200: #ff80ee;
1147
+ --color-brand-300: #ff4de6;
1148
+ --color-brand-400: #ff26e0;
1149
+ --color-brand-500: #ff00d9;
1150
+ --color-brand-600: #e600c4;
1151
+ --color-brand-700: #cc00af;
1152
+ --color-brand-800: #b3009a;
1153
+ --color-brand-900: #800070;
1154
+ --color-brand-onAccent: #000000;
1155
+ }