rechta-ds 0.0.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.
Files changed (58) hide show
  1. package/.changeset/config.json +11 -0
  2. package/.github/workflows/release.yml +53 -0
  3. package/.github/workflows/storybook.yml +34 -0
  4. package/.storybook/main.ts +17 -0
  5. package/.storybook/preview.ts +35 -0
  6. package/CHANGELOG.md +65 -0
  7. package/CONTRIBUTING.md +106 -0
  8. package/README.md +206 -0
  9. package/package.json +30 -0
  10. package/packages/tokens/build.js +357 -0
  11. package/packages/tokens/package.json +44 -0
  12. package/packages/tokens/src/tokens.json +1538 -0
  13. package/packages/ui/.storybook/main.ts +17 -0
  14. package/packages/ui/.storybook/preview.tsx +37 -0
  15. package/packages/ui/package.json +109 -0
  16. package/packages/ui/postcss.config.js +6 -0
  17. package/packages/ui/src/components/atoms/Avatar.tsx +139 -0
  18. package/packages/ui/src/components/atoms/Badge.tsx +62 -0
  19. package/packages/ui/src/components/atoms/Button.tsx +125 -0
  20. package/packages/ui/src/components/atoms/Input.tsx +116 -0
  21. package/packages/ui/src/components/atoms/Misc.tsx +128 -0
  22. package/packages/ui/src/components/atoms/Toggle.tsx +191 -0
  23. package/packages/ui/src/components/atoms/Typography.tsx +178 -0
  24. package/packages/ui/src/components/atoms/index.ts +7 -0
  25. package/packages/ui/src/components/charts/Charts.tsx +380 -0
  26. package/packages/ui/src/components/charts/DataTable.tsx +222 -0
  27. package/packages/ui/src/components/charts/index.ts +19 -0
  28. package/packages/ui/src/components/molecules/Accordion.tsx +93 -0
  29. package/packages/ui/src/components/molecules/Card.tsx +100 -0
  30. package/packages/ui/src/components/molecules/PricingCard.tsx +196 -0
  31. package/packages/ui/src/components/molecules/TestimonialCard.tsx +85 -0
  32. package/packages/ui/src/components/molecules/Tooltip.tsx +71 -0
  33. package/packages/ui/src/components/molecules/index.ts +5 -0
  34. package/packages/ui/src/components/organisms/FeatureTabs.tsx +196 -0
  35. package/packages/ui/src/components/organisms/LogoMarquee.tsx +119 -0
  36. package/packages/ui/src/components/organisms/Navbar.tsx +194 -0
  37. package/packages/ui/src/components/organisms/index.ts +3 -0
  38. package/packages/ui/src/index.ts +15 -0
  39. package/packages/ui/src/lib/utils.ts +12 -0
  40. package/packages/ui/src/stories/atoms/Avatar.stories.tsx +49 -0
  41. package/packages/ui/src/stories/atoms/Badge.stories.tsx +68 -0
  42. package/packages/ui/src/stories/atoms/Button.stories.tsx +98 -0
  43. package/packages/ui/src/stories/atoms/Input.stories.tsx +66 -0
  44. package/packages/ui/src/stories/atoms/Toggle.stories.tsx +36 -0
  45. package/packages/ui/src/stories/molecules/Accordion.stories.tsx +47 -0
  46. package/packages/ui/src/stories/molecules/Card.stories.tsx +84 -0
  47. package/packages/ui/src/stories/molecules/PricingCard.stories.tsx +62 -0
  48. package/packages/ui/src/stories/molecules/TestimonialCard.stories.tsx +52 -0
  49. package/packages/ui/src/stories/molecules/Tooltip.stories.tsx +66 -0
  50. package/packages/ui/src/stories/organisms/LogoMarquee.stories.tsx +33 -0
  51. package/packages/ui/src/stories/organisms/Navbar.stories.tsx +37 -0
  52. package/packages/ui/src/styles/globals.css +220 -0
  53. package/packages/ui/tailwind.config.ts +68 -0
  54. package/packages/ui/tsconfig.json +23 -0
  55. package/packages/ui/tsup.config.ts +24 -0
  56. package/packages/ui/vite.config.ts +17 -0
  57. package/pnpm-workspace.yaml +2 -0
  58. package/turbo.json +33 -0
