@usevyre/ai-context 0.2.0 → 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,1388 @@
1
+ {
2
+ "$schema": "https://usevyre.com/schemas/ai-tokens-v1.json",
3
+ "version": "0.1.2",
4
+ "generatedAt": "2026-05-08T09:57:54.742Z",
5
+ "description": "useVyre design tokens — machine-readable reference for AI agents. Use semantic color tokens; never use primitive tokens directly in components.",
6
+ "naming": {
7
+ "convention": "--vyre-[category]-[subcategory]-[variant]",
8
+ "cssPrefix": "--vyre-",
9
+ "themeAttribute": "data-theme",
10
+ "themeValues": [
11
+ "light",
12
+ "dark"
13
+ ],
14
+ "themeDefault": "light"
15
+ },
16
+ "rules": [
17
+ "NEVER use primitive tokens (--vyre-color-primitive-*) in components — use semantic tokens instead.",
18
+ "Semantic tokens adapt automatically to light/dark theme via [data-theme] attribute on <html>.",
19
+ "For interactive hover states, use the -hover suffix variant of the token.",
20
+ "For low-opacity backgrounds (badges, highlights), use -subtle suffix tokens.",
21
+ "Text hierarchy: text-primary > text-secondary > text-muted > text-disabled.",
22
+ "For text on accent/colored backgrounds, use text-inverse or accent-foreground.",
23
+ "Import CSS: @import \"@usevyre/tokens/css\". Import JS: import { tokens } from \"@usevyre/tokens\".",
24
+ "Use cssVar() helper to reference tokens in JS: cssVar('color-semantic-accent') → var(--vyre-color-semantic-accent)."
25
+ ],
26
+ "categories": {
27
+ "color": {
28
+ "description": "Color tokens. Use semantic tokens in all components. Primitive tokens are raw palette values — internal use only.",
29
+ "primitive": {
30
+ "description": "Raw color palette. DO NOT USE DIRECTLY in components — use semantic tokens.",
31
+ "note": "Reference: @usevyre/tokens/json → color.primitive"
32
+ },
33
+ "semantic": [
34
+ {
35
+ "name": "color.semantic.background",
36
+ "cssVar": "--vyre-color-semantic-background",
37
+ "jsKey": "colorSemanticBackground",
38
+ "category": "color",
39
+ "subcategory": "semantic",
40
+ "values": {
41
+ "light": "#ffffff",
42
+ "dark": "#09090b"
43
+ },
44
+ "aliases": {
45
+ "light": "color.primitive.neutral.0",
46
+ "dark": "color.primitive.neutral.950"
47
+ },
48
+ "description": "Page/app background. Deepest layer.",
49
+ "usage": [
50
+ "Page/app root background",
51
+ "Layout wrapper background"
52
+ ],
53
+ "relatedTokens": [
54
+ "color.semantic.surface"
55
+ ],
56
+ "doNotUseDirectly": false
57
+ },
58
+ {
59
+ "name": "color.semantic.surface",
60
+ "cssVar": "--vyre-color-semantic-surface",
61
+ "jsKey": "colorSemanticSurface",
62
+ "category": "color",
63
+ "subcategory": "semantic",
64
+ "values": {
65
+ "light": "#fafafa",
66
+ "dark": "#18181b"
67
+ },
68
+ "aliases": {
69
+ "light": "color.primitive.neutral.50",
70
+ "dark": "color.primitive.neutral.900"
71
+ },
72
+ "description": "Cards, panels, sidebars.",
73
+ "usage": [
74
+ "Card background",
75
+ "Panel background",
76
+ "Sidebar background"
77
+ ],
78
+ "relatedTokens": [
79
+ "color.semantic.background",
80
+ "color.semantic.surface-raised"
81
+ ],
82
+ "doNotUseDirectly": false
83
+ },
84
+ {
85
+ "name": "color.semantic.surface-raised",
86
+ "cssVar": "--vyre-color-semantic-surface-raised",
87
+ "jsKey": "colorSemanticSurfaceRaised",
88
+ "category": "color",
89
+ "subcategory": "semantic",
90
+ "values": {
91
+ "light": "#f4f4f5",
92
+ "dark": "#27272a"
93
+ },
94
+ "aliases": {
95
+ "light": "color.primitive.neutral.100",
96
+ "dark": "color.primitive.neutral.800"
97
+ },
98
+ "description": "Dropdowns, popovers, elevated cards.",
99
+ "usage": [
100
+ "Dropdown background",
101
+ "Popover background",
102
+ "Elevated card background"
103
+ ],
104
+ "relatedTokens": [
105
+ "color.semantic.surface",
106
+ "color.semantic.surface-overlay"
107
+ ],
108
+ "doNotUseDirectly": false
109
+ },
110
+ {
111
+ "name": "color.semantic.surface-overlay",
112
+ "cssVar": "--vyre-color-semantic-surface-overlay",
113
+ "jsKey": "colorSemanticSurfaceOverlay",
114
+ "category": "color",
115
+ "subcategory": "semantic",
116
+ "values": {
117
+ "light": "#ffffff",
118
+ "dark": "#333338"
119
+ },
120
+ "aliases": {
121
+ "light": "color.primitive.neutral.0",
122
+ "dark": "color.primitive.neutral.750"
123
+ },
124
+ "description": "Modals, tooltips, highest elevation.",
125
+ "usage": [
126
+ "Modal background",
127
+ "Tooltip background",
128
+ "Highest-elevation overlay"
129
+ ],
130
+ "relatedTokens": [
131
+ "color.semantic.surface-raised"
132
+ ],
133
+ "doNotUseDirectly": false
134
+ },
135
+ {
136
+ "name": "color.semantic.border",
137
+ "cssVar": "--vyre-color-semantic-border",
138
+ "jsKey": "colorSemanticBorder",
139
+ "category": "color",
140
+ "subcategory": "semantic",
141
+ "values": {
142
+ "light": "#e4e4e7",
143
+ "dark": "#3f3f46"
144
+ },
145
+ "aliases": {
146
+ "light": "color.primitive.neutral.200",
147
+ "dark": "color.primitive.neutral.700"
148
+ },
149
+ "description": "Default border for cards, inputs, dividers.",
150
+ "usage": [
151
+ "Card border",
152
+ "Input border",
153
+ "Divider/Separator"
154
+ ],
155
+ "relatedTokens": [
156
+ "color.semantic.border-subtle",
157
+ "color.semantic.border-strong"
158
+ ],
159
+ "doNotUseDirectly": false
160
+ },
161
+ {
162
+ "name": "color.semantic.border-subtle",
163
+ "cssVar": "--vyre-color-semantic-border-subtle",
164
+ "jsKey": "colorSemanticBorderSubtle",
165
+ "category": "color",
166
+ "subcategory": "semantic",
167
+ "values": {
168
+ "light": "#ebebec",
169
+ "dark": "#27272a"
170
+ },
171
+ "aliases": {
172
+ "light": "color.primitive.neutral.150",
173
+ "dark": "color.primitive.neutral.800"
174
+ },
175
+ "description": "Very low contrast border. Section dividers.",
176
+ "usage": [
177
+ "Section divider",
178
+ "Low-contrast rule between rows"
179
+ ],
180
+ "relatedTokens": [
181
+ "color.semantic.border"
182
+ ],
183
+ "doNotUseDirectly": false
184
+ },
185
+ {
186
+ "name": "color.semantic.border-strong",
187
+ "cssVar": "--vyre-color-semantic-border-strong",
188
+ "jsKey": "colorSemanticBorderStrong",
189
+ "category": "color",
190
+ "subcategory": "semantic",
191
+ "values": {
192
+ "light": "#a1a1aa",
193
+ "dark": "#71717a"
194
+ },
195
+ "aliases": {
196
+ "light": "color.primitive.neutral.400",
197
+ "dark": "color.primitive.neutral.500"
198
+ },
199
+ "description": "Focused inputs, selected states.",
200
+ "usage": [
201
+ "Input focus ring",
202
+ "Selected item border",
203
+ "Active tab underline"
204
+ ],
205
+ "relatedTokens": [
206
+ "color.semantic.border"
207
+ ],
208
+ "doNotUseDirectly": false
209
+ },
210
+ {
211
+ "name": "color.semantic.text-primary",
212
+ "cssVar": "--vyre-color-semantic-text-primary",
213
+ "jsKey": "colorSemanticTextPrimary",
214
+ "category": "color",
215
+ "subcategory": "semantic",
216
+ "values": {
217
+ "light": "#09090b",
218
+ "dark": "#fafafa"
219
+ },
220
+ "aliases": {
221
+ "light": "color.primitive.neutral.950",
222
+ "dark": "color.primitive.neutral.50"
223
+ },
224
+ "description": "Headings, body text, primary content.",
225
+ "usage": [
226
+ "Heading text",
227
+ "Body copy",
228
+ "Button label (on neutral bg)"
229
+ ],
230
+ "relatedTokens": [
231
+ "color.semantic.text-secondary",
232
+ "color.semantic.text-muted"
233
+ ],
234
+ "doNotUseDirectly": false
235
+ },
236
+ {
237
+ "name": "color.semantic.text-secondary",
238
+ "cssVar": "--vyre-color-semantic-text-secondary",
239
+ "jsKey": "colorSemanticTextSecondary",
240
+ "category": "color",
241
+ "subcategory": "semantic",
242
+ "values": {
243
+ "light": "#52525b",
244
+ "dark": "#d1d1d6"
245
+ },
246
+ "aliases": {
247
+ "light": "color.primitive.neutral.600",
248
+ "dark": "color.primitive.neutral.300"
249
+ },
250
+ "description": "Subtitles, descriptions, supporting text.",
251
+ "usage": [
252
+ "Subtitle",
253
+ "Description text",
254
+ "Supporting label"
255
+ ],
256
+ "relatedTokens": [
257
+ "color.semantic.text-primary",
258
+ "color.semantic.text-muted"
259
+ ],
260
+ "doNotUseDirectly": false
261
+ },
262
+ {
263
+ "name": "color.semantic.text-muted",
264
+ "cssVar": "--vyre-color-semantic-text-muted",
265
+ "jsKey": "colorSemanticTextMuted",
266
+ "category": "color",
267
+ "subcategory": "semantic",
268
+ "values": {
269
+ "light": "#a1a1aa",
270
+ "dark": "#71717a"
271
+ },
272
+ "aliases": {
273
+ "light": "color.primitive.neutral.400",
274
+ "dark": "color.primitive.neutral.500"
275
+ },
276
+ "description": "Placeholders, timestamps, helper text.",
277
+ "usage": [
278
+ "Placeholder text",
279
+ "Timestamp",
280
+ "Helper hint",
281
+ "Caption"
282
+ ],
283
+ "relatedTokens": [
284
+ "color.semantic.text-secondary",
285
+ "color.semantic.text-disabled"
286
+ ],
287
+ "doNotUseDirectly": false
288
+ },
289
+ {
290
+ "name": "color.semantic.text-disabled",
291
+ "cssVar": "--vyre-color-semantic-text-disabled",
292
+ "jsKey": "colorSemanticTextDisabled",
293
+ "category": "color",
294
+ "subcategory": "semantic",
295
+ "values": {
296
+ "light": "#d1d1d6",
297
+ "dark": "#52525b"
298
+ },
299
+ "aliases": {
300
+ "light": "color.primitive.neutral.300",
301
+ "dark": "color.primitive.neutral.600"
302
+ },
303
+ "description": "Disabled state text.",
304
+ "usage": [
305
+ "Disabled input text",
306
+ "Greyed-out label"
307
+ ],
308
+ "relatedTokens": [
309
+ "color.semantic.text-muted"
310
+ ],
311
+ "doNotUseDirectly": false
312
+ },
313
+ {
314
+ "name": "color.semantic.text-inverse",
315
+ "cssVar": "--vyre-color-semantic-text-inverse",
316
+ "jsKey": "colorSemanticTextInverse",
317
+ "category": "color",
318
+ "subcategory": "semantic",
319
+ "values": {
320
+ "light": "#ffffff",
321
+ "dark": "#09090b"
322
+ },
323
+ "aliases": {
324
+ "light": "color.primitive.neutral.0",
325
+ "dark": "color.primitive.neutral.950"
326
+ },
327
+ "description": "Text on dark/accent backgrounds.",
328
+ "usage": [
329
+ "Text on dark/accent background",
330
+ "Text inside accent-colored badge"
331
+ ],
332
+ "relatedTokens": [
333
+ "color.semantic.accent-foreground"
334
+ ],
335
+ "doNotUseDirectly": false
336
+ },
337
+ {
338
+ "name": "color.semantic.accent",
339
+ "cssVar": "--vyre-color-semantic-accent",
340
+ "jsKey": "colorSemanticAccent",
341
+ "category": "color",
342
+ "subcategory": "semantic",
343
+ "values": {
344
+ "light": "#7c3aed",
345
+ "dark": "#a78bfa"
346
+ },
347
+ "aliases": {
348
+ "light": "color.primitive.violet.600",
349
+ "dark": "color.primitive.violet.400"
350
+ },
351
+ "description": "Primary brand accent. CTAs, highlights, focus rings.",
352
+ "usage": [
353
+ "Button primary background",
354
+ "Link active state",
355
+ "Focus ring",
356
+ "Badge accent variant",
357
+ "Active nav indicator"
358
+ ],
359
+ "relatedTokens": [
360
+ "color.semantic.accent-hover",
361
+ "color.semantic.accent-foreground",
362
+ "color.semantic.accent-subtle",
363
+ "color.semantic.accent-subtle-border"
364
+ ],
365
+ "doNotUseDirectly": false
366
+ },
367
+ {
368
+ "name": "color.semantic.accent-hover",
369
+ "cssVar": "--vyre-color-semantic-accent-hover",
370
+ "jsKey": "colorSemanticAccentHover",
371
+ "category": "color",
372
+ "subcategory": "semantic",
373
+ "values": {
374
+ "light": "#6d28d9",
375
+ "dark": "#c4b5fd"
376
+ },
377
+ "aliases": {
378
+ "light": "color.primitive.violet.700",
379
+ "dark": "color.primitive.violet.300"
380
+ },
381
+ "description": "Hover state for accent elements.",
382
+ "usage": [
383
+ "Button primary hover state"
384
+ ],
385
+ "relatedTokens": [
386
+ "color.semantic.accent"
387
+ ],
388
+ "doNotUseDirectly": false
389
+ },
390
+ {
391
+ "name": "color.semantic.accent-foreground",
392
+ "cssVar": "--vyre-color-semantic-accent-foreground",
393
+ "jsKey": "colorSemanticAccentForeground",
394
+ "category": "color",
395
+ "subcategory": "semantic",
396
+ "values": {
397
+ "light": "#ffffff",
398
+ "dark": "#09090b"
399
+ },
400
+ "aliases": {
401
+ "light": "color.primitive.neutral.0",
402
+ "dark": "color.primitive.neutral.950"
403
+ },
404
+ "description": "Text color on accent background.",
405
+ "usage": [
406
+ "Text/icon on accent-colored background"
407
+ ],
408
+ "relatedTokens": [
409
+ "color.semantic.accent",
410
+ "color.semantic.accent-subtle"
411
+ ],
412
+ "doNotUseDirectly": false
413
+ },
414
+ {
415
+ "name": "color.semantic.accent-subtle",
416
+ "cssVar": "--vyre-color-semantic-accent-subtle",
417
+ "jsKey": "colorSemanticAccentSubtle",
418
+ "category": "color",
419
+ "subcategory": "semantic",
420
+ "values": {
421
+ "light": "#f5f3ff",
422
+ "dark": "rgba(139, 92, 246, 0.12)"
423
+ },
424
+ "aliases": {
425
+ "light": "color.primitive.violet.50",
426
+ "dark": null
427
+ },
428
+ "description": "Low-opacity accent for badge backgrounds, highlights.",
429
+ "usage": [
430
+ "Accent badge background",
431
+ "Highlighted row background",
432
+ "Chip background"
433
+ ],
434
+ "relatedTokens": [
435
+ "color.semantic.accent",
436
+ "color.semantic.accent-subtle-border"
437
+ ],
438
+ "doNotUseDirectly": false
439
+ },
440
+ {
441
+ "name": "color.semantic.accent-subtle-border",
442
+ "cssVar": "--vyre-color-semantic-accent-subtle-border",
443
+ "jsKey": "colorSemanticAccentSubtleBorder",
444
+ "category": "color",
445
+ "subcategory": "semantic",
446
+ "values": {
447
+ "light": "#ddd6fe",
448
+ "dark": "rgba(139, 92, 246, 0.25)"
449
+ },
450
+ "aliases": {
451
+ "light": "color.primitive.violet.200",
452
+ "dark": null
453
+ },
454
+ "description": "Border for accent subtle containers.",
455
+ "usage": [
456
+ "Border of accent-subtle containers"
457
+ ],
458
+ "relatedTokens": [
459
+ "color.semantic.accent-subtle"
460
+ ],
461
+ "doNotUseDirectly": false
462
+ },
463
+ {
464
+ "name": "color.semantic.teal",
465
+ "cssVar": "--vyre-color-semantic-teal",
466
+ "jsKey": "colorSemanticTeal",
467
+ "category": "color",
468
+ "subcategory": "semantic",
469
+ "values": {
470
+ "light": "#14b8a6",
471
+ "dark": "#2dd4bf"
472
+ },
473
+ "aliases": {
474
+ "light": "color.primitive.teal.500",
475
+ "dark": "color.primitive.teal.400"
476
+ },
477
+ "description": "Secondary accent. Code, AI-context indicators.",
478
+ "usage": [
479
+ "Button teal variant",
480
+ "Code block accent",
481
+ "AI-context indicator",
482
+ "Badge teal variant"
483
+ ],
484
+ "relatedTokens": [
485
+ "color.semantic.teal-hover",
486
+ "color.semantic.teal-subtle"
487
+ ],
488
+ "doNotUseDirectly": false
489
+ },
490
+ {
491
+ "name": "color.semantic.teal-hover",
492
+ "cssVar": "--vyre-color-semantic-teal-hover",
493
+ "jsKey": "colorSemanticTealHover",
494
+ "category": "color",
495
+ "subcategory": "semantic",
496
+ "values": {
497
+ "light": "#0d9488",
498
+ "dark": "#5eead4"
499
+ },
500
+ "aliases": {
501
+ "light": "color.primitive.teal.600",
502
+ "dark": "color.primitive.teal.300"
503
+ },
504
+ "description": "Hover state for teal elements.",
505
+ "usage": [
506
+ "Teal button hover state"
507
+ ],
508
+ "relatedTokens": [
509
+ "color.semantic.teal"
510
+ ],
511
+ "doNotUseDirectly": false
512
+ },
513
+ {
514
+ "name": "color.semantic.teal-subtle",
515
+ "cssVar": "--vyre-color-semantic-teal-subtle",
516
+ "jsKey": "colorSemanticTealSubtle",
517
+ "category": "color",
518
+ "subcategory": "semantic",
519
+ "values": {
520
+ "light": "rgba(20, 184, 166, 0.08)",
521
+ "dark": "rgba(45, 212, 191, 0.10)"
522
+ },
523
+ "aliases": {
524
+ "light": null,
525
+ "dark": null
526
+ },
527
+ "description": "Low-opacity teal for badge backgrounds.",
528
+ "usage": [
529
+ "Teal badge background"
530
+ ],
531
+ "relatedTokens": [
532
+ "color.semantic.teal"
533
+ ],
534
+ "doNotUseDirectly": false
535
+ },
536
+ {
537
+ "name": "color.semantic.success",
538
+ "cssVar": "--vyre-color-semantic-success",
539
+ "jsKey": "colorSemanticSuccess",
540
+ "category": "color",
541
+ "subcategory": "semantic",
542
+ "values": {
543
+ "light": "#16a34a",
544
+ "dark": "#4ade80"
545
+ },
546
+ "aliases": {
547
+ "light": "color.primitive.green.600",
548
+ "dark": "color.primitive.green.400"
549
+ },
550
+ "description": "Success states, confirmations.",
551
+ "usage": [
552
+ "Success alert icon/text",
553
+ "Toast success border-left",
554
+ "Badge success variant"
555
+ ],
556
+ "relatedTokens": [
557
+ "color.semantic.success-subtle",
558
+ "color.semantic.success-subtle-border"
559
+ ],
560
+ "doNotUseDirectly": false
561
+ },
562
+ {
563
+ "name": "color.semantic.success-subtle",
564
+ "cssVar": "--vyre-color-semantic-success-subtle",
565
+ "jsKey": "colorSemanticSuccessSubtle",
566
+ "category": "color",
567
+ "subcategory": "semantic",
568
+ "values": {
569
+ "light": "#f0fdf4",
570
+ "dark": "rgba(74, 222, 128, 0.10)"
571
+ },
572
+ "aliases": {
573
+ "light": "color.primitive.green.50",
574
+ "dark": null
575
+ },
576
+ "description": "Success badge background.",
577
+ "usage": [
578
+ "Success alert background",
579
+ "Success badge background"
580
+ ],
581
+ "relatedTokens": [
582
+ "color.semantic.success",
583
+ "color.semantic.success-subtle-border"
584
+ ],
585
+ "doNotUseDirectly": false
586
+ },
587
+ {
588
+ "name": "color.semantic.success-subtle-border",
589
+ "cssVar": "--vyre-color-semantic-success-subtle-border",
590
+ "jsKey": "colorSemanticSuccessSubtleBorder",
591
+ "category": "color",
592
+ "subcategory": "semantic",
593
+ "values": {
594
+ "light": "#dcfce7",
595
+ "dark": "rgba(74, 222, 128, 0.20)"
596
+ },
597
+ "aliases": {
598
+ "light": "color.primitive.green.100",
599
+ "dark": null
600
+ },
601
+ "description": "Border for success subtle containers.",
602
+ "usage": [
603
+ "Success alert border"
604
+ ],
605
+ "relatedTokens": [
606
+ "color.semantic.success",
607
+ "color.semantic.success-subtle"
608
+ ],
609
+ "doNotUseDirectly": false
610
+ },
611
+ {
612
+ "name": "color.semantic.warning",
613
+ "cssVar": "--vyre-color-semantic-warning",
614
+ "jsKey": "colorSemanticWarning",
615
+ "category": "color",
616
+ "subcategory": "semantic",
617
+ "values": {
618
+ "light": "#f59e0b",
619
+ "dark": "#fbbf24"
620
+ },
621
+ "aliases": {
622
+ "light": "color.primitive.amber.500",
623
+ "dark": "color.primitive.amber.400"
624
+ },
625
+ "description": "Warning states, beta indicators.",
626
+ "usage": [
627
+ "Warning alert icon/text",
628
+ "Toast warning border-left",
629
+ "Badge warning variant",
630
+ "Beta indicator"
631
+ ],
632
+ "relatedTokens": [
633
+ "color.semantic.warning-subtle",
634
+ "color.semantic.warning-subtle-border"
635
+ ],
636
+ "doNotUseDirectly": false
637
+ },
638
+ {
639
+ "name": "color.semantic.warning-subtle",
640
+ "cssVar": "--vyre-color-semantic-warning-subtle",
641
+ "jsKey": "colorSemanticWarningSubtle",
642
+ "category": "color",
643
+ "subcategory": "semantic",
644
+ "values": {
645
+ "light": "#fffbeb",
646
+ "dark": "rgba(251, 191, 36, 0.10)"
647
+ },
648
+ "aliases": {
649
+ "light": "color.primitive.amber.50",
650
+ "dark": null
651
+ },
652
+ "description": "Warning badge background.",
653
+ "usage": [
654
+ "Warning alert background",
655
+ "Warning badge background"
656
+ ],
657
+ "relatedTokens": [
658
+ "color.semantic.warning",
659
+ "color.semantic.warning-subtle-border"
660
+ ],
661
+ "doNotUseDirectly": false
662
+ },
663
+ {
664
+ "name": "color.semantic.warning-subtle-border",
665
+ "cssVar": "--vyre-color-semantic-warning-subtle-border",
666
+ "jsKey": "colorSemanticWarningSubtleBorder",
667
+ "category": "color",
668
+ "subcategory": "semantic",
669
+ "values": {
670
+ "light": "#fef3c7",
671
+ "dark": "rgba(251, 191, 36, 0.20)"
672
+ },
673
+ "aliases": {
674
+ "light": "color.primitive.amber.100",
675
+ "dark": null
676
+ },
677
+ "description": "Border for warning subtle containers.",
678
+ "usage": [
679
+ "Warning alert border"
680
+ ],
681
+ "relatedTokens": [
682
+ "color.semantic.warning",
683
+ "color.semantic.warning-subtle"
684
+ ],
685
+ "doNotUseDirectly": false
686
+ },
687
+ {
688
+ "name": "color.semantic.danger",
689
+ "cssVar": "--vyre-color-semantic-danger",
690
+ "jsKey": "colorSemanticDanger",
691
+ "category": "color",
692
+ "subcategory": "semantic",
693
+ "values": {
694
+ "light": "#dc2626",
695
+ "dark": "#f87171"
696
+ },
697
+ "aliases": {
698
+ "light": "color.primitive.red.600",
699
+ "dark": "color.primitive.red.400"
700
+ },
701
+ "description": "Error states, destructive actions.",
702
+ "usage": [
703
+ "Button danger variant",
704
+ "Error alert icon/text",
705
+ "Toast error border-left",
706
+ "Badge danger variant",
707
+ "Destructive action text"
708
+ ],
709
+ "relatedTokens": [
710
+ "color.semantic.danger-hover",
711
+ "color.semantic.danger-subtle",
712
+ "color.semantic.danger-subtle-border"
713
+ ],
714
+ "doNotUseDirectly": false
715
+ },
716
+ {
717
+ "name": "color.semantic.danger-hover",
718
+ "cssVar": "--vyre-color-semantic-danger-hover",
719
+ "jsKey": "colorSemanticDangerHover",
720
+ "category": "color",
721
+ "subcategory": "semantic",
722
+ "values": {
723
+ "light": "#ef4444",
724
+ "dark": "#ef4444"
725
+ },
726
+ "aliases": {
727
+ "light": "color.primitive.red.500",
728
+ "dark": "color.primitive.red.500"
729
+ },
730
+ "description": "Hover state for danger elements.",
731
+ "usage": [
732
+ "Danger button hover state"
733
+ ],
734
+ "relatedTokens": [
735
+ "color.semantic.danger"
736
+ ],
737
+ "doNotUseDirectly": false
738
+ },
739
+ {
740
+ "name": "color.semantic.danger-subtle",
741
+ "cssVar": "--vyre-color-semantic-danger-subtle",
742
+ "jsKey": "colorSemanticDangerSubtle",
743
+ "category": "color",
744
+ "subcategory": "semantic",
745
+ "values": {
746
+ "light": "#fef2f2",
747
+ "dark": "rgba(248, 113, 113, 0.10)"
748
+ },
749
+ "aliases": {
750
+ "light": "color.primitive.red.50",
751
+ "dark": null
752
+ },
753
+ "description": "Error badge background.",
754
+ "usage": [
755
+ "Error alert background",
756
+ "Danger badge background"
757
+ ],
758
+ "relatedTokens": [
759
+ "color.semantic.danger",
760
+ "color.semantic.danger-subtle-border"
761
+ ],
762
+ "doNotUseDirectly": false
763
+ },
764
+ {
765
+ "name": "color.semantic.danger-subtle-border",
766
+ "cssVar": "--vyre-color-semantic-danger-subtle-border",
767
+ "jsKey": "colorSemanticDangerSubtleBorder",
768
+ "category": "color",
769
+ "subcategory": "semantic",
770
+ "values": {
771
+ "light": "#fee2e2",
772
+ "dark": "rgba(248, 113, 113, 0.20)"
773
+ },
774
+ "aliases": {
775
+ "light": "color.primitive.red.100",
776
+ "dark": null
777
+ },
778
+ "description": "Border for danger subtle containers.",
779
+ "usage": [
780
+ "Error alert border"
781
+ ],
782
+ "relatedTokens": [
783
+ "color.semantic.danger",
784
+ "color.semantic.danger-subtle"
785
+ ],
786
+ "doNotUseDirectly": false
787
+ }
788
+ ]
789
+ },
790
+ "spacing": {
791
+ "description": "4px base grid. Use for padding, margin, gap.",
792
+ "tokens": [
793
+ {
794
+ "name": "spacing.0",
795
+ "cssVar": "--vyre-spacing-0",
796
+ "jsKey": "spacing0",
797
+ "category": "spacing",
798
+ "value": "0",
799
+ "description": ""
800
+ },
801
+ {
802
+ "name": "spacing.1",
803
+ "cssVar": "--vyre-spacing-1",
804
+ "jsKey": "spacing1",
805
+ "category": "spacing",
806
+ "value": "0.25rem",
807
+ "description": "4px"
808
+ },
809
+ {
810
+ "name": "spacing.2",
811
+ "cssVar": "--vyre-spacing-2",
812
+ "jsKey": "spacing2",
813
+ "category": "spacing",
814
+ "value": "0.5rem",
815
+ "description": "8px"
816
+ },
817
+ {
818
+ "name": "spacing.3",
819
+ "cssVar": "--vyre-spacing-3",
820
+ "jsKey": "spacing3",
821
+ "category": "spacing",
822
+ "value": "0.75rem",
823
+ "description": "12px"
824
+ },
825
+ {
826
+ "name": "spacing.4",
827
+ "cssVar": "--vyre-spacing-4",
828
+ "jsKey": "spacing4",
829
+ "category": "spacing",
830
+ "value": "1rem",
831
+ "description": "16px"
832
+ },
833
+ {
834
+ "name": "spacing.5",
835
+ "cssVar": "--vyre-spacing-5",
836
+ "jsKey": "spacing5",
837
+ "category": "spacing",
838
+ "value": "1.25rem",
839
+ "description": "20px"
840
+ },
841
+ {
842
+ "name": "spacing.6",
843
+ "cssVar": "--vyre-spacing-6",
844
+ "jsKey": "spacing6",
845
+ "category": "spacing",
846
+ "value": "1.5rem",
847
+ "description": "24px"
848
+ },
849
+ {
850
+ "name": "spacing.8",
851
+ "cssVar": "--vyre-spacing-8",
852
+ "jsKey": "spacing8",
853
+ "category": "spacing",
854
+ "value": "2rem",
855
+ "description": "32px"
856
+ },
857
+ {
858
+ "name": "spacing.10",
859
+ "cssVar": "--vyre-spacing-10",
860
+ "jsKey": "spacing10",
861
+ "category": "spacing",
862
+ "value": "2.5rem",
863
+ "description": "40px"
864
+ },
865
+ {
866
+ "name": "spacing.12",
867
+ "cssVar": "--vyre-spacing-12",
868
+ "jsKey": "spacing12",
869
+ "category": "spacing",
870
+ "value": "3rem",
871
+ "description": "48px"
872
+ },
873
+ {
874
+ "name": "spacing.16",
875
+ "cssVar": "--vyre-spacing-16",
876
+ "jsKey": "spacing16",
877
+ "category": "spacing",
878
+ "value": "4rem",
879
+ "description": "64px"
880
+ },
881
+ {
882
+ "name": "spacing.20",
883
+ "cssVar": "--vyre-spacing-20",
884
+ "jsKey": "spacing20",
885
+ "category": "spacing",
886
+ "value": "5rem",
887
+ "description": "80px"
888
+ },
889
+ {
890
+ "name": "spacing.24",
891
+ "cssVar": "--vyre-spacing-24",
892
+ "jsKey": "spacing24",
893
+ "category": "spacing",
894
+ "value": "6rem",
895
+ "description": "96px"
896
+ }
897
+ ]
898
+ },
899
+ "typography": {
900
+ "description": "Font families, sizes, weights, line heights.",
901
+ "tokens": [
902
+ {
903
+ "name": "typography.font.family.display",
904
+ "cssVar": "--vyre-typography-font-family-display",
905
+ "jsKey": "typographyFontFamilyDisplay",
906
+ "category": "typography",
907
+ "subcategory": "font-family",
908
+ "value": "'Geist', 'Inter', system-ui, sans-serif",
909
+ "description": "Headlines, hero text, display type."
910
+ },
911
+ {
912
+ "name": "typography.font.family.body",
913
+ "cssVar": "--vyre-typography-font-family-body",
914
+ "jsKey": "typographyFontFamilyBody",
915
+ "category": "typography",
916
+ "subcategory": "font-family",
917
+ "value": "'Geist', 'Inter', system-ui, sans-serif",
918
+ "description": "Body copy, UI labels, all general text."
919
+ },
920
+ {
921
+ "name": "typography.font.family.mono",
922
+ "cssVar": "--vyre-typography-font-family-mono",
923
+ "jsKey": "typographyFontFamilyMono",
924
+ "category": "typography",
925
+ "subcategory": "font-family",
926
+ "value": "'Geist Mono', 'JetBrains Mono', monospace",
927
+ "description": "Code, tokens, technical labels, AI hints."
928
+ },
929
+ {
930
+ "name": "typography.font.size.2xs",
931
+ "cssVar": "--vyre-typography-font-size-2xs",
932
+ "jsKey": "typographyFontSize2xs",
933
+ "category": "typography",
934
+ "subcategory": "font-size",
935
+ "value": "0.625rem",
936
+ "description": "10px. Tiny labels only."
937
+ },
938
+ {
939
+ "name": "typography.font.size.xs",
940
+ "cssVar": "--vyre-typography-font-size-xs",
941
+ "jsKey": "typographyFontSizeXs",
942
+ "category": "typography",
943
+ "subcategory": "font-size",
944
+ "value": "0.6875rem",
945
+ "description": "11px. Badge text, captions."
946
+ },
947
+ {
948
+ "name": "typography.font.size.sm",
949
+ "cssVar": "--vyre-typography-font-size-sm",
950
+ "jsKey": "typographyFontSizeSm",
951
+ "category": "typography",
952
+ "subcategory": "font-size",
953
+ "value": "0.8125rem",
954
+ "description": "13px. Default UI text, buttons."
955
+ },
956
+ {
957
+ "name": "typography.font.size.md",
958
+ "cssVar": "--vyre-typography-font-size-md",
959
+ "jsKey": "typographyFontSizeMd",
960
+ "category": "typography",
961
+ "subcategory": "font-size",
962
+ "value": "0.9375rem",
963
+ "description": "15px. Body text."
964
+ },
965
+ {
966
+ "name": "typography.font.size.lg",
967
+ "cssVar": "--vyre-typography-font-size-lg",
968
+ "jsKey": "typographyFontSizeLg",
969
+ "category": "typography",
970
+ "subcategory": "font-size",
971
+ "value": "1.125rem",
972
+ "description": "18px. Large body, small headings."
973
+ },
974
+ {
975
+ "name": "typography.font.size.xl",
976
+ "cssVar": "--vyre-typography-font-size-xl",
977
+ "jsKey": "typographyFontSizeXl",
978
+ "category": "typography",
979
+ "subcategory": "font-size",
980
+ "value": "1.375rem",
981
+ "description": "22px. Section headings."
982
+ },
983
+ {
984
+ "name": "typography.font.size.2xl",
985
+ "cssVar": "--vyre-typography-font-size-2xl",
986
+ "jsKey": "typographyFontSize2xl",
987
+ "category": "typography",
988
+ "subcategory": "font-size",
989
+ "value": "1.75rem",
990
+ "description": "28px. Page headings."
991
+ },
992
+ {
993
+ "name": "typography.font.size.3xl",
994
+ "cssVar": "--vyre-typography-font-size-3xl",
995
+ "jsKey": "typographyFontSize3xl",
996
+ "category": "typography",
997
+ "subcategory": "font-size",
998
+ "value": "2.25rem",
999
+ "description": "36px. Large headings."
1000
+ },
1001
+ {
1002
+ "name": "typography.font.size.4xl",
1003
+ "cssVar": "--vyre-typography-font-size-4xl",
1004
+ "jsKey": "typographyFontSize4xl",
1005
+ "category": "typography",
1006
+ "subcategory": "font-size",
1007
+ "value": "3rem",
1008
+ "description": "48px. Hero headings."
1009
+ },
1010
+ {
1011
+ "name": "typography.font.size.5xl",
1012
+ "cssVar": "--vyre-typography-font-size-5xl",
1013
+ "jsKey": "typographyFontSize5xl",
1014
+ "category": "typography",
1015
+ "subcategory": "font-size",
1016
+ "value": "4rem",
1017
+ "description": "64px. Display headings."
1018
+ },
1019
+ {
1020
+ "name": "typography.font.weight.light",
1021
+ "cssVar": "--vyre-typography-font-weight-light",
1022
+ "jsKey": "typographyFontWeightLight",
1023
+ "category": "typography",
1024
+ "subcategory": "font-weight",
1025
+ "value": "300",
1026
+ "description": ""
1027
+ },
1028
+ {
1029
+ "name": "typography.font.weight.regular",
1030
+ "cssVar": "--vyre-typography-font-weight-regular",
1031
+ "jsKey": "typographyFontWeightRegular",
1032
+ "category": "typography",
1033
+ "subcategory": "font-weight",
1034
+ "value": "400",
1035
+ "description": ""
1036
+ },
1037
+ {
1038
+ "name": "typography.font.weight.medium",
1039
+ "cssVar": "--vyre-typography-font-weight-medium",
1040
+ "jsKey": "typographyFontWeightMedium",
1041
+ "category": "typography",
1042
+ "subcategory": "font-weight",
1043
+ "value": "500",
1044
+ "description": ""
1045
+ },
1046
+ {
1047
+ "name": "typography.font.weight.semibold",
1048
+ "cssVar": "--vyre-typography-font-weight-semibold",
1049
+ "jsKey": "typographyFontWeightSemibold",
1050
+ "category": "typography",
1051
+ "subcategory": "font-weight",
1052
+ "value": "600",
1053
+ "description": ""
1054
+ },
1055
+ {
1056
+ "name": "typography.font.weight.bold",
1057
+ "cssVar": "--vyre-typography-font-weight-bold",
1058
+ "jsKey": "typographyFontWeightBold",
1059
+ "category": "typography",
1060
+ "subcategory": "font-weight",
1061
+ "value": "700",
1062
+ "description": ""
1063
+ },
1064
+ {
1065
+ "name": "typography.line.height.none",
1066
+ "cssVar": "--vyre-typography-line-height-none",
1067
+ "jsKey": "typographyLineHeightNone",
1068
+ "category": "typography",
1069
+ "subcategory": "line-height",
1070
+ "value": "1",
1071
+ "description": ""
1072
+ },
1073
+ {
1074
+ "name": "typography.line.height.tight",
1075
+ "cssVar": "--vyre-typography-line-height-tight",
1076
+ "jsKey": "typographyLineHeightTight",
1077
+ "category": "typography",
1078
+ "subcategory": "line-height",
1079
+ "value": "1.2",
1080
+ "description": ""
1081
+ },
1082
+ {
1083
+ "name": "typography.line.height.snug",
1084
+ "cssVar": "--vyre-typography-line-height-snug",
1085
+ "jsKey": "typographyLineHeightSnug",
1086
+ "category": "typography",
1087
+ "subcategory": "line-height",
1088
+ "value": "1.35",
1089
+ "description": ""
1090
+ },
1091
+ {
1092
+ "name": "typography.line.height.normal",
1093
+ "cssVar": "--vyre-typography-line-height-normal",
1094
+ "jsKey": "typographyLineHeightNormal",
1095
+ "category": "typography",
1096
+ "subcategory": "line-height",
1097
+ "value": "1.5",
1098
+ "description": ""
1099
+ },
1100
+ {
1101
+ "name": "typography.line.height.relaxed",
1102
+ "cssVar": "--vyre-typography-line-height-relaxed",
1103
+ "jsKey": "typographyLineHeightRelaxed",
1104
+ "category": "typography",
1105
+ "subcategory": "line-height",
1106
+ "value": "1.7",
1107
+ "description": ""
1108
+ }
1109
+ ]
1110
+ },
1111
+ "borderRadius": {
1112
+ "description": "Corner radii. md (8px) is default for most components.",
1113
+ "tokens": [
1114
+ {
1115
+ "name": "border.radius.none",
1116
+ "cssVar": "--vyre-border-radius-none",
1117
+ "jsKey": "borderRadiusNone",
1118
+ "category": "borderRadius",
1119
+ "value": "0",
1120
+ "description": ""
1121
+ },
1122
+ {
1123
+ "name": "border.radius.sm",
1124
+ "cssVar": "--vyre-border-radius-sm",
1125
+ "jsKey": "borderRadiusSm",
1126
+ "category": "borderRadius",
1127
+ "value": "0.375rem",
1128
+ "description": "6px. Tight corners."
1129
+ },
1130
+ {
1131
+ "name": "border.radius.md",
1132
+ "cssVar": "--vyre-border-radius-md",
1133
+ "jsKey": "borderRadiusMd",
1134
+ "category": "borderRadius",
1135
+ "value": "0.5rem",
1136
+ "description": "8px. Default component radius."
1137
+ },
1138
+ {
1139
+ "name": "border.radius.lg",
1140
+ "cssVar": "--vyre-border-radius-lg",
1141
+ "jsKey": "borderRadiusLg",
1142
+ "category": "borderRadius",
1143
+ "value": "0.75rem",
1144
+ "description": "12px. Cards, panels."
1145
+ },
1146
+ {
1147
+ "name": "border.radius.xl",
1148
+ "cssVar": "--vyre-border-radius-xl",
1149
+ "jsKey": "borderRadiusXl",
1150
+ "category": "borderRadius",
1151
+ "value": "1rem",
1152
+ "description": "16px. Large cards."
1153
+ },
1154
+ {
1155
+ "name": "border.radius.2xl",
1156
+ "cssVar": "--vyre-border-radius-2xl",
1157
+ "jsKey": "borderRadius2xl",
1158
+ "category": "borderRadius",
1159
+ "value": "1.5rem",
1160
+ "description": "24px. Modals, sheets."
1161
+ },
1162
+ {
1163
+ "name": "border.radius.full",
1164
+ "cssVar": "--vyre-border-radius-full",
1165
+ "jsKey": "borderRadiusFull",
1166
+ "category": "borderRadius",
1167
+ "value": "9999px",
1168
+ "description": "Badges, pills, avatars."
1169
+ }
1170
+ ]
1171
+ },
1172
+ "shadow": {
1173
+ "description": "Elevation shadows. -dark variants for dark theme.",
1174
+ "tokens": [
1175
+ {
1176
+ "name": "shadow.sm",
1177
+ "cssVar": "--vyre-shadow-sm",
1178
+ "jsKey": "shadowSm",
1179
+ "category": "shadow",
1180
+ "value": "0 1px 2px rgba(0,0,0,0.06), 0 1px 1px rgba(0,0,0,0.04)",
1181
+ "description": ""
1182
+ },
1183
+ {
1184
+ "name": "shadow.md",
1185
+ "cssVar": "--vyre-shadow-md",
1186
+ "jsKey": "shadowMd",
1187
+ "category": "shadow",
1188
+ "value": "0 4px 6px rgba(0,0,0,0.07), 0 2px 4px rgba(0,0,0,0.06)",
1189
+ "description": ""
1190
+ },
1191
+ {
1192
+ "name": "shadow.lg",
1193
+ "cssVar": "--vyre-shadow-lg",
1194
+ "jsKey": "shadowLg",
1195
+ "category": "shadow",
1196
+ "value": "0 10px 15px rgba(0,0,0,0.08), 0 4px 6px rgba(0,0,0,0.05)",
1197
+ "description": ""
1198
+ },
1199
+ {
1200
+ "name": "shadow.xl",
1201
+ "cssVar": "--vyre-shadow-xl",
1202
+ "jsKey": "shadowXl",
1203
+ "category": "shadow",
1204
+ "value": "0 20px 25px rgba(0,0,0,0.10), 0 8px 10px rgba(0,0,0,0.06)",
1205
+ "description": ""
1206
+ },
1207
+ {
1208
+ "name": "shadow.sm.dark",
1209
+ "cssVar": "--vyre-shadow-sm-dark",
1210
+ "jsKey": "shadowSmDark",
1211
+ "category": "shadow",
1212
+ "value": "0 1px 2px rgba(0,0,0,0.4)",
1213
+ "description": ""
1214
+ },
1215
+ {
1216
+ "name": "shadow.md.dark",
1217
+ "cssVar": "--vyre-shadow-md-dark",
1218
+ "jsKey": "shadowMdDark",
1219
+ "category": "shadow",
1220
+ "value": "0 4px 12px rgba(0,0,0,0.4), 0 1px 3px rgba(0,0,0,0.3)",
1221
+ "description": ""
1222
+ },
1223
+ {
1224
+ "name": "shadow.lg.dark",
1225
+ "cssVar": "--vyre-shadow-lg-dark",
1226
+ "jsKey": "shadowLgDark",
1227
+ "category": "shadow",
1228
+ "value": "0 12px 32px rgba(0,0,0,0.5), 0 4px 8px rgba(0,0,0,0.3)",
1229
+ "description": ""
1230
+ },
1231
+ {
1232
+ "name": "shadow.xl.dark",
1233
+ "cssVar": "--vyre-shadow-xl-dark",
1234
+ "jsKey": "shadowXlDark",
1235
+ "category": "shadow",
1236
+ "value": "0 24px 64px rgba(0,0,0,0.6), 0 8px 16px rgba(0,0,0,0.3)",
1237
+ "description": ""
1238
+ },
1239
+ {
1240
+ "name": "shadow.glow.accent",
1241
+ "cssVar": "--vyre-shadow-glow-accent",
1242
+ "jsKey": "shadowGlowAccent",
1243
+ "category": "shadow",
1244
+ "value": "0 0 0 3px rgba(124, 58, 237, 0.15)",
1245
+ "description": ""
1246
+ },
1247
+ {
1248
+ "name": "shadow.glow.teal",
1249
+ "cssVar": "--vyre-shadow-glow-teal",
1250
+ "jsKey": "shadowGlowTeal",
1251
+ "category": "shadow",
1252
+ "value": "0 0 0 3px rgba(20, 184, 166, 0.15)",
1253
+ "description": ""
1254
+ }
1255
+ ]
1256
+ },
1257
+ "transition": {
1258
+ "description": "Duration and easing for animations.",
1259
+ "tokens": [
1260
+ {
1261
+ "name": "transition.duration.instant",
1262
+ "cssVar": "--vyre-transition-duration-instant",
1263
+ "jsKey": "transitionDurationInstant",
1264
+ "category": "transition",
1265
+ "subcategory": "duration",
1266
+ "value": "80ms",
1267
+ "description": ""
1268
+ },
1269
+ {
1270
+ "name": "transition.duration.fast",
1271
+ "cssVar": "--vyre-transition-duration-fast",
1272
+ "jsKey": "transitionDurationFast",
1273
+ "category": "transition",
1274
+ "subcategory": "duration",
1275
+ "value": "120ms",
1276
+ "description": ""
1277
+ },
1278
+ {
1279
+ "name": "transition.duration.normal",
1280
+ "cssVar": "--vyre-transition-duration-normal",
1281
+ "jsKey": "transitionDurationNormal",
1282
+ "category": "transition",
1283
+ "subcategory": "duration",
1284
+ "value": "200ms",
1285
+ "description": ""
1286
+ },
1287
+ {
1288
+ "name": "transition.duration.slow",
1289
+ "cssVar": "--vyre-transition-duration-slow",
1290
+ "jsKey": "transitionDurationSlow",
1291
+ "category": "transition",
1292
+ "subcategory": "duration",
1293
+ "value": "350ms",
1294
+ "description": ""
1295
+ },
1296
+ {
1297
+ "name": "transition.easing.out",
1298
+ "cssVar": "--vyre-transition-easing-out",
1299
+ "jsKey": "transitionEasingOut",
1300
+ "category": "transition",
1301
+ "subcategory": "easing",
1302
+ "value": "cubic-bezier(0.0, 0, 0.2, 1)",
1303
+ "description": ""
1304
+ },
1305
+ {
1306
+ "name": "transition.easing.in",
1307
+ "cssVar": "--vyre-transition-easing-in",
1308
+ "jsKey": "transitionEasingIn",
1309
+ "category": "transition",
1310
+ "subcategory": "easing",
1311
+ "value": "cubic-bezier(0.4, 0, 1, 1)",
1312
+ "description": ""
1313
+ },
1314
+ {
1315
+ "name": "transition.easing.inout",
1316
+ "cssVar": "--vyre-transition-easing-inout",
1317
+ "jsKey": "transitionEasingInout",
1318
+ "category": "transition",
1319
+ "subcategory": "easing",
1320
+ "value": "cubic-bezier(0.4, 0, 0.2, 1)",
1321
+ "description": ""
1322
+ },
1323
+ {
1324
+ "name": "transition.easing.spring",
1325
+ "cssVar": "--vyre-transition-easing-spring",
1326
+ "jsKey": "transitionEasingSpring",
1327
+ "category": "transition",
1328
+ "subcategory": "easing",
1329
+ "value": "cubic-bezier(0.34, 1.56, 0.64, 1)",
1330
+ "description": ""
1331
+ }
1332
+ ]
1333
+ },
1334
+ "zIndex": {
1335
+ "description": "Z-index stacking scale.",
1336
+ "tokens": [
1337
+ {
1338
+ "name": "z.index.base",
1339
+ "cssVar": "--vyre-z-index-base",
1340
+ "jsKey": "zIndexBase",
1341
+ "category": "zIndex",
1342
+ "value": "0",
1343
+ "description": ""
1344
+ },
1345
+ {
1346
+ "name": "z.index.raised",
1347
+ "cssVar": "--vyre-z-index-raised",
1348
+ "jsKey": "zIndexRaised",
1349
+ "category": "zIndex",
1350
+ "value": "10",
1351
+ "description": ""
1352
+ },
1353
+ {
1354
+ "name": "z.index.sticky",
1355
+ "cssVar": "--vyre-z-index-sticky",
1356
+ "jsKey": "zIndexSticky",
1357
+ "category": "zIndex",
1358
+ "value": "100",
1359
+ "description": ""
1360
+ },
1361
+ {
1362
+ "name": "z.index.overlay",
1363
+ "cssVar": "--vyre-z-index-overlay",
1364
+ "jsKey": "zIndexOverlay",
1365
+ "category": "zIndex",
1366
+ "value": "200",
1367
+ "description": ""
1368
+ },
1369
+ {
1370
+ "name": "z.index.modal",
1371
+ "cssVar": "--vyre-z-index-modal",
1372
+ "jsKey": "zIndexModal",
1373
+ "category": "zIndex",
1374
+ "value": "1000",
1375
+ "description": ""
1376
+ },
1377
+ {
1378
+ "name": "z.index.toast",
1379
+ "cssVar": "--vyre-z-index-toast",
1380
+ "jsKey": "zIndexToast",
1381
+ "category": "zIndex",
1382
+ "value": "2000",
1383
+ "description": ""
1384
+ }
1385
+ ]
1386
+ }
1387
+ }
1388
+ }