@vetc-miniapp/ui-react 0.0.22 → 0.0.24

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 (57) hide show
  1. package/README.md +375 -56
  2. package/package.json +17 -5
  3. package/src/dist/ui-react/index.js +1 -1
  4. package/src/ui-react/components/avatar/Avatar.tsx +88 -0
  5. package/src/ui-react/components/avatar/index.ts +2 -0
  6. package/src/ui-react/components/bottom-sheet/BottomSheet.tsx +149 -0
  7. package/src/ui-react/components/bottom-sheet/index.ts +2 -0
  8. package/src/ui-react/components/button/Button.tsx +246 -0
  9. package/src/ui-react/components/button/index.ts +2 -0
  10. package/src/ui-react/components/button-group/ButtonGroup.tsx +108 -0
  11. package/src/ui-react/components/button-group/index.ts +2 -0
  12. package/src/ui-react/components/card/Card.tsx +77 -0
  13. package/src/ui-react/components/card/index.ts +2 -0
  14. package/src/ui-react/components/checkbox/Checkbox.tsx +232 -0
  15. package/src/ui-react/components/checkbox/index.ts +2 -0
  16. package/src/ui-react/components/chip/Chip.tsx +137 -0
  17. package/src/ui-react/components/chip/index.ts +2 -0
  18. package/src/ui-react/components/dialog/Dialog.tsx +135 -0
  19. package/src/ui-react/components/dialog/index.ts +2 -0
  20. package/src/ui-react/components/divider/Divider.tsx +54 -0
  21. package/src/ui-react/components/divider/index.ts +2 -0
  22. package/src/ui-react/components/input/Input.tsx +195 -0
  23. package/src/ui-react/components/input/index.ts +2 -0
  24. package/src/ui-react/components/list/List.tsx +180 -0
  25. package/src/ui-react/components/list/index.ts +2 -0
  26. package/src/ui-react/components/loading/Loading.tsx +121 -0
  27. package/src/ui-react/components/loading/index.ts +2 -0
  28. package/src/ui-react/components/modal/Modal.tsx +116 -0
  29. package/src/ui-react/components/modal/index.ts +2 -0
  30. package/src/ui-react/components/navigation-bar/NavigationBar.tsx +188 -0
  31. package/src/ui-react/components/navigation-bar/index.ts +2 -0
  32. package/src/ui-react/components/radio/Radio.tsx +216 -0
  33. package/src/ui-react/components/radio/index.ts +2 -0
  34. package/src/ui-react/components/select/Select.tsx +109 -0
  35. package/src/ui-react/components/select/index.ts +2 -0
  36. package/src/ui-react/components/switch/Switch.tsx +164 -0
  37. package/src/ui-react/components/switch/index.ts +2 -0
  38. package/src/ui-react/components/tab-bar/TabBar.tsx +137 -0
  39. package/src/ui-react/components/tab-bar/index.ts +2 -0
  40. package/src/ui-react/components/textarea/Textarea.tsx +109 -0
  41. package/src/ui-react/components/textarea/index.ts +2 -0
  42. package/src/ui-react/components/toast/Toast.ts +98 -0
  43. package/src/ui-react/components/toast/index.ts +2 -0
  44. package/src/ui-react/components/typography/Typography.tsx +201 -0
  45. package/src/ui-react/components/typography/index.ts +2 -0
  46. package/src/ui-react/hooks/use-did-show.js +1 -0
  47. package/src/ui-react/hooks/use-tap-app-bar.js +26 -0
  48. package/src/ui-react/hooks/use-tap-app-bar.ts +34 -0
  49. package/src/ui-react/index.js +1 -0
  50. package/src/ui-react/index.ts +79 -3
  51. package/src/ui-react/styles/VETCProvider.tsx +152 -0
  52. package/src/ui-react/styles/tokens.css +427 -0
  53. package/src/ui-react/tokens/colors.ts +91 -0
  54. package/src/ui-react/tokens/index.ts +3 -0
  55. package/src/ui-react/tokens/spacing.ts +59 -0
  56. package/src/ui-react/tokens/typography.ts +63 -0
  57. package/src/ui-react/tokens_vetc.json +1517 -0