@@ -0,0 +1,1538 @@
1
+ {
2
+ "color": {
3
+ "primitive": {
4
+ "black": {
5
+ "$type": "color",
6
+ "$value": "#000000"
7
+ },
8
+ "porcelain": {
9
+ "$type": "color",
10
+ "$value": "#FFFFFC"
11
+ },
12
+ "malachite": {
13
+ "$type": "color",
14
+ "$value": "#09E85E"
15
+ },
16
+ "emerald": {
17
+ "$type": "color",
18
+ "$value": "#16C172"
19
+ },
20
+ "dodgerBlue": {
21
+ "$type": "color",
22
+ "$value": "#3590F3"
23
+ },
24
+ "gray": {
25
+ "0": {
26
+ "$type": "color",
27
+ "$value": "#FFFFFC"
28
+ },
29
+ "25": {
30
+ "$type": "color",
31
+ "$value": "#F8F8F6"
32
+ },
33
+ "50": {
34
+ "$type": "color",
35
+ "$value": "#F0F0EE"
36
+ },
37
+ "100": {
38
+ "$type": "color",
39
+ "$value": "#E2E2E0"
40
+ },
41
+ "150": {
42
+ "$type": "color",
43
+ "$value": "#D0D0CE"
44
+ },
45
+ "200": {
46
+ "$type": "color",
47
+ "$value": "#BBBBBA"
48
+ },
49
+ "250": {
50
+ "$type": "color",
51
+ "$value": "#A8A8A6"
52
+ },
53
+ "300": {
54
+ "$type": "color",
55
+ "$value": "#8E8E8C"
56
+ },
57
+ "350": {
58
+ "$type": "color",
59
+ "$value": "#787876"
60
+ },
61
+ "400": {
62
+ "$type": "color",
63
+ "$value": "#646462"
64
+ },
65
+ "450": {
66
+ "$type": "color",
67
+ "$value": "#545452"
68
+ },
69
+ "500": {
70
+ "$type": "color",
71
+ "$value": "#444442"
72
+ },
73
+ "550": {
74
+ "$type": "color",
75
+ "$value": "#383836"
76
+ },
77
+ "600": {
78
+ "$type": "color",
79
+ "$value": "#2C2C2A"
80
+ },
81
+ "650": {
82
+ "$type": "color",
83
+ "$value": "#242422"
84
+ },
85
+ "700": {
86
+ "$type": "color",
87
+ "$value": "#1C1C1A"
88
+ },
89
+ "750": {
90
+ "$type": "color",
91
+ "$value": "#161614"
92
+ },
93
+ "800": {
94
+ "$type": "color",
95
+ "$value": "#111110"
96
+ },
97
+ "850": {
98
+ "$type": "color",
99
+ "$value": "#0C0C0B"
100
+ },
101
+ "900": {
102
+ "$type": "color",
103
+ "$value": "#080806"
104
+ },
105
+ "950": {
106
+ "$type": "color",
107
+ "$value": "#040403"
108
+ },
109
+ "1000": {
110
+ "$type": "color",
111
+ "$value": "#000000"
112
+ }
113
+ },
114
+ "brand": {
115
+ "50": {
116
+ "$type": "color",
117
+ "$value": "#EDFFF5"
118
+ },
119
+ "100": {
120
+ "$type": "color",
121
+ "$value": "#C9FFE1"
122
+ },
123
+ "150": {
124
+ "$type": "color",
125
+ "$value": "#A0FBCC"
126
+ },
127
+ "200": {
128
+ "$type": "color",
129
+ "$value": "#63F5A8"
130
+ },
131
+ "300": {
132
+ "$type": "color",
133
+ "$value": "#20F07A"
134
+ },
135
+ "400": {
136
+ "$type": "color",
137
+ "$value": "#09E85E"
138
+ },
139
+ "450": {
140
+ "$type": "color",
141
+ "$value": "#0CF568"
142
+ },
143
+ "500": {
144
+ "$type": "color",
145
+ "$value": "#07C44F"
146
+ },
147
+ "550": {
148
+ "$type": "color",
149
+ "$value": "#16C172"
150
+ },
151
+ "600": {
152
+ "$type": "color",
153
+ "$value": "#0FAD63"
154
+ },
155
+ "650": {
156
+ "$type": "color",
157
+ "$value": "#0D9456"
158
+ },
159
+ "700": {
160
+ "$type": "color",
161
+ "$value": "#0A8048"
162
+ },
163
+ "750": {
164
+ "$type": "color",
165
+ "$value": "#08683B"
166
+ },
167
+ "800": {
168
+ "$type": "color",
169
+ "$value": "#055230"
170
+ },
171
+ "850": {
172
+ "$type": "color",
173
+ "$value": "#033C22"
174
+ },
175
+ "900": {
176
+ "$type": "color",
177
+ "$value": "#022818"
178
+ },
179
+ "950": {
180
+ "$type": "color",
181
+ "$value": "#01160C"
182
+ }
183
+ },
184
+ "blue": {
185
+ "400": {
186
+ "$type": "color",
187
+ "$value": "#60A5FA"
188
+ },
189
+ "500": {
190
+ "$type": "color",
191
+ "$value": "#3B82F6"
192
+ },
193
+ "600": {
194
+ "$type": "color",
195
+ "$value": "#2563EB"
196
+ },
197
+ "700": {
198
+ "$type": "color",
199
+ "$value": "#1D4ED8"
200
+ },
201
+ "800": {
202
+ "$type": "color",
203
+ "$value": "#1E40AF"
204
+ }
205
+ },
206
+ "red": {
207
+ "50": {
208
+ "$type": "color",
209
+ "$value": "#FFF0F0"
210
+ },
211
+ "100": {
212
+ "$type": "color",
213
+ "$value": "#FFD6D6"
214
+ },
215
+ "200": {
216
+ "$type": "color",
217
+ "$value": "#FFA8A8"
218
+ },
219
+ "300": {
220
+ "$type": "color",
221
+ "$value": "#FF7070"
222
+ },
223
+ "400": {
224
+ "$type": "color",
225
+ "$value": "#F87171"
226
+ },
227
+ "500": {
228
+ "$type": "color",
229
+ "$value": "#EF4444"
230
+ },
231
+ "600": {
232
+ "$type": "color",
233
+ "$value": "#DC2626"
234
+ },
235
+ "700": {
236
+ "$type": "color",
237
+ "$value": "#B91C1C"
238
+ },
239
+ "800": {
240
+ "$type": "color",
241
+ "$value": "#7F1D1D"
242
+ }
243
+ },
244
+ "amber": {
245
+ "50": {
246
+ "$type": "color",
247
+ "$value": "#FFFBEB"
248
+ },
249
+ "100": {
250
+ "$type": "color",
251
+ "$value": "#FEF3C7"
252
+ },
253
+ "200": {
254
+ "$type": "color",
255
+ "$value": "#FDE68A"
256
+ },
257
+ "300": {
258
+ "$type": "color",
259
+ "$value": "#FCD34D"
260
+ },
261
+ "400": {
262
+ "$type": "color",
263
+ "$value": "#FBBF24"
264
+ },
265
+ "500": {
266
+ "$type": "color",
267
+ "$value": "#F59E0B"
268
+ },
269
+ "600": {
270
+ "$type": "color",
271
+ "$value": "#D97706"
272
+ },
273
+ "700": {
274
+ "$type": "color",
275
+ "$value": "#92570A"
276
+ },
277
+ "800": {
278
+ "$type": "color",
279
+ "$value": "#78350F"
280
+ }
281
+ },
282
+ "violet": {
283
+ "50": {
284
+ "$type": "color",
285
+ "$value": "#EEF0FF"
286
+ },
287
+ "100": {
288
+ "$type": "color",
289
+ "$value": "#D9DCFF"
290
+ },
291
+ "200": {
292
+ "$type": "color",
293
+ "$value": "#B4BBFF"
294
+ },
295
+ "300": {
296
+ "$type": "color",
297
+ "$value": "#8B8EF8"
298
+ },
299
+ "400": {
300
+ "$type": "color",
301
+ "$value": "#6B78E5"
302
+ },
303
+ "500": {
304
+ "$type": "color",
305
+ "$value": "#5E6AD2"
306
+ },
307
+ "600": {
308
+ "$type": "color",
309
+ "$value": "#4F5BB8"
310
+ },
311
+ "700": {
312
+ "$type": "color",
313
+ "$value": "#3E4A9A"
314
+ },
315
+ "800": {
316
+ "$type": "color",
317
+ "$value": "#2E3880"
318
+ },
319
+ "900": {
320
+ "$type": "color",
321
+ "$value": "#1E2660"
322
+ }
323
+ },
324
+ "zinc": {
325
+ "950": {
326
+ "$type": "color",
327
+ "$value": "#09090B"
328
+ },
329
+ "900": {
330
+ "$type": "color",
331
+ "$value": "#0D0D0F"
332
+ },
333
+ "850": {
334
+ "$type": "color",
335
+ "$value": "#111113"
336
+ },
337
+ "800": {
338
+ "$type": "color",
339
+ "$value": "#141416"
340
+ },
341
+ "750": {
342
+ "$type": "color",
343
+ "$value": "#161618"
344
+ },
345
+ "700": {
346
+ "$type": "color",
347
+ "$value": "#1C1C1F"
348
+ },
349
+ "600": {
350
+ "$type": "color",
351
+ "$value": "#27272A"
352
+ },
353
+ "500": {
354
+ "$type": "color",
355
+ "$value": "#3F3F48"
356
+ },
357
+ "400": {
358
+ "$type": "color",
359
+ "$value": "#52525C"
360
+ },
361
+ "300": {
362
+ "$type": "color",
363
+ "$value": "#6E6E78"
364
+ },
365
+ "200": {
366
+ "$type": "color",
367
+ "$value": "#A0A0A8"
368
+ },
369
+ "100": {
370
+ "$type": "color",
371
+ "$value": "#EDEDEF"
372
+ }
373
+ }
374
+ },
375
+ "semantic": {
376
+ "dark": {
377
+ "bg": {
378
+ "base": {
379
+ "$type": "color",
380
+ "$value": "#000000",
381
+ "$comment": "Root canvas"
382
+ },
383
+ "subtle": {
384
+ "$type": "color",
385
+ "$value": "#090909",
386
+ "$comment": "Slightly lifted"
387
+ },
388
+ "muted": {
389
+ "$type": "color",
390
+ "$value": "#0F0F0F",
391
+ "$comment": "Muted fill"
392
+ },
393
+ "elevated": {
394
+ "$type": "color",
395
+ "$value": "#161616",
396
+ "$comment": "Modal/popover"
397
+ },
398
+ "overlay": {
399
+ "$type": "color",
400
+ "$value": "#1E1E1E",
401
+ "$comment": "Dropdown/menu"
402
+ },
403
+ "inverse": {
404
+ "$type": "color",
405
+ "$value": "#FFFFFC",
406
+ "$comment": "Inverted canvas"
407
+ }
408
+ },
409
+ "surface": {
410
+ "default": {
411
+ "$type": "color",
412
+ "$value": "#111111",
413
+ "$comment": "Card default"
414
+ },
415
+ "raised": {
416
+ "$type": "color",
417
+ "$value": "#1A1A1A",
418
+ "$comment": "Card raised"
419
+ },
420
+ "sunken": {
421
+ "$type": "color",
422
+ "$value": "#080808",
423
+ "$comment": "Inset/sunken"
424
+ },
425
+ "hover": {
426
+ "$type": "color",
427
+ "$value": "#222222",
428
+ "$comment": "Surface hover state"
429
+ },
430
+ "active": {
431
+ "$type": "color",
432
+ "$value": "#2A2A2A",
433
+ "$comment": "Surface pressed state"
434
+ },
435
+ "selected": {
436
+ "$type": "color",
437
+ "$value": "#1C2E1C",
438
+ "$comment": "Surface selected (brand)"
439
+ }
440
+ },
441
+ "border": {
442
+ "subtle": {
443
+ "$type": "color",
444
+ "$value": "#1E1E1E",
445
+ "$comment": "Dividers, hairlines"
446
+ },
447
+ "default": {
448
+ "$type": "color",
449
+ "$value": "#2A2A2A",
450
+ "$comment": "Card/input default"
451
+ },
452
+ "mid": {
453
+ "$type": "color",
454
+ "$value": "#333333",
455
+ "$comment": "Hover border"
456
+ },
457
+ "strong": {
458
+ "$type": "color",
459
+ "$value": "#444444",
460
+ "$comment": "Pressed/focus border"
461
+ },
462
+ "brand": {
463
+ "$type": "color",
464
+ "$value": "rgba(9,232,94,0.30)",
465
+ "$comment": "Brand tinted border"
466
+ },
467
+ "brandHover": {
468
+ "$type": "color",
469
+ "$value": "rgba(9,232,94,0.50)",
470
+ "$comment": "Brand border hover"
471
+ },
472
+ "blue": {
473
+ "$type": "color",
474
+ "$value": "rgba(53,144,243,0.30)",
475
+ "$comment": "Blue tinted border"
476
+ },
477
+ "blueHover": {
478
+ "$type": "color",
479
+ "$value": "rgba(53,144,243,0.50)",
480
+ "$comment": "Blue border hover"
481
+ },
482
+ "error": {
483
+ "$type": "color",
484
+ "$value": "rgba(239,68,68,0.50)",
485
+ "$comment": "Error border"
486
+ },
487
+ "errorHover": {
488
+ "$type": "color",
489
+ "$value": "rgba(239,68,68,0.70)",
490
+ "$comment": "Error border hover"
491
+ }
492
+ },
493
+ "text": {
494
+ "primary": {
495
+ "$type": "color",
496
+ "$value": "#FFFFFC",
497
+ "$comment": "21:1 \u2014 headings, labels"
498
+ },
499
+ "secondary": {
500
+ "$type": "color",
501
+ "$value": "#B0B0AE",
502
+ "$comment": "9.2:1 \u2014 body text"
503
+ },
504
+ "tertiary": {
505
+ "$type": "color",
506
+ "$value": "#888886",
507
+ "$comment": "5.7:1 \u2014 captions, meta"
508
+ },
509
+ "muted": {
510
+ "$type": "color",
511
+ "$value": "#6E6E6C",
512
+ "$comment": "4.6:1 \u2014 hints, placeholders"
513
+ },
514
+ "disabled": {
515
+ "$type": "color",
516
+ "$value": "#555553",
517
+ "$comment": "3.5:1 \u2014 disabled only"
518
+ },
519
+ "inverse": {
520
+ "$type": "color",
521
+ "$value": "#000000",
522
+ "$comment": "On light bg"
523
+ },
524
+ "brand": {
525
+ "$type": "color",
526
+ "$value": "#09E85E",
527
+ "$comment": "8.6:1 \u2014 brand text"
528
+ },
529
+ "brandHover": {
530
+ "$type": "color",
531
+ "$value": "#0CF568",
532
+ "$comment": "Brand text hover"
533
+ },
534
+ "blue": {
535
+ "$type": "color",
536
+ "$value": "#5BABFF",
537
+ "$comment": "5.9:1 \u2014 blue text"
538
+ },
539
+ "blueHover": {
540
+ "$type": "color",
541
+ "$value": "#7FC0FF",
542
+ "$comment": "Blue text hover"
543
+ },
544
+ "error": {
545
+ "$type": "color",
546
+ "$value": "#F87171",
547
+ "$comment": "7.4:1 \u2014 error text"
548
+ },
549
+ "warning": {
550
+ "$type": "color",
551
+ "$value": "#FBBF24",
552
+ "$comment": "12.4:1 \u2014 warning text"
553
+ },
554
+ "success": {
555
+ "$type": "color",
556
+ "$value": "#09E85E",
557
+ "$comment": "Same as brand"
558
+ }
559
+ },
560
+ "brand": {
561
+ "default": {
562
+ "$type": "color",
563
+ "$value": "#09E85E",
564
+ "$comment": "Rest \u2014 button bg"
565
+ },
566
+ "hover": {
567
+ "$type": "color",
568
+ "$value": "#0CF568",
569
+ "$comment": "Hover \u2014 lighter"
570
+ },
571
+ "active": {
572
+ "$type": "color",
573
+ "$value": "#07C44F",
574
+ "$comment": "Pressed \u2014 darker"
575
+ },
576
+ "focus": {
577
+ "$type": "color",
578
+ "$value": "rgba(9,232,94,0.25)",
579
+ "$comment": "Focus ring"
580
+ },
581
+ "subtle": {
582
+ "$type": "color",
583
+ "$value": "rgba(9,232,94,0.08)",
584
+ "$comment": "Tinted bg"
585
+ },
586
+ "subtleHover": {
587
+ "$type": "color",
588
+ "$value": "rgba(9,232,94,0.14)",
589
+ "$comment": "Tinted bg hover"
590
+ },
591
+ "muted": {
592
+ "$type": "color",
593
+ "$value": "rgba(9,232,94,0.04)",
594
+ "$comment": "Faint fill"
595
+ },
596
+ "mutedHover": {
597
+ "$type": "color",
598
+ "$value": "rgba(9,232,94,0.07)",
599
+ "$comment": "Faint fill hover"
600
+ },
601
+ "emphasis": {
602
+ "$type": "color",
603
+ "$value": "#16C172",
604
+ "$comment": "Emerald \u2014 emphasis"
605
+ }
606
+ },
607
+ "blue": {
608
+ "default": {
609
+ "$type": "color",
610
+ "$value": "#3590F3",
611
+ "$comment": "Rest"
612
+ },
613
+ "hover": {
614
+ "$type": "color",
615
+ "$value": "#4FA0FF",
616
+ "$comment": "Hover"
617
+ },
618
+ "active": {
619
+ "$type": "color",
620
+ "$value": "#2478D4",
621
+ "$comment": "Pressed"
622
+ },
623
+ "focus": {
624
+ "$type": "color",
625
+ "$value": "rgba(53,144,243,0.25)",
626
+ "$comment": "Focus ring"
627
+ },
628
+ "subtle": {
629
+ "$type": "color",
630
+ "$value": "rgba(53,144,243,0.08)",
631
+ "$comment": "Tinted bg"
632
+ },
633
+ "subtleHover": {
634
+ "$type": "color",
635
+ "$value": "rgba(53,144,243,0.14)",
636
+ "$comment": "Tinted bg hover"
637
+ },
638
+ "muted": {
639
+ "$type": "color",
640
+ "$value": "rgba(53,144,243,0.04)",
641
+ "$comment": "Faint fill"
642
+ },
643
+ "mutedHover": {
644
+ "$type": "color",
645
+ "$value": "rgba(53,144,243,0.07)",
646
+ "$comment": "Faint fill hover"
647
+ }
648
+ },
649
+ "emerald": {
650
+ "default": {
651
+ "$type": "color",
652
+ "$value": "#16C172",
653
+ "$comment": "Rest"
654
+ },
655
+ "hover": {
656
+ "$type": "color",
657
+ "$value": "#1AD47F",
658
+ "$comment": "Hover"
659
+ },
660
+ "active": {
661
+ "$type": "color",
662
+ "$value": "#0FAD63",
663
+ "$comment": "Pressed"
664
+ },
665
+ "focus": {
666
+ "$type": "color",
667
+ "$value": "rgba(22,193,114,0.25)",
668
+ "$comment": "Focus ring"
669
+ },
670
+ "subtle": {
671
+ "$type": "color",
672
+ "$value": "rgba(22,193,114,0.08)",
673
+ "$comment": "Tinted bg"
674
+ },
675
+ "subtleHover": {
676
+ "$type": "color",
677
+ "$value": "rgba(22,193,114,0.14)",
678
+ "$comment": "Tinted bg hover"
679
+ }
680
+ },
681
+ "status": {
682
+ "success": {
683
+ "$type": "color",
684
+ "$value": "#09E85E",
685
+ "$comment": "8.6:1 on dark"
686
+ },
687
+ "info": {
688
+ "$type": "color",
689
+ "$value": "#5BABFF",
690
+ "$comment": "5.9:1 on dark"
691
+ },
692
+ "warning": {
693
+ "$type": "color",
694
+ "$value": "#FBBF24",
695
+ "$comment": "12.4:1 on dark"
696
+ },
697
+ "error": {
698
+ "$type": "color",
699
+ "$value": "#F87171",
700
+ "$comment": "7.4:1 on dark"
701
+ },
702
+ "successBg": {
703
+ "$type": "color",
704
+ "$value": "rgba(9,232,94,0.08)"
705
+ },
706
+ "infoBg": {
707
+ "$type": "color",
708
+ "$value": "rgba(53,144,243,0.08)"
709
+ },
710
+ "warningBg": {
711
+ "$type": "color",
712
+ "$value": "rgba(245,158,11,0.08)"
713
+ },
714
+ "errorBg": {
715
+ "$type": "color",
716
+ "$value": "rgba(239,68,68,0.08)"
717
+ }
718
+ }
719
+ },
720
+ "light": {
721
+ "bg": {
722
+ "base": {
723
+ "$type": "color",
724
+ "$value": "#FFFFFC",
725
+ "$comment": "Root canvas"
726
+ },
727
+ "subtle": {
728
+ "$type": "color",
729
+ "$value": "#F4F4F2",
730
+ "$comment": "Slightly lifted"
731
+ },
732
+ "muted": {
733
+ "$type": "color",
734
+ "$value": "#EBEBEA",
735
+ "$comment": "Muted fill"
736
+ },
737
+ "elevated": {
738
+ "$type": "color",
739
+ "$value": "#FFFFFF",
740
+ "$comment": "Modal/popover"
741
+ },
742
+ "overlay": {
743
+ "$type": "color",
744
+ "$value": "#E0E0DE",
745
+ "$comment": "Dropdown/menu"
746
+ },
747
+ "inverse": {
748
+ "$type": "color",
749
+ "$value": "#111110",
750
+ "$comment": "Inverted canvas"
751
+ }
752
+ },
753
+ "surface": {
754
+ "default": {
755
+ "$type": "color",
756
+ "$value": "#F8F8F6",
757
+ "$comment": "Card default"
758
+ },
759
+ "raised": {
760
+ "$type": "color",
761
+ "$value": "#FFFFFF",
762
+ "$comment": "Card raised"
763
+ },
764
+ "sunken": {
765
+ "$type": "color",
766
+ "$value": "#EBEBEA",
767
+ "$comment": "Inset/sunken"
768
+ },
769
+ "hover": {
770
+ "$type": "color",
771
+ "$value": "#EFEFED",
772
+ "$comment": "Surface hover state"
773
+ },
774
+ "active": {
775
+ "$type": "color",
776
+ "$value": "#E5E5E3",
777
+ "$comment": "Surface pressed state"
778
+ },
779
+ "selected": {
780
+ "$type": "color",
781
+ "$value": "#EDFFF5",
782
+ "$comment": "Surface selected (brand)"
783
+ }
784
+ },
785
+ "border": {
786
+ "subtle": {
787
+ "$type": "color",
788
+ "$value": "#E8E8E6",
789
+ "$comment": "Dividers, hairlines"
790
+ },
791
+ "default": {
792
+ "$type": "color",
793
+ "$value": "#D0D0CE",
794
+ "$comment": "Card/input default"
795
+ },
796
+ "mid": {
797
+ "$type": "color",
798
+ "$value": "#BBBBBA",
799
+ "$comment": "Hover border"
800
+ },
801
+ "strong": {
802
+ "$type": "color",
803
+ "$value": "#9A9A98",
804
+ "$comment": "Pressed/focus border"
805
+ },
806
+ "brand": {
807
+ "$type": "color",
808
+ "$value": "rgba(5,163,65,0.40)",
809
+ "$comment": "Brand tinted border"
810
+ },
811
+ "brandHover": {
812
+ "$type": "color",
813
+ "$value": "rgba(5,163,65,0.65)",
814
+ "$comment": "Brand border hover"
815
+ },
816
+ "blue": {
817
+ "$type": "color",
818
+ "$value": "rgba(26,99,198,0.40)",
819
+ "$comment": "Blue tinted border"
820
+ },
821
+ "blueHover": {
822
+ "$type": "color",
823
+ "$value": "rgba(26,99,198,0.65)",
824
+ "$comment": "Blue border hover"
825
+ },
826
+ "error": {
827
+ "$type": "color",
828
+ "$value": "rgba(196,29,29,0.45)",
829
+ "$comment": "Error border"
830
+ },
831
+ "errorHover": {
832
+ "$type": "color",
833
+ "$value": "rgba(196,29,29,0.70)",
834
+ "$comment": "Error border hover"
835
+ }
836
+ },
837
+ "text": {
838
+ "primary": {
839
+ "$type": "color",
840
+ "$value": "#111110",
841
+ "$comment": "19.9:1 \u2014 headings, labels"
842
+ },
843
+ "secondary": {
844
+ "$type": "color",
845
+ "$value": "#3A3A38",
846
+ "$comment": "12.8:1 \u2014 body text"
847
+ },
848
+ "tertiary": {
849
+ "$type": "color",
850
+ "$value": "#555553",
851
+ "$comment": "7.9:1 \u2014 captions, meta"
852
+ },
853
+ "muted": {
854
+ "$type": "color",
855
+ "$value": "#6E6E6C",
856
+ "$comment": "5.5:1 \u2014 hints, placeholders"
857
+ },
858
+ "disabled": {
859
+ "$type": "color",
860
+ "$value": "#9A9A98",
861
+ "$comment": "3.1:1 \u2014 disabled only"
862
+ },
863
+ "inverse": {
864
+ "$type": "color",
865
+ "$value": "#FFFFFC",
866
+ "$comment": "On dark bg"
867
+ },
868
+ "brand": {
869
+ "$type": "color",
870
+ "$value": "#047A2B",
871
+ "$comment": "7.1:1 \u2014 brand text on white"
872
+ },
873
+ "brandHover": {
874
+ "$type": "color",
875
+ "$value": "#038A30",
876
+ "$comment": "Brand text hover"
877
+ },
878
+ "blue": {
879
+ "$type": "color",
880
+ "$value": "#1A5EB8",
881
+ "$comment": "6.4:1 \u2014 blue text on white"
882
+ },
883
+ "blueHover": {
884
+ "$type": "color",
885
+ "$value": "#1553A8",
886
+ "$comment": "Blue text hover"
887
+ },
888
+ "error": {
889
+ "$type": "color",
890
+ "$value": "#C41D1D",
891
+ "$comment": "7.0:1 \u2014 error text on white"
892
+ },
893
+ "warning": {
894
+ "$type": "color",
895
+ "$value": "#92570A",
896
+ "$comment": "6.5:1 \u2014 warning text on white"
897
+ },
898
+ "success": {
899
+ "$type": "color",
900
+ "$value": "#047A2B",
901
+ "$comment": "Same as brand"
902
+ }
903
+ },
904
+ "brand": {
905
+ "default": {
906
+ "$type": "color",
907
+ "$value": "#07C44F",
908
+ "$comment": "Rest \u2014 AA on white (3.2:1 UI)"
909
+ },
910
+ "hover": {
911
+ "$type": "color",
912
+ "$value": "#09E85E",
913
+ "$comment": "Hover \u2014 brighter"
914
+ },
915
+ "active": {
916
+ "$type": "color",
917
+ "$value": "#05A341",
918
+ "$comment": "Pressed \u2014 darker"
919
+ },
920
+ "focus": {
921
+ "$type": "color",
922
+ "$value": "rgba(5,163,65,0.22)",
923
+ "$comment": "Focus ring"
924
+ },
925
+ "subtle": {
926
+ "$type": "color",
927
+ "$value": "rgba(5,163,65,0.08)",
928
+ "$comment": "Tinted bg"
929
+ },
930
+ "subtleHover": {
931
+ "$type": "color",
932
+ "$value": "rgba(5,163,65,0.14)",
933
+ "$comment": "Tinted bg hover"
934
+ },
935
+ "muted": {
936
+ "$type": "color",
937
+ "$value": "rgba(5,163,65,0.04)",
938
+ "$comment": "Faint fill"
939
+ },
940
+ "mutedHover": {
941
+ "$type": "color",
942
+ "$value": "rgba(5,163,65,0.07)",
943
+ "$comment": "Faint fill hover"
944
+ },
945
+ "emphasis": {
946
+ "$type": "color",
947
+ "$value": "#0FAD63",
948
+ "$comment": "Emerald \u2014 emphasis"
949
+ }
950
+ },
951
+ "blue": {
952
+ "default": {
953
+ "$type": "color",
954
+ "$value": "#2572D6",
955
+ "$comment": "Rest \u2014 4.9:1 on white"
956
+ },
957
+ "hover": {
958
+ "$type": "color",
959
+ "$value": "#3590F3",
960
+ "$comment": "Hover \u2014 brighter"
961
+ },
962
+ "active": {
963
+ "$type": "color",
964
+ "$value": "#1A5EB8",
965
+ "$comment": "Pressed \u2014 darker"
966
+ },
967
+ "focus": {
968
+ "$type": "color",
969
+ "$value": "rgba(26,94,184,0.22)",
970
+ "$comment": "Focus ring"
971
+ },
972
+ "subtle": {
973
+ "$type": "color",
974
+ "$value": "rgba(26,94,184,0.08)",
975
+ "$comment": "Tinted bg"
976
+ },
977
+ "subtleHover": {
978
+ "$type": "color",
979
+ "$value": "rgba(26,94,184,0.14)",
980
+ "$comment": "Tinted bg hover"
981
+ },
982
+ "muted": {
983
+ "$type": "color",
984
+ "$value": "rgba(26,94,184,0.04)",
985
+ "$comment": "Faint fill"
986
+ },
987
+ "mutedHover": {
988
+ "$type": "color",
989
+ "$value": "rgba(26,94,184,0.07)",
990
+ "$comment": "Faint fill hover"
991
+ }
992
+ },
993
+ "emerald": {
994
+ "default": {
995
+ "$type": "color",
996
+ "$value": "#0FAD63",
997
+ "$comment": "Rest"
998
+ },
999
+ "hover": {
1000
+ "$type": "color",
1001
+ "$value": "#16C172",
1002
+ "$comment": "Hover"
1003
+ },
1004
+ "active": {
1005
+ "$type": "color",
1006
+ "$value": "#0A8F50",
1007
+ "$comment": "Pressed"
1008
+ },
1009
+ "focus": {
1010
+ "$type": "color",
1011
+ "$value": "rgba(15,173,99,0.22)",
1012
+ "$comment": "Focus ring"
1013
+ },
1014
+ "subtle": {
1015
+ "$type": "color",
1016
+ "$value": "rgba(15,173,99,0.08)",
1017
+ "$comment": "Tinted bg"
1018
+ },
1019
+ "subtleHover": {
1020
+ "$type": "color",
1021
+ "$value": "rgba(15,173,99,0.14)",
1022
+ "$comment": "Tinted bg hover"
1023
+ }
1024
+ },
1025
+ "status": {
1026
+ "success": {
1027
+ "$type": "color",
1028
+ "$value": "#047A2B",
1029
+ "$comment": "7.1:1 on light"
1030
+ },
1031
+ "info": {
1032
+ "$type": "color",
1033
+ "$value": "#1A5EB8",
1034
+ "$comment": "6.4:1 on light"
1035
+ },
1036
+ "warning": {
1037
+ "$type": "color",
1038
+ "$value": "#92570A",
1039
+ "$comment": "6.5:1 on light"
1040
+ },
1041
+ "error": {
1042
+ "$type": "color",
1043
+ "$value": "#C41D1D",
1044
+ "$comment": "7.0:1 on light"
1045
+ },
1046
+ "successBg": {
1047
+ "$type": "color",
1048
+ "$value": "rgba(5,163,65,0.08)"
1049
+ },
1050
+ "infoBg": {
1051
+ "$type": "color",
1052
+ "$value": "rgba(26,94,184,0.08)"
1053
+ },
1054
+ "warningBg": {
1055
+ "$type": "color",
1056
+ "$value": "rgba(146,87,10,0.08)"
1057
+ },
1058
+ "errorBg": {
1059
+ "$type": "color",
1060
+ "$value": "rgba(196,29,29,0.08)"
1061
+ }
1062
+ }
1063
+ }
1064
+ }
1065
+ },
1066
+ "typography": {
1067
+ "fontFamily": {
1068
+ "display": {
1069
+ "$type": "fontFamily",
1070
+ "$value": [
1071
+ "Ruda",
1072
+ "sans-serif"
1073
+ ]
1074
+ },
1075
+ "sans": {
1076
+ "$type": "fontFamily",
1077
+ "$value": [
1078
+ "Inter",
1079
+ "system-ui",
1080
+ "sans-serif"
1081
+ ]
1082
+ },
1083
+ "mono": {
1084
+ "$type": "fontFamily",
1085
+ "$value": [
1086
+ "JetBrains Mono",
1087
+ "monospace"
1088
+ ]
1089
+ }
1090
+ },
1091
+ "fontWeight": {
1092
+ "light": {
1093
+ "$type": "fontWeight",
1094
+ "$value": 300
1095
+ },
1096
+ "regular": {
1097
+ "$type": "fontWeight",
1098
+ "$value": 400
1099
+ },
1100
+ "medium": {
1101
+ "$type": "fontWeight",
1102
+ "$value": 500
1103
+ },
1104
+ "semibold": {
1105
+ "$type": "fontWeight",
1106
+ "$value": 600
1107
+ },
1108
+ "bold": {
1109
+ "$type": "fontWeight",
1110
+ "$value": 700
1111
+ },
1112
+ "extrabold": {
1113
+ "$type": "fontWeight",
1114
+ "$value": 800
1115
+ },
1116
+ "black": {
1117
+ "$type": "fontWeight",
1118
+ "$value": 900
1119
+ }
1120
+ },
1121
+ "fontSize": {
1122
+ "xs": {
1123
+ "$type": "dimension",
1124
+ "$value": "10px"
1125
+ },
1126
+ "sm": {
1127
+ "$type": "dimension",
1128
+ "$value": "11px"
1129
+ },
1130
+ "base": {
1131
+ "$type": "dimension",
1132
+ "$value": "13px"
1133
+ },
1134
+ "md": {
1135
+ "$type": "dimension",
1136
+ "$value": "15px"
1137
+ },
1138
+ "lg": {
1139
+ "$type": "dimension",
1140
+ "$value": "17px"
1141
+ },
1142
+ "xl": {
1143
+ "$type": "dimension",
1144
+ "$value": "20px"
1145
+ },
1146
+ "2xl": {
1147
+ "$type": "dimension",
1148
+ "$value": "24px"
1149
+ },
1150
+ "3xl": {
1151
+ "$type": "dimension",
1152
+ "$value": "30px"
1153
+ },
1154
+ "4xl": {
1155
+ "$type": "dimension",
1156
+ "$value": "40px"
1157
+ },
1158
+ "5xl": {
1159
+ "$type": "dimension",
1160
+ "$value": "56px"
1161
+ }
1162
+ }
1163
+ },
1164
+ "spacing": {
1165
+ "0": {
1166
+ "$type": "dimension",
1167
+ "$value": "0px"
1168
+ },
1169
+ "px": {
1170
+ "$type": "dimension",
1171
+ "$value": "1px"
1172
+ },
1173
+ "0.5": {
1174
+ "$type": "dimension",
1175
+ "$value": "2px"
1176
+ },
1177
+ "1": {
1178
+ "$type": "dimension",
1179
+ "$value": "4px"
1180
+ },
1181
+ "1.5": {
1182
+ "$type": "dimension",
1183
+ "$value": "6px"
1184
+ },
1185
+ "2": {
1186
+ "$type": "dimension",
1187
+ "$value": "8px"
1188
+ },
1189
+ "2.5": {
1190
+ "$type": "dimension",
1191
+ "$value": "10px"
1192
+ },
1193
+ "3": {
1194
+ "$type": "dimension",
1195
+ "$value": "12px"
1196
+ },
1197
+ "3.5": {
1198
+ "$type": "dimension",
1199
+ "$value": "14px"
1200
+ },
1201
+ "4": {
1202
+ "$type": "dimension",
1203
+ "$value": "16px"
1204
+ },
1205
+ "5": {
1206
+ "$type": "dimension",
1207
+ "$value": "20px"
1208
+ },
1209
+ "6": {
1210
+ "$type": "dimension",
1211
+ "$value": "24px"
1212
+ },
1213
+ "7": {
1214
+ "$type": "dimension",
1215
+ "$value": "28px"
1216
+ },
1217
+ "8": {
1218
+ "$type": "dimension",
1219
+ "$value": "32px"
1220
+ },
1221
+ "10": {
1222
+ "$type": "dimension",
1223
+ "$value": "40px"
1224
+ },
1225
+ "12": {
1226
+ "$type": "dimension",
1227
+ "$value": "48px"
1228
+ },
1229
+ "14": {
1230
+ "$type": "dimension",
1231
+ "$value": "56px"
1232
+ },
1233
+ "16": {
1234
+ "$type": "dimension",
1235
+ "$value": "64px"
1236
+ },
1237
+ "20": {
1238
+ "$type": "dimension",
1239
+ "$value": "80px"
1240
+ },
1241
+ "24": {
1242
+ "$type": "dimension",
1243
+ "$value": "96px"
1244
+ },
1245
+ "32": {
1246
+ "$type": "dimension",
1247
+ "$value": "128px"
1248
+ }
1249
+ },
1250
+ "borderRadius": {
1251
+ "none": {
1252
+ "$type": "dimension",
1253
+ "$value": "0px"
1254
+ },
1255
+ "sm": {
1256
+ "$type": "dimension",
1257
+ "$value": "2px"
1258
+ },
1259
+ "base": {
1260
+ "$type": "dimension",
1261
+ "$value": "4px"
1262
+ },
1263
+ "md": {
1264
+ "$type": "dimension",
1265
+ "$value": "6px"
1266
+ },
1267
+ "lg": {
1268
+ "$type": "dimension",
1269
+ "$value": "8px"
1270
+ },
1271
+ "xl": {
1272
+ "$type": "dimension",
1273
+ "$value": "12px"
1274
+ },
1275
+ "2xl": {
1276
+ "$type": "dimension",
1277
+ "$value": "16px"
1278
+ },
1279
+ "3xl": {
1280
+ "$type": "dimension",
1281
+ "$value": "24px"
1282
+ },
1283
+ "full": {
1284
+ "$type": "dimension",
1285
+ "$value": "9999px"
1286
+ }
1287
+ },
1288
+ "shadow": {
1289
+ "dark": {
1290
+ "xs": {
1291
+ "$type": "shadow",
1292
+ "$value": "0 1px 2px rgba(0,0,0,0.5)"
1293
+ },
1294
+ "sm": {
1295
+ "$type": "shadow",
1296
+ "$value": "0 1px 4px rgba(0,0,0,0.6)"
1297
+ },
1298
+ "md": {
1299
+ "$type": "shadow",
1300
+ "$value": "0 4px 10px rgba(0,0,0,0.7)"
1301
+ },
1302
+ "lg": {
1303
+ "$type": "shadow",
1304
+ "$value": "0 10px 24px rgba(0,0,0,0.75)"
1305
+ },
1306
+ "xl": {
1307
+ "$type": "shadow",
1308
+ "$value": "0 20px 40px rgba(0,0,0,0.8)"
1309
+ },
1310
+ "2xl": {
1311
+ "$type": "shadow",
1312
+ "$value": "0 32px 64px rgba(0,0,0,0.85)"
1313
+ },
1314
+ "inner": {
1315
+ "$type": "shadow",
1316
+ "$value": "inset 0 1px 3px rgba(0,0,0,0.5)"
1317
+ },
1318
+ "glow-brand": {
1319
+ "$type": "shadow",
1320
+ "$value": "0 0 20px rgba(9,232,94,0.28), 0 0 60px rgba(9,232,94,0.08)"
1321
+ },
1322
+ "glow-brand-lg": {
1323
+ "$type": "shadow",
1324
+ "$value": "0 0 40px rgba(9,232,94,0.35), 0 0 80px rgba(9,232,94,0.12)"
1325
+ },
1326
+ "glow-blue": {
1327
+ "$type": "shadow",
1328
+ "$value": "0 0 20px rgba(53,144,243,0.25), 0 0 50px rgba(53,144,243,0.07)"
1329
+ },
1330
+ "glow-blue-lg": {
1331
+ "$type": "shadow",
1332
+ "$value": "0 0 40px rgba(53,144,243,0.32), 0 0 70px rgba(53,144,243,0.10)"
1333
+ },
1334
+ "glow-emerald": {
1335
+ "$type": "shadow",
1336
+ "$value": "0 0 20px rgba(22,193,114,0.25), 0 0 50px rgba(22,193,114,0.07)"
1337
+ }
1338
+ },
1339
+ "light": {
1340
+ "xs": {
1341
+ "$type": "shadow",
1342
+ "$value": "0 1px 2px rgba(0,0,0,0.07)"
1343
+ },
1344
+ "sm": {
1345
+ "$type": "shadow",
1346
+ "$value": "0 1px 4px rgba(0,0,0,0.10)"
1347
+ },
1348
+ "md": {
1349
+ "$type": "shadow",
1350
+ "$value": "0 4px 10px rgba(0,0,0,0.12)"
1351
+ },
1352
+ "lg": {
1353
+ "$type": "shadow",
1354
+ "$value": "0 10px 24px rgba(0,0,0,0.14)"
1355
+ },
1356
+ "xl": {
1357
+ "$type": "shadow",
1358
+ "$value": "0 20px 40px rgba(0,0,0,0.18)"
1359
+ },
1360
+ "2xl": {
1361
+ "$type": "shadow",
1362
+ "$value": "0 32px 64px rgba(0,0,0,0.22)"
1363
+ },
1364
+ "inner": {
1365
+ "$type": "shadow",
1366
+ "$value": "inset 0 1px 3px rgba(0,0,0,0.08)"
1367
+ },
1368
+ "glow-brand": {
1369
+ "$type": "shadow",
1370
+ "$value": "0 0 18px rgba(7,196,79,0.22), 0 0 50px rgba(7,196,79,0.06)"
1371
+ },
1372
+ "glow-brand-lg": {
1373
+ "$type": "shadow",
1374
+ "$value": "0 0 32px rgba(7,196,79,0.30), 0 0 70px rgba(7,196,79,0.10)"
1375
+ },
1376
+ "glow-blue": {
1377
+ "$type": "shadow",
1378
+ "$value": "0 0 18px rgba(37,114,214,0.20), 0 0 40px rgba(37,114,214,0.05)"
1379
+ },
1380
+ "glow-blue-lg": {
1381
+ "$type": "shadow",
1382
+ "$value": "0 0 32px rgba(37,114,214,0.28), 0 0 60px rgba(37,114,214,0.08)"
1383
+ },
1384
+ "glow-emerald": {
1385
+ "$type": "shadow",
1386
+ "$value": "0 0 18px rgba(15,173,99,0.20), 0 0 40px rgba(15,173,99,0.05)"
1387
+ }
1388
+ }
1389
+ },
1390
+ "opacity": {
1391
+ "0": {
1392
+ "$type": "number",
1393
+ "$value": 0
1394
+ },
1395
+ "5": {
1396
+ "$type": "number",
1397
+ "$value": 0.05
1398
+ },
1399
+ "10": {
1400
+ "$type": "number",
1401
+ "$value": 0.1
1402
+ },
1403
+ "20": {
1404
+ "$type": "number",
1405
+ "$value": 0.2
1406
+ },
1407
+ "30": {
1408
+ "$type": "number",
1409
+ "$value": 0.3
1410
+ },
1411
+ "40": {
1412
+ "$type": "number",
1413
+ "$value": 0.4
1414
+ },
1415
+ "50": {
1416
+ "$type": "number",
1417
+ "$value": 0.5
1418
+ },
1419
+ "60": {
1420
+ "$type": "number",
1421
+ "$value": 0.6
1422
+ },
1423
+ "70": {
1424
+ "$type": "number",
1425
+ "$value": 0.7
1426
+ },
1427
+ "80": {
1428
+ "$type": "number",
1429
+ "$value": 0.8
1430
+ },
1431
+ "90": {
1432
+ "$type": "number",
1433
+ "$value": 0.9
1434
+ },
1435
+ "100": {
1436
+ "$type": "number",
1437
+ "$value": 1
1438
+ }
1439
+ },
1440
+ "transition": {
1441
+ "fast": {
1442
+ "$type": "duration",
1443
+ "$value": "100ms"
1444
+ },
1445
+ "base": {
1446
+ "$type": "duration",
1447
+ "$value": "150ms"
1448
+ },
1449
+ "medium": {
1450
+ "$type": "duration",
1451
+ "$value": "200ms"
1452
+ },
1453
+ "slow": {
1454
+ "$type": "duration",
1455
+ "$value": "300ms"
1456
+ },
1457
+ "slower": {
1458
+ "$type": "duration",
1459
+ "$value": "500ms"
1460
+ },
1461
+ "ease": {
1462
+ "$type": "cubicBezier",
1463
+ "$value": "cubic-bezier(0.4, 0, 0.2, 1)"
1464
+ },
1465
+ "easeIn": {
1466
+ "$type": "cubicBezier",
1467
+ "$value": "cubic-bezier(0.4, 0, 1, 1)"
1468
+ },
1469
+ "easeOut": {
1470
+ "$type": "cubicBezier",
1471
+ "$value": "cubic-bezier(0, 0, 0.2, 1)"
1472
+ },
1473
+ "spring": {
1474
+ "$type": "cubicBezier",
1475
+ "$value": "cubic-bezier(0.34, 1.56, 0.64, 1)"
1476
+ }
1477
+ },
1478
+ "zIndex": {
1479
+ "base": {
1480
+ "$type": "number",
1481
+ "$value": 0
1482
+ },
1483
+ "raised": {
1484
+ "$type": "number",
1485
+ "$value": 1
1486
+ },
1487
+ "dropdown": {
1488
+ "$type": "number",
1489
+ "$value": 100
1490
+ },
1491
+ "sticky": {
1492
+ "$type": "number",
1493
+ "$value": 200
1494
+ },
1495
+ "overlay": {
1496
+ "$type": "number",
1497
+ "$value": 300
1498
+ },
1499
+ "modal": {
1500
+ "$type": "number",
1501
+ "$value": 400
1502
+ },
1503
+ "popover": {
1504
+ "$type": "number",
1505
+ "$value": 500
1506
+ },
1507
+ "toast": {
1508
+ "$type": "number",
1509
+ "$value": 600
1510
+ },
1511
+ "tooltip": {
1512
+ "$type": "number",
1513
+ "$value": 700
1514
+ }
1515
+ },
1516
+ "breakpoint": {
1517
+ "sm": {
1518
+ "$type": "dimension",
1519
+ "$value": "640px"
1520
+ },
1521
+ "md": {
1522
+ "$type": "dimension",
1523
+ "$value": "768px"
1524
+ },
1525
+ "lg": {
1526
+ "$type": "dimension",
1527
+ "$value": "1024px"
1528
+ },
1529
+ "xl": {
1530
+ "$type": "dimension",
1531
+ "$value": "1280px"
1532
+ },
1533
+ "2xl": {
1534
+ "$type": "dimension",
1535
+ "$value": "1536px"
1536
+ }
1537
+ }
1538
+ }