@@ -0,0 +1,1517 @@
1
+ {
2
+ "global": {
3
+
4
+ "white": {
5
+ "type": "color",
6
+ "value": "#ffffff"
7
+ },
8
+ "black": {
9
+ "type": "color",
10
+ "value": "#000000"
11
+ },
12
+ "color": {
13
+ "black10": {
14
+ "type": "color",
15
+ "value": "#000000"
16
+ },
17
+ "color-global-black": {
18
+ "type": "color",
19
+ "value": "#000000"
20
+ },
21
+ "color-global-white": {
22
+ "type": "color",
23
+ "value": "#ffffff"
24
+ },
25
+ "color-global-blue-02": {
26
+ "type": "color",
27
+ "value": "#f4fbff"
28
+ },
29
+
30
+ "color-global-blue-05": {
31
+ "type": "color",
32
+ "value": "#e4f4ff"
33
+ },
34
+ "color-global-blue-10": {
35
+ "type": "color",
36
+ "value": "#cae9ff"
37
+ },
38
+
39
+ "color-global-blue-15": {
40
+ "type": "color",
41
+ "value": "#afddff"
42
+ },
43
+
44
+ "color-global-blue-20": {
45
+ "type": "color",
46
+ "value": "#95d1ff"
47
+ },
48
+
49
+ "color-global-blue-25": {
50
+ "type": "color",
51
+ "value": "#7ac4fb"
52
+ },
53
+
54
+ "color-global-blue-30": {
55
+ "type": "color",
56
+ "value": "#60b6f4"
57
+ },
58
+
59
+ "color-global-blue-35": {
60
+ "type": "color",
61
+ "value": "#45a8eb"
62
+ },
63
+
64
+ "color-global-blue-40": {
65
+ "type": "color",
66
+ "value": "#2b99df"
67
+ },
68
+
69
+ "color-global-blue-45": {
70
+ "type": "color",
71
+ "value": "#108ad1"
72
+ },
73
+
74
+ "color-global-blue-50": {
75
+ "type": "color",
76
+ "value": "#007ac1"
77
+ },
78
+ "color-global-blue-60": {
79
+ "type": "color",
80
+ "value": "#005c9e"
81
+ },
82
+
83
+
84
+ "color-global-blue-70": {
85
+ "type": "color",
86
+ "value": "#004179"
87
+ },
88
+
89
+
90
+ "color-global-blue-80": {
91
+ "type": "color",
92
+ "value": "#002853"
93
+ },
94
+
95
+
96
+ "color-global-blue-90": {
97
+ "type": "color",
98
+ "value": "#00122a"
99
+ },
100
+ "color-global-downy-02": {
101
+ "type": "color",
102
+ "value": "#f0fefb"
103
+ },
104
+ "color-global-downy-05": {
105
+ "type": "color",
106
+ "value": "#dafcf6"
107
+ },
108
+ "color-global-downy-10": {
109
+ "type": "color",
110
+ "value": "#b8f5ed"
111
+ },
112
+ "color-global-downy-15": {
113
+ "type": "color",
114
+ "value": "#9aeae3"
115
+ },
116
+ "color-global-downy-20": {
117
+ "type": "color",
118
+ "value": "#80dbd7"
119
+ },
120
+ "color-global-downy-25": {
121
+ "type": "color",
122
+ "value": "#6ac9c8"
123
+ },
124
+
125
+ "color-global-downy-30": {
126
+ "type": "color",
127
+ "value": "#60bbbf"
128
+ },
129
+ "color-global-downy-35": {
130
+ "type": "color",
131
+ "value": "#56acb4"
132
+ },
133
+ "color-global-downy-40": {
134
+ "type": "color",
135
+ "value": "#4d9da8"
136
+ },
137
+
138
+ "color-global-downy-45": {
139
+ "type": "color",
140
+ "value": "#448e9d"
141
+ },
142
+
143
+ "color-global-downy-50": {
144
+ "type": "color",
145
+ "value": "#3c7f91"
146
+ },
147
+
148
+
149
+ "color-global-downy-60": {
150
+ "type": "color",
151
+ "value": "#2d6177"
152
+ },
153
+
154
+ "color-global-downy-70": {
155
+ "type": "color",
156
+ "value": "#1f445c"
157
+ },
158
+
159
+ "color-global-downy-80": {
160
+ "type": "color",
161
+ "value": "#132a3f"
162
+ },
163
+
164
+ "color-global-downy-90": {
165
+ "type": "color",
166
+ "value": "#091320"
167
+ },
168
+
169
+ "color-global-gray-02": {
170
+ "type": "color",
171
+ "value": "#f9fafa"
172
+ },
173
+ "color-global-gray-05": {
174
+ "type": "color",
175
+ "value": "#f1f1f2"
176
+ },
177
+ "color-global-gray-10": {
178
+ "type": "color",
179
+ "value": "#e3e4e6"
180
+ },
181
+ "color-global-gray-15": {
182
+ "type": "color",
183
+ "value": "#d4d6d9"
184
+ },
185
+ "color-global-gray-20": {
186
+ "type": "color",
187
+ "value": "#c6c8cc"
188
+ },
189
+ "color-global-gray-25": {
190
+ "type": "color",
191
+ "value": "#b8babf"
192
+ },
193
+
194
+ "color-global-gray-30": {
195
+ "type": "color",
196
+ "value": "#abacb2"
197
+ },
198
+ "color-global-gray-35": {
199
+ "type": "color",
200
+ "value": "#9d9ea5"
201
+ },
202
+ "color-global-gray-40": {
203
+ "type": "color",
204
+ "value": "#8f9098"
205
+ },
206
+
207
+ "color-global-gray-45": {
208
+ "type": "color",
209
+ "value": "#82828a"
210
+ },
211
+
212
+ "color-global-gray-50": {
213
+ "type": "color",
214
+ "value": "#74747d"
215
+ },
216
+
217
+
218
+ "color-global-gray-60": {
219
+ "type": "color",
220
+ "value": "#5e5d64"
221
+ },
222
+
223
+ "color-global-gray-70": {
224
+ "type": "color",
225
+ "value": "#47464b"
226
+ },
227
+
228
+ "color-global-gray-80": {
229
+ "type": "color",
230
+ "value": "#2f2f32"
231
+ },
232
+
233
+ "color-global-gray-90": {
234
+ "type": "color",
235
+ "value": "#181719"
236
+ },
237
+ "color-global-green-02": {
238
+ "type": "color",
239
+ "value": "#f2fef2"
240
+ },
241
+ "color-global-green-05": {
242
+ "type": "color",
243
+ "value": "#dffbdf"
244
+ },
245
+ "color-global-green-10": {
246
+ "type": "color",
247
+ "value": "#bff4bf"
248
+ },
249
+ "color-global-green-15": {
250
+ "type": "color",
251
+ "value": "#9feca7"
252
+ },
253
+ "color-global-green-20": {
254
+ "type": "color",
255
+ "value": "#82e194"
256
+ },
257
+ "color-global-green-25": {
258
+ "type": "color",
259
+ "value": "#68d583"
260
+ },
261
+
262
+ "color-global-green-30": {
263
+ "type": "color",
264
+ "value": "#50c775"
265
+ },
266
+ "color-global-green-35": {
267
+ "type": "color",
268
+ "value": "#39b669"
269
+ },
270
+ "color-global-green-40": {
271
+ "type": "color",
272
+ "value": "#25a45e"
273
+ },
274
+
275
+ "color-global-green-45": {
276
+ "type": "color",
277
+ "value": "#23965b"
278
+ },
279
+
280
+ "color-global-green-50": {
281
+ "type": "color",
282
+ "value": "#208758"
283
+ },
284
+
285
+
286
+ "color-global-green-60": {
287
+ "type": "color",
288
+ "value": "#1b6b4d"
289
+ },
290
+
291
+ "color-global-green-70": {
292
+ "type": "color",
293
+ "value": "#15503f"
294
+ },
295
+
296
+ "color-global-green-80": {
297
+ "type": "color",
298
+ "value": "#0f342d"
299
+ },
300
+
301
+ "color-global-green-90": {
302
+ "type": "color",
303
+ "value": "#081a18"
304
+ },
305
+ "color-global-indigo-02": {
306
+ "type": "color",
307
+ "value": "#f9f9fd"
308
+ },
309
+ "color-global-indigo-05": {
310
+ "type": "color",
311
+ "value": "#efeffa"
312
+ },
313
+ "color-global-indigo-10": {
314
+ "type": "color",
315
+ "value": "#dfdff4"
316
+ },
317
+ "color-global-indigo-15": {
318
+ "type": "color",
319
+ "value": "#cfcfee"
320
+ },
321
+ "color-global-indigo-20": {
322
+ "type": "color",
323
+ "value": "#bfbfe7"
324
+ },
325
+ "color-global-indigo-25": {
326
+ "type": "color",
327
+ "value": "#afb1df"
328
+ },
329
+
330
+ "color-global-indigo-30": {
331
+ "type": "color",
332
+ "value": "#9fa3d7"
333
+ },
334
+ "color-global-indigo-35": {
335
+ "type": "color",
336
+ "value": "#8f96ce"
337
+ },
338
+ "color-global-indigo-40": {
339
+ "type": "color",
340
+ "value": "#8089c5"
341
+ },
342
+
343
+ "color-global-indigo-45": {
344
+ "type": "color",
345
+ "value": "#717dbc"
346
+ },
347
+
348
+ "color-global-indigo-50": {
349
+ "type": "color",
350
+ "value": "#6472b1"
351
+ },
352
+
353
+
354
+ "color-global-indigo-60": {
355
+ "type": "color",
356
+ "value": "#4b5b9b"
357
+ },
358
+
359
+ "color-global-indigo-70": {
360
+ "type": "color",
361
+ "value": "#354783"
362
+ },
363
+
364
+ "color-global-indigo-80": {
365
+ "type": "color",
366
+ "value": "#213368"
367
+ },
368
+
369
+ "color-global-indigo-90": {
370
+ "type": "color",
371
+ "value": "#111d34"
372
+ },
373
+ "color-global-moonstone-02": {
374
+ "type": "color",
375
+ "value": "#f2fcff"
376
+ },
377
+ "color-global-moonstone-05": {
378
+ "type": "color",
379
+ "value": "#ddf6ff"
380
+ },
381
+ "color-global-moonstone-10": {
382
+ "type": "color",
383
+ "value": "#beecff"
384
+ },
385
+ "color-global-moonstone-15": {
386
+ "type": "color",
387
+ "value": "#a2e1fb"
388
+ },
389
+ "color-global-moonstone-20": {
390
+ "type": "color",
391
+ "value": "#87d5f5"
392
+ },
393
+ "color-global-moonstone-25": {
394
+ "type": "color",
395
+ "value": "#70c8ec"
396
+ },
397
+
398
+ "color-global-moonstone-30": {
399
+ "type": "color",
400
+ "value": "#5abae1"
401
+ },
402
+ "color-global-moonstone-35": {
403
+ "type": "color",
404
+ "value": "#47abd3"
405
+ },
406
+ "color-global-moonstone-38": {
407
+ "type": "color",
408
+ "value": "#3da1ca"
409
+ },
410
+ "color-global-moonstone-40": {
411
+ "type": "color",
412
+ "value": "#3b9bc4"
413
+ },
414
+
415
+ "color-global-moonstone-45": {
416
+ "type": "color",
417
+ "value": "#348db5"
418
+ },
419
+
420
+ "color-global-moonstone-50": {
421
+ "type": "color",
422
+ "value": "#2f7ea6"
423
+ },
424
+
425
+
426
+ "color-global-moonstone-60": {
427
+ "type": "color",
428
+ "value": "#246386"
429
+ },
430
+
431
+ "color-global-moonstone-70": {
432
+ "type": "color",
433
+ "value": "#194866"
434
+ },
435
+
436
+ "color-global-moonstone-80": {
437
+ "type": "color",
438
+ "value": "#102e45"
439
+ },
440
+
441
+ "color-global-moonstone-90": {
442
+ "type": "color",
443
+ "value": "#081623"
444
+ },
445
+ "color-global-orange-02": {
446
+ "type": "color",
447
+ "value": "#fffbf0"
448
+ },
449
+ "color-global-orange-05": {
450
+ "type": "color",
451
+ "value": "#fff3da"
452
+ },
453
+ "color-global-orange-10": {
454
+ "type": "color",
455
+ "value": "#ffe3b4"
456
+ },
457
+ "color-global-orange-15": {
458
+ "type": "color",
459
+ "value": "#ffd08f"
460
+ },
461
+ "color-global-orange-20": {
462
+ "type": "color",
463
+ "value": "ffbb69"
464
+ },
465
+ "color-global-orange-25": {
466
+ "type": "color",
467
+ "value": "#ffa447"
468
+ },
469
+
470
+ "color-global-orange-30": {
471
+ "type": "color",
472
+ "value": "#ff8c2f"
473
+ },
474
+ "color-global-orange-35": {
475
+ "type": "color",
476
+ "value": "#ef7720"
477
+ },
478
+ "color-global-orange-40": {
479
+ "type": "color",
480
+ "value": "#dd6e1d"
481
+ },
482
+
483
+ "color-global-orange-45": {
484
+ "type": "color",
485
+ "value": "#cb651b"
486
+ },
487
+
488
+ "color-global-orange-50": {
489
+ "type": "color",
490
+ "value": "#b85c18"
491
+ },
492
+
493
+
494
+ "color-global-orange-60": {
495
+ "type": "color",
496
+ "value": "#934913"
497
+ },
498
+
499
+ "color-global-orange-70": {
500
+ "type": "color",
501
+ "value": "#6f370f"
502
+ },
503
+
504
+ "color-global-orange-80": {
505
+ "type": "color",
506
+ "value": "#4a250a"
507
+ },
508
+
509
+ "color-global-orange-90": {
510
+ "type": "color",
511
+ "value": "#251205"
512
+ },
513
+ "color-global-purple-02": {
514
+ "type": "color",
515
+ "value": "#fef5ff"
516
+ },
517
+ "color-global-purple-05": {
518
+ "type": "color",
519
+ "value": "#fbe7ff"
520
+ },
521
+ "color-global-purple-10": {
522
+ "type": "color",
523
+ "value": "#f4d0ff"
524
+ },
525
+ "color-global-purple-15": {
526
+ "type": "color",
527
+ "value": "#ecbcff"
528
+ },
529
+ "color-global-purple-20": {
530
+ "type": "color",
531
+ "value": "e1a9fb"
532
+ },
533
+ "color-global-purple-25": {
534
+ "type": "color",
535
+ "value": "#d698f5"
536
+ },
537
+
538
+ "color-global-purple-30": {
539
+ "type": "color",
540
+ "value": "#c989ee"
541
+ },
542
+ "color-global-purple-35": {
543
+ "type": "color",
544
+ "value": "#bb7ce4"
545
+ },
546
+ "color-global-purple-40": {
547
+ "type": "color",
548
+ "value": "#ad71d9"
549
+ },
550
+
551
+ "color-global-purple-45": {
552
+ "type": "color",
553
+ "value": "#9f68cc"
554
+ },
555
+
556
+ "color-global-purple-50": {
557
+ "type": "color",
558
+ "value": "#9160bd"
559
+ },
560
+
561
+
562
+ "color-global-purple-60": {
563
+ "type": "color",
564
+ "value": "#7542a2"
565
+ },
566
+
567
+ "color-global-purple-70": {
568
+ "type": "color",
569
+ "value": "#582a81"
570
+ },
571
+
572
+ "color-global-purple-80": {
573
+ "type": "color",
574
+ "value": "#3b175b"
575
+ },
576
+
577
+ "color-global-purple-90": {
578
+ "type": "color",
579
+ "value": "#1e0930"
580
+ },
581
+ "color-global-red-02": {
582
+ "type": "color",
583
+ "value": "#fff6f9"
584
+ },
585
+ "color-global-red-05": {
586
+ "type": "color",
587
+ "value": "#ffe7f0"
588
+ },
589
+ "color-global-red-10": {
590
+ "type": "color",
591
+ "value": "#ffd0de"
592
+ },
593
+ "color-global-red-15": {
594
+ "type": "color",
595
+ "value": "#ffb8cc"
596
+ },
597
+ "color-global-red-20": {
598
+ "type": "color",
599
+ "value": "#ffa1b8"
600
+ },
601
+ "color-global-red-25": {
602
+ "type": "color",
603
+ "value": "#ff89a3"
604
+ },
605
+
606
+ "color-global-red-30": {
607
+ "type": "color",
608
+ "value": "#fb718d"
609
+ },
610
+ "color-global-red-35": {
611
+ "type": "color",
612
+ "value": "#f55c78"
613
+ },
614
+ "color-global-red-40": {
615
+ "type": "color",
616
+ "value": "#ee4b62"
617
+ },
618
+
619
+ "color-global-red-45": {
620
+ "type": "color",
621
+ "value": "#e53b4d"
622
+ },
623
+
624
+ "color-global-red-50": {
625
+ "type": "color",
626
+ "value": "#da2c39"
627
+ },
628
+
629
+
630
+ "color-global-red-60": {
631
+ "type": "color",
632
+ "value": "#b4211f"
633
+ },
634
+
635
+ "color-global-red-70": {
636
+ "type": "color",
637
+ "value": "#852419"
638
+ },
639
+
640
+ "color-global-red-80": {
641
+ "type": "color",
642
+ "value": "#571f12"
643
+ },
644
+
645
+ "color-global-red-90": {
646
+ "type": "color",
647
+ "value": "#2b130a"
648
+ },
649
+ "color-global-yellow-02": {
650
+ "type": "color",
651
+ "value": "#fff8e7"
652
+ },
653
+ "color-global-yellow-05": {
654
+ "type": "color",
655
+ "value": "#ffefbc"
656
+ },
657
+ "color-global-yellow-10": {
658
+ "type": "color",
659
+ "value": "#ffe374"
660
+ },
661
+ "color-global-yellow-15": {
662
+ "type": "color",
663
+ "value": "#ffd62b"
664
+ },
665
+ "color-global-yellow-20": {
666
+ "type": "color",
667
+ "value": "#f9c600"
668
+ },
669
+ "color-global-yellow-25": {
670
+ "type": "color",
671
+ "value": "#e9b900"
672
+ },
673
+
674
+ "color-global-yellow-30": {
675
+ "type": "color",
676
+ "value": "#daaa00"
677
+ },
678
+ "color-global-yellow-35": {
679
+ "type": "color",
680
+ "value": "#ca9b00"
681
+ },
682
+ "color-global-yellow-40": {
683
+ "type": "color",
684
+ "value": "#bb8b00"
685
+ },
686
+
687
+ "color-global-yellow-45": {
688
+ "type": "color",
689
+ "value": "#ab7b00"
690
+ },
691
+
692
+ "color-global-yellow-50": {
693
+ "type": "color",
694
+ "value": "#9c6b00"
695
+ },
696
+
697
+
698
+ "color-global-yellow-60": {
699
+ "type": "color",
700
+ "value": "#7c4b00"
701
+ },
702
+
703
+ "color-global-yellow-70": {
704
+ "type": "color",
705
+ "value": "#5d2f00"
706
+ },
707
+
708
+ "color-global-yellow-80": {
709
+ "type": "color",
710
+ "value": "#3e1800"
711
+ },
712
+
713
+ "color-global-yellow-90": {
714
+ "type": "color",
715
+ "value": "#1f0700"
716
+ },
717
+
718
+ "color-alias-brand": {
719
+ "type": "color",
720
+ "value": "{color.color-global-green-40}"
721
+ },
722
+ "color-alias-disabled-background": {
723
+ "type": "color",
724
+ "value": "{color.color-global-gray-10}"
725
+ },
726
+
727
+ "color-alias-disabled-content": {
728
+ "type": "color",
729
+ "value": "{color.color-global-gray-30}"
730
+ },
731
+
732
+ "color-alias-disabled-outline": {
733
+ "type": "color",
734
+ "value": "{color.color-global-gray-20}"
735
+ },
736
+
737
+ "color-alias-inverse-theme": {
738
+ "type": "color",
739
+ "value": "{color.color-global-gray-90}"
740
+ },
741
+ "color-alias-negative": {
742
+ "type": "color",
743
+ "value": "{color.color-global-red-50}"
744
+ },
745
+ "color-alias-on-brand": {
746
+ "type": "color",
747
+ "value": "{color.color-global-white}"
748
+ },
749
+
750
+ "color-alias-on-negative": {
751
+ "type": "color",
752
+ "value": "{color.color-global-white}"
753
+ },
754
+
755
+ "color-alias-on-positive": {
756
+ "type": "color",
757
+ "value": "{color.color-global-white}"
758
+ },
759
+ "color-alias-on-positive-variant": {
760
+ "type": "color",
761
+ "value": "{color.color-global-green-60}"
762
+ },
763
+
764
+ "color-alias-on-warning": {
765
+ "type": "color",
766
+ "value": "{color.color-global-white}"
767
+ },
768
+
769
+ "color-alias-outline": {
770
+ "type": "color",
771
+ "value": "{color.color-global-gray-50}"
772
+ },
773
+
774
+ "color-alias-outline-inverse": {
775
+ "type": "color",
776
+ "value": "{color.color-global-gray-40}"
777
+ },
778
+
779
+ "color-alias-outline-inverse-overlay": {
780
+ "type": "color",
781
+ "value": "{color.color-global-gray-40}"
782
+ },
783
+
784
+ "color-alias-outline-inverse-variant": {
785
+ "type": "color",
786
+ "value": "{color.color-global-gray-70}"
787
+ },
788
+ "color-alias-outline-overlay": {
789
+ "type": "color",
790
+ "value": "#00000014"
791
+ },
792
+ "color-alias-outline-variant": {
793
+ "type": "color",
794
+ "value": "{color.color-global-gray-10}"
795
+ },
796
+
797
+ "color-alias-overlay": {
798
+ "type": "color",
799
+ "value": "#00000066"
800
+ },
801
+
802
+ "color-alias-overlay-inverse": {
803
+ "type": "color",
804
+ "value": "#ffffff66"
805
+ },
806
+
807
+ "color-alias-overlay-variant": {
808
+ "type": "color",
809
+ "value": "#00000029"
810
+ },
811
+
812
+ "color-alias-positive": {
813
+ "type": "color",
814
+ "value": "{color.color-global-green-50}"
815
+ },
816
+
817
+ "color-alias-positive-variant": {
818
+ "type": "color",
819
+ "value": "{color.color-global-green-05}"
820
+ },
821
+
822
+ "color-alias-primary-on-inverse-theme": {
823
+ "type": "color",
824
+ "value": "{color.color-global-white}"
825
+ },
826
+ "color-alias-primary-on-theme": {
827
+ "type": "color",
828
+ "value": "{color.color-global-gray-90}"
829
+ },
830
+
831
+ "color-alias-secondary-on-inverse-theme": {
832
+ "type": "color",
833
+ "value": "{color.color-global-gray-20}"
834
+ },
835
+ "color-alias-secondary-on-theme": {
836
+ "type": "color",
837
+ "value": "{color.color-global-gray-60}"
838
+ },
839
+
840
+ "color-alias-skeleton": {
841
+ "type": "color",
842
+ "value": "#0000001a"
843
+ },
844
+ "color-alias-theme": {
845
+ "type": "color",
846
+ "value": "{color.color-global-white}"
847
+ },
848
+ "color-alias-theme-variant": {
849
+ "type": "color",
850
+ "value": "{color.color-global-gray-05}"
851
+ },
852
+ "color-alias-warning": {
853
+ "type": "color",
854
+ "value": "{color.color-global-orange-30}"
855
+ }
856
+ },
857
+ "dimension": {
858
+ "unit0x": {
859
+ "type": "dimension",
860
+ "value": "0"
861
+ },
862
+ "unitX": {
863
+ "type": "dimension",
864
+ "value": "1"
865
+ },
866
+ "unit2x": {
867
+ "type": "dimension",
868
+ "value": "2"
869
+ },
870
+ "unit4x": {
871
+ "type": "dimension",
872
+ "value": "4"
873
+ },
874
+ "unit6x": {
875
+ "type": "dimension",
876
+ "value": "6"
877
+ },
878
+ "unit8x": {
879
+ "type": "dimension",
880
+ "value": "8"
881
+ },
882
+ "unit10x": {
883
+ "type": "dimension",
884
+ "value": "10"
885
+ },
886
+ "unit12x": {
887
+ "type": "dimension",
888
+ "value": "12"
889
+ },
890
+ "unit14x": {
891
+ "type": "dimension",
892
+ "value": "14"
893
+ },
894
+ "unit16x": {
895
+ "type": "dimension",
896
+ "value": "16"
897
+ },
898
+ "unit18x": {
899
+ "type": "dimension",
900
+ "value": "18"
901
+ },
902
+ "unit20x": {
903
+ "type": "dimension",
904
+ "value": "20"
905
+ },
906
+ "unit24x": {
907
+ "type": "dimension",
908
+ "value": "24"
909
+ },
910
+ "unit32x": {
911
+ "type": "dimension",
912
+ "value": "32"
913
+ },
914
+ "unit40x": {
915
+ "type": "dimension",
916
+ "value": "40"
917
+ },
918
+ "unit48x": {
919
+ "type": "dimension",
920
+ "value": "48"
921
+ },
922
+ "unit56x": {
923
+ "type": "dimension",
924
+ "value": "56"
925
+ },
926
+ "unit64x": {
927
+ "type": "dimension",
928
+ "value": "64"
929
+ },
930
+ "unit72x": {
931
+ "type": "dimension",
932
+ "value": "72"
933
+ },
934
+ "unit80x": {
935
+ "type": "dimension",
936
+ "value": "80"
937
+ }
938
+ },
939
+ "borderRadius": {
940
+
941
+ "corner0x": {
942
+ "type": "borderRadius",
943
+ "value": "{dimension.unit0x}"
944
+ },
945
+ "corner4x": {
946
+ "type": "borderRadius",
947
+ "value": "{dimension.unit4x}"
948
+ },
949
+ "corner6x": {
950
+ "type": "borderRadius",
951
+ "value": "{dimension.unit6x}"
952
+ },
953
+ "corner8x": {
954
+ "type": "borderRadius",
955
+ "value": "{dimension.unit8x}"
956
+ },
957
+ "corner10x": {
958
+ "type": "borderRadius",
959
+ "value": "{dimension.unit10x}"
960
+ },
961
+ "corner12x": {
962
+ "type": "borderRadius",
963
+ "value": "{dimension.unit12x}"
964
+ },
965
+ "corner14x": {
966
+ "type": "borderRadius",
967
+ "value": "{dimension.unit14x}"
968
+ },
969
+ "corner16x": {
970
+ "type": "borderRadius",
971
+ "value": "{dimension.unit16x}"
972
+ },
973
+ "corner20x": {
974
+ "type": "borderRadius",
975
+ "value": "{dimension.unit20x}"
976
+ },
977
+ "corner24x": {
978
+ "type": "borderRadius",
979
+ "value": "{dimension.unit24x}"
980
+ },
981
+ "cornerpill": {
982
+ "type": "borderRadius",
983
+ "value": "1000"
984
+ }
985
+ },
986
+ "spacing": {
987
+ "space0x": {
988
+ "type": "spacing",
989
+ "value": "{dimension.unit0x}"
990
+ },
991
+ "space2x": {
992
+ "type": "spacing",
993
+ "value": "{dimension.unit2x}"
994
+ },
995
+ "space4x": {
996
+ "type": "spacing",
997
+ "value": "{dimension.unit4x}"
998
+ },
999
+ "space6x": {
1000
+ "type": "spacing",
1001
+ "value": "{dimension.unit6x}"
1002
+ },
1003
+ "space8x": {
1004
+ "type": "spacing",
1005
+ "value": "{dimension.unit8x}"
1006
+ },
1007
+ "space10x": {
1008
+ "type": "spacing",
1009
+ "value": "{dimension.unit10x}"
1010
+ },
1011
+ "space12x": {
1012
+ "type": "spacing",
1013
+ "value": "{dimension.unit12x}"
1014
+ },
1015
+ "space14x": {
1016
+ "type": "spacing",
1017
+ "value": "{dimension.unit14x}"
1018
+ },
1019
+ "space16x": {
1020
+ "type": "spacing",
1021
+ "value": "{dimension.unit16x}"
1022
+ },
1023
+ "space20x": {
1024
+ "type": "spacing",
1025
+ "value": "{dimension.unit20x}"
1026
+ },
1027
+ "space24x": {
1028
+ "type": "spacing",
1029
+ "value": "{dimension.unit24x}"
1030
+ },
1031
+ "space32x": {
1032
+ "type": "spacing",
1033
+ "value": "{dimension.unit32x}"
1034
+ },
1035
+ "space48x": {
1036
+ "type": "spacing",
1037
+ "value": "{dimension.unit48x}"
1038
+ },
1039
+ "space64x": {
1040
+ "type": "spacing",
1041
+ "value": "{dimension.unit64x}"
1042
+ },
1043
+
1044
+ "size4x": {
1045
+ "type": "spacing",
1046
+ "value": "{dimension.unit4x}"
1047
+ },
1048
+ "size6x": {
1049
+ "type": "spacing",
1050
+ "value": "{dimension.unit6x}"
1051
+ },
1052
+ "size8x": {
1053
+ "type": "spacing",
1054
+ "value": "{dimension.unit8x}"
1055
+ },
1056
+ "size12x": {
1057
+ "type": "spacing",
1058
+ "value": "{dimension.unit12x}"
1059
+ },
1060
+ "size14x": {
1061
+ "type": "spacing",
1062
+ "value": "{dimension.unit14x}"
1063
+ },
1064
+ "size16x": {
1065
+ "type": "spacing",
1066
+ "value": "{dimension.unit16x}"
1067
+ },
1068
+ "size18x": {
1069
+ "type": "spacing",
1070
+ "value": "{dimension.unit18x}"
1071
+ },
1072
+ "size20x": {
1073
+ "type": "spacing",
1074
+ "value": "{dimension.unit20x}"
1075
+ },
1076
+ "size24x": {
1077
+ "type": "spacing",
1078
+ "value": "{dimension.unit24x}"
1079
+ },
1080
+ "size32x": {
1081
+ "type": "spacing",
1082
+ "value": "{dimension.unit32x}"
1083
+ },
1084
+ "size40x": {
1085
+ "type": "spacing",
1086
+ "value": "{dimension.unit40x}"
1087
+ },
1088
+ "size48x": {
1089
+ "type": "spacing",
1090
+ "value": "{dimension.unit48x}"
1091
+ },
1092
+ "size56x": {
1093
+ "type": "spacing",
1094
+ "value": "{dimension.unit56x}"
1095
+ },
1096
+ "size64x": {
1097
+ "type": "spacing",
1098
+ "value": "{dimension.unit64x}"
1099
+ },
1100
+ "size72x": {
1101
+ "type": "spacing",
1102
+ "value": "{dimension.unit72x}"
1103
+ },
1104
+ "size80x": {
1105
+ "type": "spacing",
1106
+ "value": "{dimension.unit80x}"
1107
+ }
1108
+ },
1109
+
1110
+ "fontWeights": {
1111
+ "w400": {
1112
+ "value": "400",
1113
+ "type": "fontWeights"
1114
+ },
1115
+ "w600": {
1116
+ "value": "600",
1117
+ "type": "fontWeights"
1118
+ },
1119
+ "w700": {
1120
+ "value": "700",
1121
+ "type": "fontWeights"
1122
+ },
1123
+ "w800": {
1124
+ "value": "800",
1125
+ "type": "fontWeights"
1126
+ },
1127
+ "w900": {
1128
+ "value": "900",
1129
+ "type": "fontWeights"
1130
+ }
1131
+ },
1132
+ "fontSize": {
1133
+ "base": {
1134
+ "value": "10",
1135
+ "type": "fontSizes"
1136
+ },
1137
+ "scale": {
1138
+ "value": "3",
1139
+ "type": "fontSizes"
1140
+ },
1141
+ "xs": {
1142
+ "value": "roundTo({fontSize.base})",
1143
+ "type": "fontSizes"
1144
+ },
1145
+ "sm": {
1146
+ "value": "{fontSize.base}+{fontSize.scale}",
1147
+ "type": "fontSizes"
1148
+ },
1149
+ "md": {
1150
+ "value": "{fontSize.sm}+{fontSize.scale}",
1151
+ "type": "fontSizes"
1152
+ },
1153
+ "lg": {
1154
+ "value": "{fontSize.md}+{fontSize.scale}",
1155
+ "type": "fontSizes"
1156
+ },
1157
+ "xl": {
1158
+ "value": "{fontSize.lg}+{fontSize.scale}",
1159
+ "type": "fontSizes"
1160
+ }
1161
+ },
1162
+ "letterSpacing": {
1163
+ "none": {
1164
+ "value": "0",
1165
+ "type": "letterSpacing"
1166
+ },
1167
+ "sm": {
1168
+ "value": "0.1",
1169
+ "type": "letterSpacing"
1170
+ },
1171
+ "md": {
1172
+ "value": "0.25",
1173
+ "type": "letterSpacing"
1174
+ },
1175
+ "lg": {
1176
+ "value": "0.5",
1177
+ "type": "letterSpacing"
1178
+ }
1179
+ },
1180
+ "paragraphSpacing": {
1181
+ "none": {
1182
+ "value": "0",
1183
+ "type": "paragraphSpacing"
1184
+ }
1185
+ },
1186
+ "fontFamilies": {
1187
+ "primary": {
1188
+ "value": "System Roboto",
1189
+ "type": "fontFamilies"
1190
+ }
1191
+ },
1192
+ "sys": {
1193
+ "display": {
1194
+ "small": {
1195
+ "value": {
1196
+ "fontFamily": "{fontFamilies.primary}",
1197
+ "fontWeight": "{fontWeights.w900}",
1198
+ "lineHeight": "{lineHeights.xs}",
1199
+ "fontSize": "{fontSize.xl}",
1200
+ "letterSpacing": "{letterSpacing.none}",
1201
+ "paragraphSpacing": "{paragraphSpacing.none}",
1202
+ "paragraphIndent": "{paragraphIndent.none}",
1203
+ "textCase": "{textCase.none}",
1204
+ "textDecoration": "{textDecoration.none}"
1205
+ },
1206
+ "type": "typography"
1207
+ },
1208
+ "medium": {
1209
+ "value": {
1210
+ "fontFamily": "{fontFamilies.primary}",
1211
+ "fontWeight": "{fontWeights.w900}",
1212
+ "lineHeight": "{lineHeights.xs}",
1213
+ "fontSize": "{fontSize.xl}",
1214
+ "letterSpacing": "{letterSpacing.none}",
1215
+ "paragraphSpacing": "{paragraphSpacing.none}",
1216
+ "paragraphIndent": "{paragraphIndent.none}",
1217
+ "textCase": "{textCase.none}",
1218
+ "textDecoration": "{textDecoration.none}"
1219
+ },
1220
+ "type": "typography"
1221
+ },
1222
+ "large": {
1223
+ "value": {
1224
+ "fontFamily": "{fontFamilies.primary}",
1225
+ "fontWeight": "{fontWeights.w900}",
1226
+ "lineHeight": "{lineHeights.xs}",
1227
+ "fontSize": "{fontSize.xl}",
1228
+ "letterSpacing": "{letterSpacing.none}",
1229
+ "paragraphSpacing": "{paragraphSpacing.none}",
1230
+ "paragraphIndent": "{paragraphIndent.none}",
1231
+ "textCase": "{textCase.none}",
1232
+ "textDecoration": "{textDecoration.none}"
1233
+ },
1234
+ "type": "typography"
1235
+ }
1236
+ },
1237
+ "headline": {
1238
+ "small": {
1239
+ "value": {
1240
+ "fontFamily": "{fontFamilies.primary}",
1241
+ "fontWeight": "{fontWeights.w900}",
1242
+ "lineHeight": "{lineHeights.md}",
1243
+ "fontSize": "{fontSize.xl}",
1244
+ "letterSpacing": "{letterSpacing.none}",
1245
+ "paragraphSpacing": "{paragraphSpacing.none}",
1246
+ "paragraphIndent": "{paragraphIndent.none}",
1247
+ "textCase": "{textCase.none}",
1248
+ "textDecoration": "{textDecoration.none}"
1249
+ },
1250
+ "type": "typography"
1251
+ },
1252
+ "medium": {
1253
+ "value": {
1254
+ "fontFamily": "{fontFamilies.primary}",
1255
+ "fontWeight": "{fontWeights.w900}",
1256
+ "lineHeight": "{lineHeights.md}",
1257
+ "fontSize": "{fontSize.xl}",
1258
+ "letterSpacing": "{letterSpacing.none}",
1259
+ "paragraphSpacing": "{paragraphSpacing.none}",
1260
+ "paragraphIndent": "{paragraphIndent.none}",
1261
+ "textCase": "{textCase.none}",
1262
+ "textDecoration": "{textDecoration.none}"
1263
+ },
1264
+ "type": "typography"
1265
+ },
1266
+ "large": {
1267
+ "value": {
1268
+ "fontFamily": "{fontFamilies.primary}",
1269
+ "fontWeight": "{fontWeights.w900}",
1270
+ "lineHeight": "{lineHeights.md}",
1271
+ "fontSize": "{fontSize.xl}",
1272
+ "letterSpacing": "{letterSpacing.none}",
1273
+ "paragraphSpacing": "{paragraphSpacing.none}",
1274
+ "paragraphIndent": "{paragraphIndent.none}",
1275
+ "textCase": "{textCase.none}",
1276
+ "textDecoration": "{textDecoration.none}"
1277
+ },
1278
+ "type": "typography"
1279
+ }
1280
+ },
1281
+ "title": {
1282
+ "small": {
1283
+ "value": {
1284
+ "fontFamily": "{fontFamilies.primary}",
1285
+ "fontWeight": "{fontWeights.w800}",
1286
+ "lineHeight": "{lineHeights.md}",
1287
+ "fontSize": "{fontSize.sm}",
1288
+ "letterSpacing": "{letterSpacing.sm}",
1289
+ "paragraphSpacing": "{paragraphSpacing.none}",
1290
+ "paragraphIndent": "{paragraphIndent.none}",
1291
+ "textCase": "{textCase.none}",
1292
+ "textDecoration": "{textDecoration.none}"
1293
+ },
1294
+ "type": "typography"
1295
+ },
1296
+ "medium": {
1297
+ "value": {
1298
+ "fontFamily": "{fontFamilies.primary}",
1299
+ "fontWeight": "{fontWeights.w800}",
1300
+ "lineHeight": "{lineHeights.md}",
1301
+ "fontSize": "{fontSize.md}",
1302
+ "letterSpacing": "{letterSpacing.sm}",
1303
+ "paragraphSpacing": "{paragraphSpacing.none}",
1304
+ "paragraphIndent": "{paragraphIndent.none}",
1305
+ "textCase": "{textCase.none}",
1306
+ "textDecoration": "{textDecoration.none}"
1307
+ },
1308
+ "type": "typography"
1309
+ },
1310
+ "large": {
1311
+ "value": {
1312
+ "fontFamily": "{fontFamilies.primary}",
1313
+ "fontWeight": "{fontWeights.w800}",
1314
+ "lineHeight": "{lineHeights.md}",
1315
+ "fontSize": "{fontSize.xl}",
1316
+ "letterSpacing": "{letterSpacing.none}",
1317
+ "paragraphSpacing": "{paragraphSpacing.none}",
1318
+ "paragraphIndent": "{paragraphIndent.none}",
1319
+ "textCase": "{textCase.none}",
1320
+ "textDecoration": "{textDecoration.none}"
1321
+ },
1322
+ "type": "typography"
1323
+ }
1324
+ },
1325
+ "label": {
1326
+ "small": {
1327
+ "value": {
1328
+ "fontFamily": "{fontFamilies.primary}",
1329
+ "fontWeight": "{fontWeights.w800}",
1330
+ "lineHeight": "{lineHeights.md}",
1331
+ "fontSize": "{fontSize.xs}",
1332
+ "letterSpacing": "{letterSpacing.lg}",
1333
+ "paragraphSpacing": "{paragraphSpacing.none}",
1334
+ "paragraphIndent": "{paragraphIndent.none}",
1335
+ "textCase": "{textCase.none}",
1336
+ "textDecoration": "{textDecoration.none}"
1337
+ },
1338
+ "type": "typography"
1339
+ },
1340
+ "medium": {
1341
+ "value": {
1342
+ "fontFamily": "{fontFamilies.primary}",
1343
+ "fontWeight": "{fontWeights.w800}",
1344
+ "lineHeight": "{lineHeights.md}",
1345
+ "fontSize": "{fontSize.sm}",
1346
+ "letterSpacing": "{letterSpacing.lg}",
1347
+ "paragraphSpacing": "{paragraphSpacing.none}",
1348
+ "paragraphIndent": "{paragraphIndent.none}",
1349
+ "textCase": "{textCase.none}",
1350
+ "textDecoration": "{textDecoration.none}"
1351
+ },
1352
+ "type": "typography"
1353
+ },
1354
+ "large": {
1355
+ "value": {
1356
+ "fontFamily": "{fontFamilies.primary}",
1357
+ "fontWeight": "{fontWeights.w800}",
1358
+ "lineHeight": "{lineHeights.md}",
1359
+ "fontSize": "{fontSize.md}",
1360
+ "letterSpacing": "{letterSpacing.sm}",
1361
+ "paragraphSpacing": "{paragraphSpacing.none}",
1362
+ "paragraphIndent": "{paragraphIndent.none}",
1363
+ "textCase": "{textCase.none}",
1364
+ "textDecoration": "{textDecoration.none}"
1365
+ },
1366
+ "type": "typography"
1367
+ }
1368
+ },
1369
+ "body": {
1370
+ "small": {
1371
+ "value": {
1372
+ "fontFamily": "{fontFamilies.primary}",
1373
+ "fontWeight": "{fontWeights.w400}",
1374
+ "lineHeight": "{lineHeights.md}",
1375
+ "fontSize": "{fontSize.xs}",
1376
+ "letterSpacing": "{letterSpacing.lg}",
1377
+ "paragraphSpacing": "{paragraphSpacing.none}",
1378
+ "paragraphIndent": "{paragraphIndent.none}",
1379
+ "textCase": "{textCase.none}",
1380
+ "textDecoration": "{textDecoration.none}"
1381
+ },
1382
+ "type": "typography"
1383
+ },
1384
+ "medium": {
1385
+ "value": {
1386
+ "fontFamily": "{fontFamilies.primary}",
1387
+ "fontWeight": "{fontWeights.w400}",
1388
+ "lineHeight": "{lineHeights.md}",
1389
+ "fontSize": "{fontSize.sm}",
1390
+ "letterSpacing": "{letterSpacing.md}",
1391
+ "paragraphSpacing": "{paragraphSpacing.none}",
1392
+ "paragraphIndent": "{paragraphIndent.none}",
1393
+ "textCase": "{textCase.none}",
1394
+ "textDecoration": "{textDecoration.none}"
1395
+ },
1396
+ "type": "typography"
1397
+ },
1398
+ "large": {
1399
+ "value": {
1400
+ "fontFamily": "{fontFamilies.primary}",
1401
+ "fontWeight": "{fontWeights.w400}",
1402
+ "lineHeight": "{lineHeights.md}",
1403
+ "fontSize": "{fontSize.md}",
1404
+ "letterSpacing": "{letterSpacing.sm}",
1405
+ "paragraphSpacing": "{paragraphSpacing.none}",
1406
+ "paragraphIndent": "{paragraphIndent.none}",
1407
+ "textCase": "{textCase.none}",
1408
+ "textDecoration": "{textDecoration.none}"
1409
+ },
1410
+ "type": "typography"
1411
+ }
1412
+ }
1413
+ },
1414
+
1415
+ "textCase": {
1416
+ "none": {
1417
+ "value": "none",
1418
+ "type": "textCase"
1419
+ }
1420
+ },
1421
+ "textDecoration": {
1422
+ "none": {
1423
+ "value": "none",
1424
+ "type": "textDecoration"
1425
+ }
1426
+ },
1427
+ "paragraphIndent": {
1428
+ "none": {
1429
+ "value": "0px",
1430
+ "type": "dimension"
1431
+ }
1432
+ },
1433
+ "lineHeights": {
1434
+ "xs": {
1435
+ "value": "110%",
1436
+ "type": "lineHeights"
1437
+ },
1438
+ "sm": {
1439
+ "value": "125%",
1440
+ "type": "lineHeights"
1441
+ },
1442
+ "md": {
1443
+ "value": "150%",
1444
+ "type": "lineHeights"
1445
+ }
1446
+ }
1447
+ },
1448
+
1449
+ "dark": {
1450
+ "specialColors": {
1451
+ "color1": {
1452
+ "value": "#00FF00",
1453
+ "type": "color"
1454
+ },
1455
+ "color2": {
1456
+ "value": "#FF0000",
1457
+ "type": "color"
1458
+ }
1459
+ },
1460
+ "sys": {
1461
+ "background": {
1462
+ "value": "{black}",
1463
+ "type": "color"
1464
+ },
1465
+ "onBackground": {
1466
+ "value": "{white}",
1467
+ "type": "color"
1468
+ },
1469
+ "primary": {
1470
+ "value": "#0000FF",
1471
+ "type": "color"
1472
+ },
1473
+ "onPrimary": {
1474
+ "value": "{white}",
1475
+ "type": "color"
1476
+ }
1477
+ }
1478
+ },
1479
+ "light": {
1480
+ "specialColors": {
1481
+ "color1": {
1482
+ "value": "#00FF00",
1483
+ "type": "color"
1484
+ },
1485
+ "color2": {
1486
+ "value": "#FF0000",
1487
+ "type": "color"
1488
+ }
1489
+ },
1490
+ "sys": {
1491
+ "background": {
1492
+ "value": "{white}",
1493
+ "type": "color"
1494
+ },
1495
+ "onBackground": {
1496
+ "value": "{black}",
1497
+ "type": "color"
1498
+ },
1499
+ "primary": {
1500
+ "value": "#0000FF",
1501
+ "type": "color"
1502
+ },
1503
+ "onPrimary": {
1504
+ "value": "{white}",
1505
+ "type": "color"
1506
+ }
1507
+ }
1508
+ },
1509
+ "$themes": [],
1510
+ "$metadata": {
1511
+ "tokenSetOrder": [
1512
+ "global",
1513
+ "dark",
1514
+ "light"
1515
+ ]
1516
+ }
1517
+ }