@automattic/vip-design-system 0.14.2 → 0.17.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 (44) hide show
  1. package/.prettierignore +1 -0
  2. package/README.md +26 -0
  3. package/build/system/Button/Button.js +9 -4
  4. package/build/system/NewConfirmationDialog/NewConfirmationDialog.js +120 -0
  5. package/build/system/NewConfirmationDialog/NewConfirmationDialog.stories.js +52 -0
  6. package/build/system/NewConfirmationDialog/NewConfirmationDialog.test.js +82 -0
  7. package/build/system/NewConfirmationDialog/index.js +7 -0
  8. package/build/system/NewDialog/DialogClose.js +26 -11
  9. package/build/system/NewDialog/DialogClose.test.js +1 -1
  10. package/build/system/NewDialog/DialogDescription.js +1 -1
  11. package/build/system/NewDialog/DialogTitle.js +1 -1
  12. package/build/system/NewDialog/NewDialog.js +13 -23
  13. package/build/system/NewDialog/NewDialog.stories.js +80 -9
  14. package/build/system/NewDialog/index.js +14 -1
  15. package/build/system/Notification/Notification.js +1 -1
  16. package/build/system/ScreenReaderText/ScreenReader.test.js +2 -2
  17. package/build/system/ScreenReaderText/ScreenReaderText.js +9 -4
  18. package/build/system/ScreenReaderText/index.js +8 -1
  19. package/build/system/index.js +12 -3
  20. package/build/system/theme/generated/valet-theme.json +2429 -0
  21. package/build/system/theme/getColor.js +3 -21
  22. package/build/system/theme/index.js +1 -1
  23. package/package.json +8 -5
  24. package/src/system/Button/Button.js +7 -3
  25. package/src/system/NewConfirmationDialog/NewConfirmationDialog.js +93 -0
  26. package/src/system/NewConfirmationDialog/NewConfirmationDialog.stories.jsx +32 -0
  27. package/src/system/NewConfirmationDialog/NewConfirmationDialog.test.js +39 -0
  28. package/src/system/NewConfirmationDialog/index.js +6 -0
  29. package/src/system/NewDialog/DialogClose.js +18 -4
  30. package/src/system/NewDialog/DialogClose.test.js +1 -1
  31. package/src/system/NewDialog/DialogDescription.js +1 -1
  32. package/src/system/NewDialog/DialogTitle.js +1 -1
  33. package/src/system/NewDialog/NewDialog.js +14 -20
  34. package/src/system/NewDialog/NewDialog.stories.jsx +55 -7
  35. package/src/system/NewDialog/index.js +7 -1
  36. package/src/system/Notification/Notification.js +1 -1
  37. package/src/system/ScreenReaderText/ScreenReader.test.js +1 -1
  38. package/src/system/ScreenReaderText/ScreenReaderText.js +24 -22
  39. package/src/system/ScreenReaderText/index.js +2 -0
  40. package/src/system/index.js +3 -1
  41. package/src/system/theme/generated/valet-theme.json +2429 -0
  42. package/src/system/theme/getColor.js +3 -19
  43. package/src/system/theme/index.js +1 -1
  44. package/tokens/valet-color.json +0 -6164
@@ -0,0 +1,2429 @@
1
+ {
2
+ "background": {
3
+ "primary": {
4
+ "type": "color",
5
+ "description": "Use as main application background",
6
+ "value": "#fbfbfb"
7
+ },
8
+ "inverse": {
9
+ "value": "#13191e",
10
+ "type": "color",
11
+ "description": "Use as component background in high-contrast situations. "
12
+ },
13
+ "brand": {
14
+ "type": "color",
15
+ "value": "#d8a45f"
16
+ }
17
+ },
18
+ "layer": {
19
+ "1": {
20
+ "type": "color",
21
+ "value": "#f4f3f2"
22
+ },
23
+ "2": {
24
+ "value": "#ffffff",
25
+ "type": "color"
26
+ },
27
+ "3": {
28
+ "type": "color",
29
+ "value": "#f4f3f2"
30
+ },
31
+ "4": {
32
+ "value": "#ffffff",
33
+ "type": "color"
34
+ },
35
+ "accent": {
36
+ "type": "color",
37
+ "value": "#d8a45f"
38
+ }
39
+ },
40
+ "field": {
41
+ "1": {
42
+ "value": "#ffffff",
43
+ "type": "color"
44
+ },
45
+ "2": {
46
+ "type": "color",
47
+ "value": "#fbfbfb"
48
+ },
49
+ "3": {
50
+ "type": "color",
51
+ "value": "#f4f3f2"
52
+ },
53
+ "4": {
54
+ "type": "color",
55
+ "value": "#ebe9e8"
56
+ }
57
+ },
58
+ "border": {
59
+ "1": {
60
+ "type": "color",
61
+ "value": "#bfbcbb"
62
+ },
63
+ "2": {
64
+ "type": "color",
65
+ "value": "#e3e0df"
66
+ },
67
+ "3": {
68
+ "type": "color",
69
+ "value": "#b3afae"
70
+ },
71
+ "4": {
72
+ "type": "color",
73
+ "value": "#bfbcbb"
74
+ },
75
+ "accent": {
76
+ "type": "color",
77
+ "value": "#ba7920"
78
+ }
79
+ },
80
+ "text": {
81
+ "primary": {
82
+ "value": "#13191e",
83
+ "type": "color",
84
+ "description": "Use for headings"
85
+ },
86
+ "secondary": {
87
+ "type": "color",
88
+ "description": "Use for body text ",
89
+ "value": "#514e4d"
90
+ },
91
+ "helper": {
92
+ "type": "color",
93
+ "description": "Use for helper text",
94
+ "value": "#6a6766"
95
+ },
96
+ "placeholder": {
97
+ "type": "color",
98
+ "description": "Use for placeholder text in fields",
99
+ "value": "#8f8c8b"
100
+ },
101
+ "disabled": {
102
+ "type": "color",
103
+ "value": "#767372"
104
+ },
105
+ "inverse": {
106
+ "type": "color",
107
+ "value": "#fbfbfb"
108
+ },
109
+ "interactive": {
110
+ "type": "color",
111
+ "value": "#9a6014"
112
+ }
113
+ },
114
+ "link": {
115
+ "default": {
116
+ "type": "color",
117
+ "description": "Use for text links",
118
+ "value": "#9a6014"
119
+ },
120
+ "hover": {
121
+ "type": "color",
122
+ "value": "#7a4909"
123
+ },
124
+ "active": {
125
+ "type": "color",
126
+ "value": "#522e03"
127
+ },
128
+ "visited": {
129
+ "type": "color",
130
+ "value": "#7a4909"
131
+ }
132
+ },
133
+ "icon": {
134
+ "primary": {
135
+ "type": "color",
136
+ "value": "#2c2a29"
137
+ },
138
+ "secondary": {
139
+ "type": "color",
140
+ "value": "#827f7e"
141
+ },
142
+ "helper": {
143
+ "type": "color",
144
+ "value": "#9b9796"
145
+ },
146
+ "inverse": {
147
+ "type": "color",
148
+ "value": "#f4f3f2"
149
+ },
150
+ "disabled": {
151
+ "type": "color",
152
+ "value": "#8f8c8b"
153
+ }
154
+ },
155
+ "button": {
156
+ "primary": {
157
+ "default": {
158
+ "value": "#13191e",
159
+ "type": "color"
160
+ },
161
+ "hover": {
162
+ "type": "color",
163
+ "value": "#767372"
164
+ }
165
+ },
166
+ "secondary": {
167
+ "default": {
168
+ "type": "color",
169
+ "value": "#f4f3f2"
170
+ },
171
+ "hover": {
172
+ "type": "color",
173
+ "value": "#ebe9e8"
174
+ }
175
+ },
176
+ "tertiary": {
177
+ "default": {
178
+ "value": "#00000000",
179
+ "type": "color"
180
+ },
181
+ "hover": {
182
+ "type": "color",
183
+ "value": "#ebe9e8"
184
+ }
185
+ }
186
+ },
187
+ "support": {
188
+ "background": {
189
+ "error": {
190
+ "type": "color",
191
+ "value": "#ffdedb"
192
+ },
193
+ "warning": {
194
+ "type": "color",
195
+ "value": "#ffe2c2"
196
+ },
197
+ "info": {
198
+ "type": "color",
199
+ "value": "#ddebf3"
200
+ },
201
+ "success": {
202
+ "type": "color",
203
+ "value": "#d7efdf"
204
+ }
205
+ },
206
+ "text": {
207
+ "error": {
208
+ "type": "color",
209
+ "value": "#5e0000"
210
+ },
211
+ "warning": {
212
+ "type": "color",
213
+ "value": "#491d00"
214
+ },
215
+ "info": {
216
+ "type": "color",
217
+ "value": "#003344"
218
+ },
219
+ "success": {
220
+ "type": "color",
221
+ "value": "#003700"
222
+ }
223
+ },
224
+ "icon": {
225
+ "error": {
226
+ "type": "color",
227
+ "value": "#e74135"
228
+ },
229
+ "warning": {
230
+ "type": "color",
231
+ "value": "#b86e01"
232
+ },
233
+ "info": {
234
+ "type": "color",
235
+ "value": "#0190a0"
236
+ },
237
+ "success": {
238
+ "type": "color",
239
+ "value": "#01944d"
240
+ }
241
+ },
242
+ "accent": {
243
+ "error": {
244
+ "type": "color",
245
+ "value": "#ff745f"
246
+ },
247
+ "warning": {
248
+ "type": "color",
249
+ "value": "#f09d01"
250
+ },
251
+ "info": {
252
+ "type": "color",
253
+ "value": "#30b5c4"
254
+ },
255
+ "success": {
256
+ "type": "color",
257
+ "value": "#40ba6f"
258
+ }
259
+ },
260
+ "link": {
261
+ "error": {
262
+ "default": {
263
+ "type": "color",
264
+ "description": "Use for text links",
265
+ "value": "#bf2a23"
266
+ },
267
+ "hover": {
268
+ "type": "color",
269
+ "value": "#9a1a19"
270
+ },
271
+ "active": {
272
+ "type": "color",
273
+ "value": "#710208"
274
+ },
275
+ "visited": {
276
+ "type": "color",
277
+ "value": "#710208"
278
+ }
279
+ },
280
+ "warning": {
281
+ "default": {
282
+ "type": "color",
283
+ "description": "Use for text links",
284
+ "value": "#985600"
285
+ },
286
+ "hover": {
287
+ "type": "color",
288
+ "value": "#7b3f01"
289
+ },
290
+ "active": {
291
+ "type": "color",
292
+ "value": "#592800"
293
+ },
294
+ "visited": {
295
+ "type": "color",
296
+ "value": "#7b3f01"
297
+ }
298
+ },
299
+ "info": {
300
+ "default": {
301
+ "type": "color",
302
+ "description": "Use for text links",
303
+ "value": "#007586"
304
+ },
305
+ "hover": {
306
+ "type": "color",
307
+ "value": "#005b6d"
308
+ },
309
+ "active": {
310
+ "type": "color",
311
+ "value": "#004252"
312
+ },
313
+ "visited": {
314
+ "type": "color",
315
+ "value": "#005b6d"
316
+ }
317
+ },
318
+ "success": {
319
+ "default": {
320
+ "type": "color",
321
+ "description": "Use for text links",
322
+ "value": "#007934"
323
+ },
324
+ "hover": {
325
+ "type": "color",
326
+ "value": "#00611e"
327
+ },
328
+ "active": {
329
+ "type": "color",
330
+ "value": "#004502"
331
+ },
332
+ "visited": {
333
+ "type": "color",
334
+ "value": "#00611e"
335
+ }
336
+ }
337
+ }
338
+ },
339
+ "focus": {
340
+ "default": {
341
+ "value": "#0F62FE",
342
+ "type": "color"
343
+ },
344
+ "inset": {
345
+ "value": "#ffffff",
346
+ "type": "color"
347
+ }
348
+ },
349
+ "overlay": {
350
+ "type": "color",
351
+ "value": "#767372"
352
+ },
353
+ "interactive": {
354
+ "type": "color",
355
+ "value": "#a66915"
356
+ },
357
+ "tag": {
358
+ "gray": {
359
+ "background": {
360
+ "type": "color",
361
+ "value": "#ebe9e8"
362
+ },
363
+ "text": {
364
+ "type": "color",
365
+ "value": "#2c2a29"
366
+ },
367
+ "icon": {
368
+ "type": "color",
369
+ "value": "#5e5b5a"
370
+ },
371
+ "hover": {
372
+ "type": "color",
373
+ "value": "#d7d4d3"
374
+ },
375
+ "active": {
376
+ "type": "color",
377
+ "value": "#cbc7c6"
378
+ }
379
+ },
380
+ "blue": {
381
+ "background": {
382
+ "type": "color",
383
+ "value": "#ddebf3"
384
+ },
385
+ "text": {
386
+ "type": "color",
387
+ "value": "#003344"
388
+ },
389
+ "icon": {
390
+ "type": "color",
391
+ "value": "#006979"
392
+ },
393
+ "hover": {
394
+ "type": "color",
395
+ "value": "#b2dde6"
396
+ },
397
+ "active": {
398
+ "type": "color",
399
+ "value": "#94d4de"
400
+ }
401
+ },
402
+ "green": {
403
+ "background": {
404
+ "type": "color",
405
+ "value": "#d7efdf"
406
+ },
407
+ "text": {
408
+ "type": "color",
409
+ "value": "#003700"
410
+ },
411
+ "icon": {
412
+ "type": "color",
413
+ "value": "#006d29"
414
+ },
415
+ "hover": {
416
+ "type": "color",
417
+ "value": "#aae1b7"
418
+ },
419
+ "active": {
420
+ "type": "color",
421
+ "value": "#89daa0"
422
+ }
423
+ },
424
+ "red": {
425
+ "background": {
426
+ "type": "color",
427
+ "value": "#ffdedb"
428
+ },
429
+ "text": {
430
+ "type": "color",
431
+ "value": "#5e0000"
432
+ },
433
+ "icon": {
434
+ "type": "color",
435
+ "value": "#ad221f"
436
+ },
437
+ "hover": {
438
+ "type": "color",
439
+ "value": "#ffc3b9"
440
+ },
441
+ "active": {
442
+ "type": "color",
443
+ "value": "#ffb0a1"
444
+ }
445
+ },
446
+ "gold": {
447
+ "background": {
448
+ "type": "color",
449
+ "value": "#eeeae5"
450
+ },
451
+ "text": {
452
+ "type": "color",
453
+ "value": "#3f2300"
454
+ },
455
+ "icon": {
456
+ "type": "color",
457
+ "value": "#8c5407"
458
+ },
459
+ "hover": {
460
+ "type": "color",
461
+ "value": "#e3d0b8"
462
+ },
463
+ "active": {
464
+ "type": "color",
465
+ "value": "#dfc39e"
466
+ }
467
+ },
468
+ "yellow": {
469
+ "background": {
470
+ "type": "color",
471
+ "value": "#ffe2c2"
472
+ },
473
+ "text": {
474
+ "type": "color",
475
+ "value": "#491d00"
476
+ },
477
+ "icon": {
478
+ "type": "color",
479
+ "value": "#894b00"
480
+ },
481
+ "hover": {
482
+ "type": "color",
483
+ "value": "#ffc876"
484
+ },
485
+ "active": {
486
+ "type": "color",
487
+ "value": "#ffb84a"
488
+ }
489
+ },
490
+ "orange": {
491
+ "background": {
492
+ "type": "color",
493
+ "value": "#ffe0cc"
494
+ },
495
+ "text": {
496
+ "type": "color",
497
+ "value": "#5f0000"
498
+ },
499
+ "icon": {
500
+ "type": "color",
501
+ "value": "#a53100"
502
+ },
503
+ "hover": {
504
+ "type": "color",
505
+ "value": "#ffc39f"
506
+ },
507
+ "active": {
508
+ "type": "color",
509
+ "value": "#ffb27e"
510
+ }
511
+ },
512
+ "salmon": {
513
+ "background": {
514
+ "type": "color",
515
+ "value": "#fedfd8"
516
+ },
517
+ "text": {
518
+ "type": "color",
519
+ "value": "#5e0010"
520
+ },
521
+ "icon": {
522
+ "type": "color",
523
+ "value": "#993c2b"
524
+ },
525
+ "hover": {
526
+ "type": "color",
527
+ "value": "#fec3b1"
528
+ },
529
+ "active": {
530
+ "type": "color",
531
+ "value": "#ffb296"
532
+ }
533
+ },
534
+ "pink": {
535
+ "background": {
536
+ "type": "color",
537
+ "value": "#ffdedb"
538
+ },
539
+ "text": {
540
+ "type": "color",
541
+ "value": "#530e2b"
542
+ },
543
+ "icon": {
544
+ "type": "color",
545
+ "value": "#894755"
546
+ },
547
+ "hover": {
548
+ "type": "color",
549
+ "value": "#ffc5c1"
550
+ },
551
+ "active": {
552
+ "type": "color",
553
+ "value": "#fbb7b4"
554
+ }
555
+ }
556
+ },
557
+ "rem": {
558
+ "value": 16,
559
+ "type": "other",
560
+ "description": "Use as the base rem value for calculations in Figma Tokens. In production all size values should be in rems, which is modifiable by the user. Since Figma Tokens doesn't support different units, we use this variable to do rem calculations. For our purposes, we're setting the rem value to 16px."
561
+ },
562
+ "fontSize": {
563
+ "description": {
564
+ "value": "In production, all fontSize units are in rems.",
565
+ "type": "other"
566
+ },
567
+ "static": {
568
+ "1": {
569
+ "value": 12,
570
+ "type": "fontSizes"
571
+ },
572
+ "2": {
573
+ "value": 14,
574
+ "type": "fontSizes"
575
+ },
576
+ "3": {
577
+ "value": 16,
578
+ "type": "fontSizes"
579
+ },
580
+ "4": {
581
+ "value": 18,
582
+ "type": "fontSizes"
583
+ },
584
+ "5": {
585
+ "value": 20,
586
+ "type": "fontSizes"
587
+ },
588
+ "description": {
589
+ "value": "these are non-responsive font sizes used for body copy, helper text and other elements that don't need to respond to viewport width.",
590
+ "type": "other"
591
+ }
592
+ },
593
+ "figma": {
594
+ "1": {
595
+ "s": {
596
+ "value": 12.34,
597
+ "type": "other"
598
+ },
599
+ "m": {
600
+ "value": 11.07,
601
+ "type": "other"
602
+ },
603
+ "l": {
604
+ "value": 9.8,
605
+ "type": "other"
606
+ },
607
+ "xl": {
608
+ "value": 9.05,
609
+ "type": "other"
610
+ },
611
+ "max": {
612
+ "value": 11.07,
613
+ "type": "other"
614
+ }
615
+ },
616
+ "2": {
617
+ "s": {
618
+ "value": 13.17,
619
+ "type": "other"
620
+ },
621
+ "m": {
622
+ "value": 12.19,
623
+ "type": "other"
624
+ },
625
+ "l": {
626
+ "value": 11.17,
627
+ "type": "other"
628
+ },
629
+ "xl": {
630
+ "value": 10.55,
631
+ "type": "other"
632
+ },
633
+ "max": {
634
+ "value": 9.84,
635
+ "type": "other"
636
+ }
637
+ },
638
+ "3": {
639
+ "s": {
640
+ "value": 14.05,
641
+ "type": "other"
642
+ },
643
+ "m": {
644
+ "value": 13.42,
645
+ "type": "other"
646
+ },
647
+ "l": {
648
+ "value": 12.74,
649
+ "type": "other"
650
+ },
651
+ "xl": {
652
+ "value": 12.31,
653
+ "type": "other"
654
+ },
655
+ "max": {
656
+ "value": 11.81,
657
+ "type": "other"
658
+ }
659
+ },
660
+ "4": {
661
+ "s": {
662
+ "value": 15,
663
+ "type": "other"
664
+ },
665
+ "m": {
666
+ "value": 14.77,
667
+ "type": "other"
668
+ },
669
+ "l": {
670
+ "value": 14.52,
671
+ "type": "other"
672
+ },
673
+ "xl": {
674
+ "value": 14.36,
675
+ "type": "other"
676
+ },
677
+ "max": {
678
+ "value": 14.17,
679
+ "type": "other"
680
+ }
681
+ },
682
+ "5": {
683
+ "s": {
684
+ "value": 16,
685
+ "type": "other"
686
+ },
687
+ "m": {
688
+ "value": 16.25,
689
+ "type": "other"
690
+ },
691
+ "l": {
692
+ "value": 16.55,
693
+ "type": "other"
694
+ },
695
+ "xl": {
696
+ "value": 16.75,
697
+ "type": "other"
698
+ },
699
+ "max": {
700
+ "value": 17,
701
+ "type": "other"
702
+ }
703
+ },
704
+ "6": {
705
+ "s": {
706
+ "value": 17.07,
707
+ "type": "other"
708
+ },
709
+ "m": {
710
+ "value": 17.89,
711
+ "type": "other"
712
+ },
713
+ "l": {
714
+ "value": 18.86,
715
+ "type": "other"
716
+ },
717
+ "xl": {
718
+ "value": 19.53,
719
+ "type": "other"
720
+ },
721
+ "max": {
722
+ "value": 20.4,
723
+ "type": "other"
724
+ }
725
+ },
726
+ "7": {
727
+ "s": {
728
+ "value": 18.22,
729
+ "type": "other"
730
+ },
731
+ "m": {
732
+ "value": 19.69,
733
+ "type": "other"
734
+ },
735
+ "l": {
736
+ "value": 21.5,
737
+ "type": "other"
738
+ },
739
+ "xl": {
740
+ "value": 22.78,
741
+ "type": "other"
742
+ },
743
+ "max": {
744
+ "value": 24.48,
745
+ "type": "other"
746
+ }
747
+ },
748
+ "8": {
749
+ "s": {
750
+ "value": 19.44,
751
+ "type": "other"
752
+ },
753
+ "m": {
754
+ "value": 21.67,
755
+ "type": "other"
756
+ },
757
+ "l": {
758
+ "value": 24.51,
759
+ "type": "other"
760
+ },
761
+ "xl": {
762
+ "value": 26.57,
763
+ "type": "other"
764
+ },
765
+ "max": {
766
+ "value": 29.38,
767
+ "type": "other"
768
+ }
769
+ },
770
+ "9": {
771
+ "s": {
772
+ "value": 20.74,
773
+ "type": "other"
774
+ },
775
+ "m": {
776
+ "value": 23.85,
777
+ "type": "other"
778
+ },
779
+ "l": {
780
+ "value": 27.94,
781
+ "type": "other"
782
+ },
783
+ "xl": {
784
+ "value": 30.99,
785
+ "type": "other"
786
+ },
787
+ "max": {
788
+ "value": 35.25,
789
+ "type": "other"
790
+ }
791
+ },
792
+ "10": {
793
+ "s": {
794
+ "value": 22.13,
795
+ "type": "other"
796
+ },
797
+ "m": {
798
+ "value": 26.25,
799
+ "type": "other"
800
+ },
801
+ "l": {
802
+ "value": 31.85,
803
+ "type": "other"
804
+ },
805
+ "xl": {
806
+ "value": 36.15,
807
+ "type": "other"
808
+ },
809
+ "max": {
810
+ "value": 42.3,
811
+ "type": "other"
812
+ }
813
+ },
814
+ "11": {
815
+ "s": {
816
+ "value": 23.61,
817
+ "type": "other"
818
+ },
819
+ "m": {
820
+ "value": 28.9,
821
+ "type": "other"
822
+ },
823
+ "l": {
824
+ "value": 36.31,
825
+ "type": "other"
826
+ },
827
+ "xl": {
828
+ "value": 42.16,
829
+ "type": "other"
830
+ },
831
+ "max": {
832
+ "value": 50.76,
833
+ "type": "other"
834
+ }
835
+ },
836
+ "12": {
837
+ "s": {
838
+ "value": 25.19,
839
+ "type": "other"
840
+ },
841
+ "m": {
842
+ "value": 31.8,
843
+ "type": "other"
844
+ },
845
+ "l": {
846
+ "value": 41.39,
847
+ "type": "other"
848
+ },
849
+ "xl": {
850
+ "value": 49.17,
851
+ "type": "other"
852
+ },
853
+ "max": {
854
+ "value": 60.91,
855
+ "type": "other"
856
+ }
857
+ },
858
+ "13": {
859
+ "s": {
860
+ "value": 26.88,
861
+ "type": "other"
862
+ },
863
+ "m": {
864
+ "value": 35,
865
+ "type": "other"
866
+ },
867
+ "l": {
868
+ "value": 47.18,
869
+ "type": "other"
870
+ },
871
+ "xl": {
872
+ "value": 57.35,
873
+ "type": "other"
874
+ },
875
+ "max": {
876
+ "value": 73.1,
877
+ "type": "other"
878
+ }
879
+ },
880
+ "14": {
881
+ "s": {
882
+ "value": 28.68,
883
+ "type": "other"
884
+ },
885
+ "m": {
886
+ "value": 38.53,
887
+ "type": "other"
888
+ },
889
+ "l": {
890
+ "value": 53.78,
891
+ "type": "other"
892
+ },
893
+ "xl": {
894
+ "value": 66.9,
895
+ "type": "other"
896
+ },
897
+ "max": {
898
+ "value": 87.72,
899
+ "type": "other"
900
+ }
901
+ },
902
+ "15": {
903
+ "s": {
904
+ "value": 30.6,
905
+ "type": "other"
906
+ },
907
+ "m": {
908
+ "value": 42.41,
909
+ "type": "other"
910
+ },
911
+ "l": {
912
+ "value": 61.3,
913
+ "type": "other"
914
+ },
915
+ "xl": {
916
+ "value": 78.02,
917
+ "type": "other"
918
+ },
919
+ "max": {
920
+ "value": 105.26,
921
+ "type": "other"
922
+ }
923
+ },
924
+ "description": {
925
+ "value": "All of these fontSizes.figma tokens are used exclusively for convenience in Figma. We use them to generate the suite of styles we use in Figma and correspond to the screen size values in breakpoints. They are a representation of the dynamic sizes generated by the clamp functions in the fontSizes.dynamic object",
926
+ "type": "other"
927
+ }
928
+ },
929
+ "dynamic": {
930
+ "1": {
931
+ "value": "clamp(0.51rem, calc(0.83rem + -0.31vw), 0.77rem)",
932
+ "type": "fontSizes"
933
+ },
934
+ "2": {
935
+ "value": "clamp(0.62rem, calc(0.87rem + -0.25vw), 0.82rem)",
936
+ "type": "fontSizes"
937
+ },
938
+ "3": {
939
+ "value": "clamp(0.74rem, calc(0.91rem + -0.17vw), 0.88rem)",
940
+ "type": "fontSizes"
941
+ },
942
+ "4": {
943
+ "value": "clamp(0.89rem, calc(0.95rem + -0.06vw), 0.94rem)",
944
+ "type": "fontSizes"
945
+ },
946
+ "5": {
947
+ "value": "clamp(1.00rem, calc(0.98rem + 0.08vw), 1.06rem)",
948
+ "type": "fontSizes"
949
+ },
950
+ "6": {
951
+ "value": "clamp(1.07rem, calc(1.02rem + 0.25vw), 1.28rem)",
952
+ "type": "fontSizes"
953
+ },
954
+ "7": {
955
+ "value": "clamp(1.14rem, calc(1.04rem + 0.47vw), 1.53rem)",
956
+ "type": "fontSizes"
957
+ },
958
+ "8": {
959
+ "value": "clamp(1.22rem, calc(1.07rem + 0.75vw), 1.84rem)",
960
+ "type": "fontSizes"
961
+ },
962
+ "9": {
963
+ "value": "clamp(1.30rem, calc(1.08rem + 1.09vw), 2.20rem)",
964
+ "type": "fontSizes"
965
+ },
966
+ "10": {
967
+ "value": "clamp(1.38rem, calc(1.08rem + 1.52vw), 2.64rem)",
968
+ "type": "fontSizes"
969
+ },
970
+ "11": {
971
+ "value": "clamp(1.48rem, calc(1.07rem + 2.04vw), 3.17rem)",
972
+ "type": "fontSizes"
973
+ },
974
+ "12": {
975
+ "value": "clamp(1.57rem, calc(1.04rem + 2.69vw), 3.81rem)",
976
+ "type": "fontSizes"
977
+ },
978
+ "13": {
979
+ "value": "clamp(1.68rem, calc(0.98rem + 3.48vw), 4.57rem)",
980
+ "type": "fontSizes"
981
+ },
982
+ "14": {
983
+ "value": "clamp(1.79rem, calc(0.90rem + 4.45vw), 5.48rem)",
984
+ "type": "fontSizes"
985
+ },
986
+ "15": {
987
+ "value": "clamp(1.91rem, calc(0.79rem + 5.62vw), 6.58rem)",
988
+ "type": "fontSizes"
989
+ },
990
+ "description": {
991
+ "value": "These are the formulas that generate the responsive type sizes in production. Calculations like this aren't supported in Figma so we use the manually calculated fontSizes.figma tokens to generate a suite of styles that approximate the font size at our standard breakpoints.",
992
+ "type": "other"
993
+ }
994
+ }
995
+ },
996
+ "borderRadius": {
997
+ "1": {
998
+ "value": 4,
999
+ "type": "borderRadius"
1000
+ },
1001
+ "2": {
1002
+ "value": 8,
1003
+ "type": "borderRadius"
1004
+ },
1005
+ "3": {
1006
+ "value": 16,
1007
+ "type": "borderRadius"
1008
+ },
1009
+ "4": {
1010
+ "value": 28,
1011
+ "type": "borderRadius"
1012
+ },
1013
+ "5": {
1014
+ "value": 32,
1015
+ "type": "borderRadius"
1016
+ },
1017
+ "6": {
1018
+ "value": 40,
1019
+ "type": "borderRadius"
1020
+ },
1021
+ "7": {
1022
+ "value": 56,
1023
+ "type": "borderRadius"
1024
+ },
1025
+ "description": {
1026
+ "value": "In production, all units are in rems.",
1027
+ "type": "other"
1028
+ }
1029
+ },
1030
+ "space": {
1031
+ "description": {
1032
+ "value": "In production, all units are in rems.",
1033
+ "type": "other"
1034
+ },
1035
+ "static": {
1036
+ "1": {
1037
+ "value": 4,
1038
+ "type": "spacing"
1039
+ },
1040
+ "2": {
1041
+ "value": 8,
1042
+ "type": "spacing"
1043
+ },
1044
+ "3": {
1045
+ "value": 12,
1046
+ "type": "spacing"
1047
+ },
1048
+ "4": {
1049
+ "value": 16,
1050
+ "type": "spacing"
1051
+ },
1052
+ "5": {
1053
+ "value": 24,
1054
+ "type": "spacing"
1055
+ },
1056
+ "6": {
1057
+ "value": 32,
1058
+ "type": "spacing"
1059
+ },
1060
+ "7": {
1061
+ "value": 54.08,
1062
+ "type": "spacing"
1063
+ },
1064
+ "8": {
1065
+ "value": 80,
1066
+ "type": "spacing"
1067
+ },
1068
+ "9": {
1069
+ "value": 122.08,
1070
+ "type": "spacing"
1071
+ },
1072
+ "10": {
1073
+ "value": 182.08,
1074
+ "type": "spacing"
1075
+ },
1076
+ "11": {
1077
+ "value": 272,
1078
+ "type": "spacing"
1079
+ }
1080
+ }
1081
+ },
1082
+ "shadow": {
1083
+ "description": {
1084
+ "value": "These are our 3 drop shadow styles. All number values here are in px.",
1085
+ "type": "other"
1086
+ },
1087
+ "high": {
1088
+ "value": [
1089
+ {
1090
+ "color": "#00000005",
1091
+ "type": "dropShadow",
1092
+ "x": 0,
1093
+ "y": 2.767,
1094
+ "blur": 2.214,
1095
+ "spread": 0
1096
+ },
1097
+ {
1098
+ "color": "#00000008",
1099
+ "type": "dropShadow",
1100
+ "x": 0,
1101
+ "y": 6.65,
1102
+ "blur": 5.32,
1103
+ "spread": 0
1104
+ },
1105
+ {
1106
+ "color": "#0000000a",
1107
+ "type": "dropShadow",
1108
+ "x": 0,
1109
+ "y": 12.522,
1110
+ "blur": 10.017,
1111
+ "spread": 0
1112
+ },
1113
+ {
1114
+ "color": "#0000000a",
1115
+ "type": "dropShadow",
1116
+ "x": 0,
1117
+ "y": 22.336,
1118
+ "blur": 17.869,
1119
+ "spread": 0
1120
+ },
1121
+ {
1122
+ "color": "#0000000d",
1123
+ "type": "dropShadow",
1124
+ "x": 0,
1125
+ "y": 41.778,
1126
+ "blur": 33.422,
1127
+ "spread": 0
1128
+ },
1129
+ {
1130
+ "color": "#00000012",
1131
+ "type": "dropShadow",
1132
+ "x": 0,
1133
+ "y": 100,
1134
+ "blur": 80,
1135
+ "spread": 0
1136
+ }
1137
+ ],
1138
+ "type": "boxShadow"
1139
+ },
1140
+ "medium": {
1141
+ "value": [
1142
+ {
1143
+ "color": "#00000008",
1144
+ "type": "dropShadow",
1145
+ "x": 0,
1146
+ "y": 1,
1147
+ "blur": 2,
1148
+ "spread": 0
1149
+ },
1150
+ {
1151
+ "color": "#00000012",
1152
+ "type": "dropShadow",
1153
+ "x": 0,
1154
+ "y": 15,
1155
+ "blur": 30,
1156
+ "spread": 0
1157
+ }
1158
+ ],
1159
+ "type": "boxShadow"
1160
+ },
1161
+ "low": {
1162
+ "value": [
1163
+ {
1164
+ "color": "#00000026",
1165
+ "type": "dropShadow",
1166
+ "x": 0,
1167
+ "y": 1,
1168
+ "blur": 1,
1169
+ "spread": 0
1170
+ },
1171
+ {
1172
+ "color": "#0000000d",
1173
+ "type": "dropShadow",
1174
+ "x": 0,
1175
+ "y": 1,
1176
+ "blur": 5,
1177
+ "spread": 0
1178
+ }
1179
+ ],
1180
+ "type": "boxShadow"
1181
+ }
1182
+ },
1183
+ "fontFamily": {
1184
+ "sans": {
1185
+ "value": "-apple-system,BlinkMacSystemFont,\"Segoe UI\",Roboto,Oxygen-Sans,Ubuntu,Cantarell,\"Helvetica Neue\",sans-serif",
1186
+ "type": "fontFamilies",
1187
+ "description": "Use as primary sans serif across applications"
1188
+ },
1189
+ "serif": {
1190
+ "value": "-apple-system,BlinkMacSystemFont,\"Segoe UI\",Roboto,Oxygen-Sans,Ubuntu,Cantarell,\"Helvetica Neue\",sans-serif",
1191
+ "type": "fontFamilies",
1192
+ "description": "Use as primary text serif in long-form reading applications"
1193
+ },
1194
+ "display": {
1195
+ "value": "-apple-system,BlinkMacSystemFont,\"Segoe UI\",Roboto,Oxygen-Sans,Ubuntu,Cantarell,\"Helvetica Neue\",sans-serif",
1196
+ "type": "fontFamilies",
1197
+ "description": "Use as primary brand display font"
1198
+ },
1199
+ "accent": {
1200
+ "value": "-apple-system,BlinkMacSystemFont,\"Segoe UI\",Roboto,Oxygen-Sans,Ubuntu,Cantarell,\"Helvetica Neue\",sans-serif",
1201
+ "type": "fontFamilies",
1202
+ "description": "Use as accent font"
1203
+ }
1204
+ },
1205
+ "lineHeight": {
1206
+ "1": {
1207
+ "value": "110%",
1208
+ "type": "lineHeights",
1209
+ "description": "Use only for display."
1210
+ },
1211
+ "2": {
1212
+ "value": "120%",
1213
+ "type": "lineHeights",
1214
+ "description": "Use for larger headings."
1215
+ },
1216
+ "3": {
1217
+ "value": "130%",
1218
+ "type": "lineHeights",
1219
+ "description": "Use for small and medium sized headings."
1220
+ },
1221
+ "4": {
1222
+ "value": "140%",
1223
+ "type": "lineHeights",
1224
+ "description": "Use for body-sized text"
1225
+ },
1226
+ "5": {
1227
+ "value": "150%",
1228
+ "type": "lineHeights",
1229
+ "description": "Use for body-sized text in long-form reading applications."
1230
+ },
1231
+ "description": {
1232
+ "value": "In production, all units are in %.",
1233
+ "type": "other"
1234
+ }
1235
+ },
1236
+ "fontWeight": {
1237
+ "regular": {
1238
+ "value": "Regular",
1239
+ "type": "fontWeights"
1240
+ },
1241
+ "medium": {
1242
+ "value": "Medium",
1243
+ "type": "fontWeights"
1244
+ },
1245
+ "bold": {
1246
+ "value": "Bold",
1247
+ "type": "fontWeights"
1248
+ },
1249
+ "light": {
1250
+ "value": "Light",
1251
+ "type": "fontWeights"
1252
+ }
1253
+ },
1254
+ "letterSpacing": {
1255
+ "description": {
1256
+ "value": "In production, all units are in %.",
1257
+ "type": "other"
1258
+ },
1259
+ "none": {
1260
+ "value": "0%",
1261
+ "type": "letterSpacing"
1262
+ },
1263
+ "tight": {
1264
+ "value": "-1%",
1265
+ "type": "letterSpacing"
1266
+ },
1267
+ "loose": {
1268
+ "value": "3%",
1269
+ "type": "letterSpacing"
1270
+ }
1271
+ },
1272
+ "paragraphSpacing": {
1273
+ "description": {
1274
+ "value": "In production, all units are in rems.",
1275
+ "type": "other"
1276
+ },
1277
+ "none": {
1278
+ "value": 0,
1279
+ "type": "paragraphSpacing"
1280
+ }
1281
+ },
1282
+ "textCase": {
1283
+ "none": {
1284
+ "value": "none",
1285
+ "type": "textCase"
1286
+ },
1287
+ "uppercase": {
1288
+ "value": "uppercase",
1289
+ "type": "textCase"
1290
+ },
1291
+ "capitalize": {
1292
+ "value": "capitalize",
1293
+ "type": "textCase"
1294
+ }
1295
+ },
1296
+ "textDecoration": {
1297
+ "none": {
1298
+ "value": "none",
1299
+ "type": "textDecoration"
1300
+ },
1301
+ "underline": {
1302
+ "value": "underline",
1303
+ "type": "textDecoration"
1304
+ },
1305
+ "strikethrough": {
1306
+ "value": "line-through",
1307
+ "type": "textDecoration"
1308
+ }
1309
+ },
1310
+ "color": {
1311
+ "black": {
1312
+ "value": "#13191e",
1313
+ "type": "color"
1314
+ },
1315
+ "pure-white": {
1316
+ "value": "#ffffff",
1317
+ "type": "color"
1318
+ },
1319
+ "pure-black": {
1320
+ "value": "#000000",
1321
+ "type": "color"
1322
+ },
1323
+ "focus": {
1324
+ "value": "#0F62FE",
1325
+ "type": "color"
1326
+ },
1327
+ "gold": {
1328
+ "0": {
1329
+ "value": "#fcfafa",
1330
+ "type": "color"
1331
+ },
1332
+ "3": {
1333
+ "value": "#f5f2f1",
1334
+ "type": "color"
1335
+ },
1336
+ "7": {
1337
+ "value": "#eeeae5",
1338
+ "type": "color"
1339
+ },
1340
+ "10": {
1341
+ "value": "#eae3da",
1342
+ "type": "color"
1343
+ },
1344
+ "15": {
1345
+ "value": "#e3d0b8",
1346
+ "type": "color"
1347
+ },
1348
+ "20": {
1349
+ "value": "#dfc39e",
1350
+ "type": "color"
1351
+ },
1352
+ "25": {
1353
+ "value": "#dcb480",
1354
+ "type": "color"
1355
+ },
1356
+ "30": {
1357
+ "value": "#d8a45f",
1358
+ "type": "color"
1359
+ },
1360
+ "35": {
1361
+ "value": "#da9a45",
1362
+ "type": "color"
1363
+ },
1364
+ "40": {
1365
+ "value": "#d29137",
1366
+ "type": "color"
1367
+ },
1368
+ "45": {
1369
+ "value": "#c5832a",
1370
+ "type": "color"
1371
+ },
1372
+ "50": {
1373
+ "value": "#ba7920",
1374
+ "type": "color"
1375
+ },
1376
+ "55": {
1377
+ "value": "#a66915",
1378
+ "type": "color"
1379
+ },
1380
+ "60": {
1381
+ "value": "#9a6014",
1382
+ "type": "color"
1383
+ },
1384
+ "65": {
1385
+ "value": "#8c5407",
1386
+ "type": "color"
1387
+ },
1388
+ "70": {
1389
+ "value": "#7a4909",
1390
+ "type": "color"
1391
+ },
1392
+ "73": {
1393
+ "value": "#6d4108",
1394
+ "type": "color"
1395
+ },
1396
+ "75": {
1397
+ "value": "#633a0a",
1398
+ "type": "color"
1399
+ },
1400
+ "78": {
1401
+ "value": "#583409",
1402
+ "type": "color"
1403
+ },
1404
+ "80": {
1405
+ "value": "#522e03",
1406
+ "type": "color"
1407
+ },
1408
+ "83": {
1409
+ "value": "#4a2903",
1410
+ "type": "color"
1411
+ },
1412
+ "85": {
1413
+ "value": "#3f2300",
1414
+ "type": "color"
1415
+ },
1416
+ "88": {
1417
+ "value": "#331c00",
1418
+ "type": "color"
1419
+ },
1420
+ "90": {
1421
+ "value": "#2d1803",
1422
+ "type": "color"
1423
+ },
1424
+ "93": {
1425
+ "value": "#211202",
1426
+ "type": "color"
1427
+ },
1428
+ "95": {
1429
+ "value": "#1a0e04",
1430
+ "type": "color"
1431
+ },
1432
+ "100": {
1433
+ "value": "#0f0000",
1434
+ "type": "color"
1435
+ }
1436
+ },
1437
+ "gray": {
1438
+ "0": {
1439
+ "value": "#fbfbfb",
1440
+ "type": "color"
1441
+ },
1442
+ "3": {
1443
+ "value": "#f4f3f2",
1444
+ "type": "color"
1445
+ },
1446
+ "7": {
1447
+ "value": "#ebe9e8",
1448
+ "type": "color"
1449
+ },
1450
+ "10": {
1451
+ "value": "#e3e0df",
1452
+ "type": "color"
1453
+ },
1454
+ "15": {
1455
+ "value": "#d7d4d3",
1456
+ "type": "color"
1457
+ },
1458
+ "20": {
1459
+ "value": "#cbc7c6",
1460
+ "type": "color"
1461
+ },
1462
+ "25": {
1463
+ "value": "#bfbcbb",
1464
+ "type": "color"
1465
+ },
1466
+ "30": {
1467
+ "value": "#b3afae",
1468
+ "type": "color"
1469
+ },
1470
+ "35": {
1471
+ "value": "#a7a4a3",
1472
+ "type": "color"
1473
+ },
1474
+ "40": {
1475
+ "value": "#9b9796",
1476
+ "type": "color"
1477
+ },
1478
+ "45": {
1479
+ "value": "#8f8c8b",
1480
+ "type": "color"
1481
+ },
1482
+ "50": {
1483
+ "value": "#827f7e",
1484
+ "type": "color"
1485
+ },
1486
+ "55": {
1487
+ "value": "#767372",
1488
+ "type": "color"
1489
+ },
1490
+ "60": {
1491
+ "value": "#6a6766",
1492
+ "type": "color"
1493
+ },
1494
+ "65": {
1495
+ "value": "#5e5b5a",
1496
+ "type": "color"
1497
+ },
1498
+ "70": {
1499
+ "value": "#514e4d",
1500
+ "type": "color"
1501
+ },
1502
+ "73": {
1503
+ "value": "#4c4948",
1504
+ "type": "color"
1505
+ },
1506
+ "75": {
1507
+ "value": "#444140",
1508
+ "type": "color"
1509
+ },
1510
+ "78": {
1511
+ "value": "#3f3c3b",
1512
+ "type": "color"
1513
+ },
1514
+ "80": {
1515
+ "value": "#383635",
1516
+ "type": "color"
1517
+ },
1518
+ "83": {
1519
+ "value": "#32302f",
1520
+ "type": "color"
1521
+ },
1522
+ "85": {
1523
+ "value": "#2c2a29",
1524
+ "type": "color"
1525
+ },
1526
+ "88": {
1527
+ "value": "#282625",
1528
+ "type": "color"
1529
+ },
1530
+ "90": {
1531
+ "value": "#201e1d",
1532
+ "type": "color"
1533
+ },
1534
+ "93": {
1535
+ "value": "#1b1918",
1536
+ "type": "color"
1537
+ },
1538
+ "95": {
1539
+ "value": "#141110",
1540
+ "type": "color"
1541
+ },
1542
+ "100": {
1543
+ "value": "#080402",
1544
+ "type": "color"
1545
+ }
1546
+ },
1547
+ "green": {
1548
+ "0": {
1549
+ "value": "#f5fbf7",
1550
+ "type": "color"
1551
+ },
1552
+ "3": {
1553
+ "value": "#e9f6ee",
1554
+ "type": "color"
1555
+ },
1556
+ "7": {
1557
+ "value": "#d7efdf",
1558
+ "type": "color"
1559
+ },
1560
+ "10": {
1561
+ "value": "#c6ead0",
1562
+ "type": "color"
1563
+ },
1564
+ "15": {
1565
+ "value": "#aae1b7",
1566
+ "type": "color"
1567
+ },
1568
+ "20": {
1569
+ "value": "#89daa0",
1570
+ "type": "color"
1571
+ },
1572
+ "25": {
1573
+ "value": "#6dd18b",
1574
+ "type": "color"
1575
+ },
1576
+ "30": {
1577
+ "value": "#4dc679",
1578
+ "type": "color"
1579
+ },
1580
+ "35": {
1581
+ "value": "#40ba6f",
1582
+ "type": "color"
1583
+ },
1584
+ "40": {
1585
+ "value": "#30ac63",
1586
+ "type": "color"
1587
+ },
1588
+ "45": {
1589
+ "value": "#1da158",
1590
+ "type": "color"
1591
+ },
1592
+ "50": {
1593
+ "value": "#01944d",
1594
+ "type": "color"
1595
+ },
1596
+ "55": {
1597
+ "value": "#008840",
1598
+ "type": "color"
1599
+ },
1600
+ "60": {
1601
+ "value": "#007934",
1602
+ "type": "color"
1603
+ },
1604
+ "65": {
1605
+ "value": "#006d29",
1606
+ "type": "color"
1607
+ },
1608
+ "70": {
1609
+ "value": "#00611e",
1610
+ "type": "color"
1611
+ },
1612
+ "73": {
1613
+ "value": "#005710",
1614
+ "type": "color"
1615
+ },
1616
+ "75": {
1617
+ "value": "#00510f",
1618
+ "type": "color"
1619
+ },
1620
+ "78": {
1621
+ "value": "#004c03",
1622
+ "type": "color"
1623
+ },
1624
+ "80": {
1625
+ "value": "#004502",
1626
+ "type": "color"
1627
+ },
1628
+ "83": {
1629
+ "value": "#003d00",
1630
+ "type": "color"
1631
+ },
1632
+ "85": {
1633
+ "value": "#003700",
1634
+ "type": "color"
1635
+ },
1636
+ "88": {
1637
+ "value": "#013300",
1638
+ "type": "color"
1639
+ },
1640
+ "90": {
1641
+ "value": "#012c00",
1642
+ "type": "color"
1643
+ },
1644
+ "93": {
1645
+ "value": "#012400",
1646
+ "type": "color"
1647
+ },
1648
+ "95": {
1649
+ "value": "#011b00",
1650
+ "type": "color"
1651
+ },
1652
+ "100": {
1653
+ "value": "#010800",
1654
+ "type": "color"
1655
+ }
1656
+ },
1657
+ "blue": {
1658
+ "0": {
1659
+ "value": "#fafbff",
1660
+ "type": "color"
1661
+ },
1662
+ "3": {
1663
+ "value": "#ecf4f8",
1664
+ "type": "color"
1665
+ },
1666
+ "7": {
1667
+ "value": "#ddebf3",
1668
+ "type": "color"
1669
+ },
1670
+ "10": {
1671
+ "value": "#cde6eb",
1672
+ "type": "color"
1673
+ },
1674
+ "15": {
1675
+ "value": "#b2dde6",
1676
+ "type": "color"
1677
+ },
1678
+ "20": {
1679
+ "value": "#94d4de",
1680
+ "type": "color"
1681
+ },
1682
+ "25": {
1683
+ "value": "#77cad8",
1684
+ "type": "color"
1685
+ },
1686
+ "30": {
1687
+ "value": "#54c0cd",
1688
+ "type": "color"
1689
+ },
1690
+ "35": {
1691
+ "value": "#30b5c4",
1692
+ "type": "color"
1693
+ },
1694
+ "40": {
1695
+ "value": "#19a8b8",
1696
+ "type": "color"
1697
+ },
1698
+ "45": {
1699
+ "value": "#009bad",
1700
+ "type": "color"
1701
+ },
1702
+ "50": {
1703
+ "value": "#0190a0",
1704
+ "type": "color"
1705
+ },
1706
+ "55": {
1707
+ "value": "#008292",
1708
+ "type": "color"
1709
+ },
1710
+ "60": {
1711
+ "value": "#007586",
1712
+ "type": "color"
1713
+ },
1714
+ "65": {
1715
+ "value": "#006979",
1716
+ "type": "color"
1717
+ },
1718
+ "70": {
1719
+ "value": "#005b6d",
1720
+ "type": "color"
1721
+ },
1722
+ "73": {
1723
+ "value": "#005366",
1724
+ "type": "color"
1725
+ },
1726
+ "75": {
1727
+ "value": "#004d5f",
1728
+ "type": "color"
1729
+ },
1730
+ "78": {
1731
+ "value": "#004657",
1732
+ "type": "color"
1733
+ },
1734
+ "80": {
1735
+ "value": "#004252",
1736
+ "type": "color"
1737
+ },
1738
+ "83": {
1739
+ "value": "#00394d",
1740
+ "type": "color"
1741
+ },
1742
+ "85": {
1743
+ "value": "#003344",
1744
+ "type": "color"
1745
+ },
1746
+ "88": {
1747
+ "value": "#012e41",
1748
+ "type": "color"
1749
+ },
1750
+ "90": {
1751
+ "value": "#012839",
1752
+ "type": "color"
1753
+ },
1754
+ "93": {
1755
+ "value": "#002233",
1756
+ "type": "color"
1757
+ },
1758
+ "95": {
1759
+ "value": "#001c2a",
1760
+ "type": "color"
1761
+ },
1762
+ "100": {
1763
+ "value": "#000a23",
1764
+ "type": "color"
1765
+ }
1766
+ },
1767
+ "pink": {
1768
+ "0": {
1769
+ "value": "#fff8f6",
1770
+ "type": "color"
1771
+ },
1772
+ "3": {
1773
+ "value": "#fff1f0",
1774
+ "type": "color"
1775
+ },
1776
+ "7": {
1777
+ "value": "#ffdedb",
1778
+ "type": "color"
1779
+ },
1780
+ "10": {
1781
+ "value": "#ffd6d2",
1782
+ "type": "color"
1783
+ },
1784
+ "15": {
1785
+ "value": "#ffc5c1",
1786
+ "type": "color"
1787
+ },
1788
+ "20": {
1789
+ "value": "#fbb7b4",
1790
+ "type": "color"
1791
+ },
1792
+ "25": {
1793
+ "value": "#efaba8",
1794
+ "type": "color"
1795
+ },
1796
+ "30": {
1797
+ "value": "#e29e9d",
1798
+ "type": "color"
1799
+ },
1800
+ "35": {
1801
+ "value": "#d49294",
1802
+ "type": "color"
1803
+ },
1804
+ "40": {
1805
+ "value": "#ca8588",
1806
+ "type": "color"
1807
+ },
1808
+ "45": {
1809
+ "value": "#bc7a7e",
1810
+ "type": "color"
1811
+ },
1812
+ "50": {
1813
+ "value": "#b06d74",
1814
+ "type": "color"
1815
+ },
1816
+ "55": {
1817
+ "value": "#a35f6a",
1818
+ "type": "color"
1819
+ },
1820
+ "60": {
1821
+ "value": "#95535d",
1822
+ "type": "color"
1823
+ },
1824
+ "65": {
1825
+ "value": "#894755",
1826
+ "type": "color"
1827
+ },
1828
+ "70": {
1829
+ "value": "#7c394a",
1830
+ "type": "color"
1831
+ },
1832
+ "73": {
1833
+ "value": "#763247",
1834
+ "type": "color"
1835
+ },
1836
+ "75": {
1837
+ "value": "#6d293e",
1838
+ "type": "color"
1839
+ },
1840
+ "78": {
1841
+ "value": "#66243a",
1842
+ "type": "color"
1843
+ },
1844
+ "80": {
1845
+ "value": "#5f1e34",
1846
+ "type": "color"
1847
+ },
1848
+ "83": {
1849
+ "value": "#5a1633",
1850
+ "type": "color"
1851
+ },
1852
+ "85": {
1853
+ "value": "#530e2b",
1854
+ "type": "color"
1855
+ },
1856
+ "88": {
1857
+ "value": "#4a0825",
1858
+ "type": "color"
1859
+ },
1860
+ "90": {
1861
+ "value": "#45001f",
1862
+ "type": "color"
1863
+ },
1864
+ "93": {
1865
+ "value": "#3d0015",
1866
+ "type": "color"
1867
+ },
1868
+ "95": {
1869
+ "value": "#350012",
1870
+ "type": "color"
1871
+ },
1872
+ "100": {
1873
+ "value": "#2e0003",
1874
+ "type": "color"
1875
+ }
1876
+ },
1877
+ "salmon": {
1878
+ "0": {
1879
+ "value": "#fef8f8",
1880
+ "type": "color"
1881
+ },
1882
+ "3": {
1883
+ "value": "#feefeb",
1884
+ "type": "color"
1885
+ },
1886
+ "7": {
1887
+ "value": "#fedfd8",
1888
+ "type": "color"
1889
+ },
1890
+ "10": {
1891
+ "value": "#fed6ce",
1892
+ "type": "color"
1893
+ },
1894
+ "15": {
1895
+ "value": "#fec3b1",
1896
+ "type": "color"
1897
+ },
1898
+ "20": {
1899
+ "value": "#ffb296",
1900
+ "type": "color"
1901
+ },
1902
+ "25": {
1903
+ "value": "#ffa378",
1904
+ "type": "color"
1905
+ },
1906
+ "30": {
1907
+ "value": "#f9945e",
1908
+ "type": "color"
1909
+ },
1910
+ "35": {
1911
+ "value": "#ed8955",
1912
+ "type": "color"
1913
+ },
1914
+ "40": {
1915
+ "value": "#e07b4d",
1916
+ "type": "color"
1917
+ },
1918
+ "45": {
1919
+ "value": "#d27146",
1920
+ "type": "color"
1921
+ },
1922
+ "50": {
1923
+ "value": "#c5653f",
1924
+ "type": "color"
1925
+ },
1926
+ "55": {
1927
+ "value": "#b55638",
1928
+ "type": "color"
1929
+ },
1930
+ "60": {
1931
+ "value": "#a74930",
1932
+ "type": "color"
1933
+ },
1934
+ "65": {
1935
+ "value": "#993c2b",
1936
+ "type": "color"
1937
+ },
1938
+ "70": {
1939
+ "value": "#892f26",
1940
+ "type": "color"
1941
+ },
1942
+ "73": {
1943
+ "value": "#842724",
1944
+ "type": "color"
1945
+ },
1946
+ "75": {
1947
+ "value": "#7c1e1e",
1948
+ "type": "color"
1949
+ },
1950
+ "78": {
1951
+ "value": "#751515",
1952
+ "type": "color"
1953
+ },
1954
+ "80": {
1955
+ "value": "#6c0f17",
1956
+ "type": "color"
1957
+ },
1958
+ "83": {
1959
+ "value": "#630814",
1960
+ "type": "color"
1961
+ },
1962
+ "85": {
1963
+ "value": "#5e0010",
1964
+ "type": "color"
1965
+ },
1966
+ "88": {
1967
+ "value": "#570007",
1968
+ "type": "color"
1969
+ },
1970
+ "90": {
1971
+ "value": "#4e0000",
1972
+ "type": "color"
1973
+ },
1974
+ "93": {
1975
+ "value": "#420002",
1976
+ "type": "color"
1977
+ },
1978
+ "95": {
1979
+ "value": "#3e0001",
1980
+ "type": "color"
1981
+ },
1982
+ "100": {
1983
+ "value": "#340002",
1984
+ "type": "color"
1985
+ }
1986
+ },
1987
+ "orange": {
1988
+ "0": {
1989
+ "value": "#fff9f1",
1990
+ "type": "color"
1991
+ },
1992
+ "3": {
1993
+ "value": "#ffefe5",
1994
+ "type": "color"
1995
+ },
1996
+ "7": {
1997
+ "value": "#ffe0cc",
1998
+ "type": "color"
1999
+ },
2000
+ "10": {
2001
+ "value": "#ffd7bd",
2002
+ "type": "color"
2003
+ },
2004
+ "15": {
2005
+ "value": "#ffc39f",
2006
+ "type": "color"
2007
+ },
2008
+ "20": {
2009
+ "value": "#ffb27e",
2010
+ "type": "color"
2011
+ },
2012
+ "25": {
2013
+ "value": "#fe9f5f",
2014
+ "type": "color"
2015
+ },
2016
+ "30": {
2017
+ "value": "#ff8b40",
2018
+ "type": "color"
2019
+ },
2020
+ "35": {
2021
+ "value": "#ff7b28",
2022
+ "type": "color"
2023
+ },
2024
+ "40": {
2025
+ "value": "#f46e15",
2026
+ "type": "color"
2027
+ },
2028
+ "45": {
2029
+ "value": "#e76205",
2030
+ "type": "color"
2031
+ },
2032
+ "50": {
2033
+ "value": "#d75001",
2034
+ "type": "color"
2035
+ },
2036
+ "55": {
2037
+ "value": "#c54900",
2038
+ "type": "color"
2039
+ },
2040
+ "60": {
2041
+ "value": "#b43c00",
2042
+ "type": "color"
2043
+ },
2044
+ "65": {
2045
+ "value": "#a53100",
2046
+ "type": "color"
2047
+ },
2048
+ "70": {
2049
+ "value": "#942601",
2050
+ "type": "color"
2051
+ },
2052
+ "73": {
2053
+ "value": "#831b01",
2054
+ "type": "color"
2055
+ },
2056
+ "75": {
2057
+ "value": "#811701",
2058
+ "type": "color"
2059
+ },
2060
+ "78": {
2061
+ "value": "#740e01",
2062
+ "type": "color"
2063
+ },
2064
+ "80": {
2065
+ "value": "#6f0801",
2066
+ "type": "color"
2067
+ },
2068
+ "83": {
2069
+ "value": "#650401",
2070
+ "type": "color"
2071
+ },
2072
+ "85": {
2073
+ "value": "#5f0000",
2074
+ "type": "color"
2075
+ },
2076
+ "88": {
2077
+ "value": "#520000",
2078
+ "type": "color"
2079
+ },
2080
+ "90": {
2081
+ "value": "#4e0000",
2082
+ "type": "color"
2083
+ },
2084
+ "93": {
2085
+ "value": "#420000",
2086
+ "type": "color"
2087
+ },
2088
+ "95": {
2089
+ "value": "#3c0000",
2090
+ "type": "color"
2091
+ },
2092
+ "100": {
2093
+ "value": "#320003",
2094
+ "type": "color"
2095
+ }
2096
+ },
2097
+ "yellow": {
2098
+ "0": {
2099
+ "value": "#fff9f1",
2100
+ "type": "color"
2101
+ },
2102
+ "3": {
2103
+ "value": "#fff0e0",
2104
+ "type": "color"
2105
+ },
2106
+ "7": {
2107
+ "value": "#ffe2c2",
2108
+ "type": "color"
2109
+ },
2110
+ "10": {
2111
+ "value": "#ffd8a5",
2112
+ "type": "color"
2113
+ },
2114
+ "15": {
2115
+ "value": "#ffc876",
2116
+ "type": "color"
2117
+ },
2118
+ "20": {
2119
+ "value": "#ffb84a",
2120
+ "type": "color"
2121
+ },
2122
+ "25": {
2123
+ "value": "#ffa920",
2124
+ "type": "color"
2125
+ },
2126
+ "30": {
2127
+ "value": "#f09d01",
2128
+ "type": "color"
2129
+ },
2130
+ "35": {
2131
+ "value": "#e29101",
2132
+ "type": "color"
2133
+ },
2134
+ "40": {
2135
+ "value": "#d38500",
2136
+ "type": "color"
2137
+ },
2138
+ "45": {
2139
+ "value": "#c67a00",
2140
+ "type": "color"
2141
+ },
2142
+ "50": {
2143
+ "value": "#b86e01",
2144
+ "type": "color"
2145
+ },
2146
+ "55": {
2147
+ "value": "#a96100",
2148
+ "type": "color"
2149
+ },
2150
+ "60": {
2151
+ "value": "#985600",
2152
+ "type": "color"
2153
+ },
2154
+ "65": {
2155
+ "value": "#894b00",
2156
+ "type": "color"
2157
+ },
2158
+ "70": {
2159
+ "value": "#7b3f01",
2160
+ "type": "color"
2161
+ },
2162
+ "73": {
2163
+ "value": "#743901",
2164
+ "type": "color"
2165
+ },
2166
+ "75": {
2167
+ "value": "#683301",
2168
+ "type": "color"
2169
+ },
2170
+ "78": {
2171
+ "value": "#602d00",
2172
+ "type": "color"
2173
+ },
2174
+ "80": {
2175
+ "value": "#592800",
2176
+ "type": "color"
2177
+ },
2178
+ "83": {
2179
+ "value": "#522300",
2180
+ "type": "color"
2181
+ },
2182
+ "85": {
2183
+ "value": "#491d00",
2184
+ "type": "color"
2185
+ },
2186
+ "88": {
2187
+ "value": "#421700",
2188
+ "type": "color"
2189
+ },
2190
+ "90": {
2191
+ "value": "#3b1200",
2192
+ "type": "color"
2193
+ },
2194
+ "93": {
2195
+ "value": "#330a00",
2196
+ "type": "color"
2197
+ },
2198
+ "95": {
2199
+ "value": "#2b0400",
2200
+ "type": "color"
2201
+ },
2202
+ "100": {
2203
+ "value": "#230000",
2204
+ "type": "color"
2205
+ }
2206
+ },
2207
+ "red": {
2208
+ "0": {
2209
+ "value": "#fff6f9",
2210
+ "type": "color"
2211
+ },
2212
+ "3": {
2213
+ "value": "#ffeceb",
2214
+ "type": "color"
2215
+ },
2216
+ "7": {
2217
+ "value": "#ffdedb",
2218
+ "type": "color"
2219
+ },
2220
+ "10": {
2221
+ "value": "#ffd5ce",
2222
+ "type": "color"
2223
+ },
2224
+ "15": {
2225
+ "value": "#ffc3b9",
2226
+ "type": "color"
2227
+ },
2228
+ "20": {
2229
+ "value": "#ffb0a1",
2230
+ "type": "color"
2231
+ },
2232
+ "25": {
2233
+ "value": "#fe9d8c",
2234
+ "type": "color"
2235
+ },
2236
+ "30": {
2237
+ "value": "#ff8872",
2238
+ "type": "color"
2239
+ },
2240
+ "35": {
2241
+ "value": "#ff745f",
2242
+ "type": "color"
2243
+ },
2244
+ "40": {
2245
+ "value": "#ff5f4d",
2246
+ "type": "color"
2247
+ },
2248
+ "45": {
2249
+ "value": "#f84d3c",
2250
+ "type": "color"
2251
+ },
2252
+ "50": {
2253
+ "value": "#e74135",
2254
+ "type": "color"
2255
+ },
2256
+ "55": {
2257
+ "value": "#d3372b",
2258
+ "type": "color"
2259
+ },
2260
+ "60": {
2261
+ "value": "#bf2a23",
2262
+ "type": "color"
2263
+ },
2264
+ "65": {
2265
+ "value": "#ad221f",
2266
+ "type": "color"
2267
+ },
2268
+ "70": {
2269
+ "value": "#9a1a19",
2270
+ "type": "color"
2271
+ },
2272
+ "73": {
2273
+ "value": "#8d1119",
2274
+ "type": "color"
2275
+ },
2276
+ "75": {
2277
+ "value": "#840b10",
2278
+ "type": "color"
2279
+ },
2280
+ "78": {
2281
+ "value": "#770d12",
2282
+ "type": "color"
2283
+ },
2284
+ "80": {
2285
+ "value": "#710208",
2286
+ "type": "color"
2287
+ },
2288
+ "83": {
2289
+ "value": "#6a0101",
2290
+ "type": "color"
2291
+ },
2292
+ "85": {
2293
+ "value": "#5e0000",
2294
+ "type": "color"
2295
+ },
2296
+ "88": {
2297
+ "value": "#570000",
2298
+ "type": "color"
2299
+ },
2300
+ "90": {
2301
+ "value": "#4a0001",
2302
+ "type": "color"
2303
+ },
2304
+ "93": {
2305
+ "value": "#420001",
2306
+ "type": "color"
2307
+ },
2308
+ "95": {
2309
+ "value": "#380001",
2310
+ "type": "color"
2311
+ },
2312
+ "100": {
2313
+ "value": "#2e0002",
2314
+ "type": "color"
2315
+ }
2316
+ },
2317
+ "gradient": {
2318
+ "neutral-light-1": {
2319
+ "value": "linear-gradient(180deg, {Gold.0} 0%, {Gold.3} 100%)",
2320
+ "type": "color",
2321
+ "failedToResolve": true
2322
+ },
2323
+ "neutral-light-2": {
2324
+ "value": "linear-gradient(180deg, {Gold.3} 0%, {Gold.0} 100%)",
2325
+ "type": "color",
2326
+ "failedToResolve": true
2327
+ },
2328
+ "neutral-light-3": {
2329
+ "value": "radial-gradient(53.72% 53.72% at 50% 46.28%, {Gold.0} 0%, {Gold.3} 100%)",
2330
+ "type": "color",
2331
+ "failedToResolve": true
2332
+ },
2333
+ "neutral-light-4": {
2334
+ "value": "radial-gradient(53.72% 53.72% at 50% 46.28%, {Gold.3} 0%, {Gold.0} 100%)",
2335
+ "type": "color",
2336
+ "failedToResolve": true
2337
+ },
2338
+ "colorful-light-1": {
2339
+ "value": "linear-gradient(145.9deg, {Blue.10} 7.11%, rgba(255, 255, 255, 0) 90.25%), linear-gradient(294.32deg, {Green.7} -14.26%, rgba(255, 255, 255, 0) 62.44%), {Orange.3}",
2340
+ "type": "color",
2341
+ "failedToResolve": true
2342
+ },
2343
+ "colorful-light-2": {
2344
+ "value": "linear-gradient(41.04deg, {Blue.7} 1.34%, rgba(255, 255, 255, 0) 42.39%), linear-gradient(201.1deg, {Yellow.3} 5.95%, rgba(255, 255, 255, 0) 73.3%), linear-gradient(119.18deg, {Green.7} -6.66%, rgba(255, 255, 255, 0) 39.22%), {Red.3}",
2345
+ "type": "color",
2346
+ "failedToResolve": true
2347
+ },
2348
+ "colorful-light-3": {
2349
+ "value": "linear-gradient(270.31deg, {Blue.7} -11.36%, rgba(255, 255, 255, 0) 62.73%), linear-gradient(156.44deg, {Green.7} -16.49%, rgba(255, 255, 255, 0) 86.24%), {Yellow.3}",
2350
+ "type": "color",
2351
+ "failedToResolve": true
2352
+ },
2353
+ "colorful-light-4": {
2354
+ "value": "linear-gradient(198.09deg, {Blue.7} 2.01%, rgba(235, 238, 242, 0) 43.18%, rgba(249, 234, 232, 0) 47.86%, {Yellow.3} 94.31%), linear-gradient(98.65deg, {Red.3} 0.58%, rgba(255, 233, 214, 0) 52.45%, rgba(255, 233, 219, 0) 53.76%, {Yellow.3} 105.86%), {Gold.3}",
2355
+ "type": "color",
2356
+ "failedToResolve": true
2357
+ },
2358
+ "colorful-dark-1": {
2359
+ "value": "linear-gradient(71.44deg, {Red.95} 0%, rgba(62, 0, 16, 0) 25.96%, rgba(65, 0, 22, 0) 80.55%, {Pink.90} 102.88%), linear-gradient(110.82deg, {Blue.85} 0%, rgba(19, 25, 30, 0) 42.92%, rgba(8, 37, 11, 0) 76.58%, {Green.90} 100%), #13191e",
2360
+ "type": "color",
2361
+ "failedToResolve": true
2362
+ },
2363
+ "colorful-dark-2": {
2364
+ "value": "linear-gradient(135deg, #38000180 0%, #3e001000 49%, #41001600 57.51%, #45001f80 100%), linear-gradient(45deg, #00334480 0%, #13191e00 50.67%, #08250b00 54.43%, #012c0080 100%), #13191e",
2365
+ "type": "color"
2366
+ }
2367
+ }
2368
+ },
2369
+ "default-fonts": {
2370
+ "value": "-apple-system,BlinkMacSystemFont,\"Segoe UI\",Roboto,Oxygen-Sans,Ubuntu,Cantarell,\"Helvetica Neue\",sans-serif",
2371
+ "type": "fontFamilies"
2372
+ },
2373
+ "breakpoint": {
2374
+ "description": {
2375
+ "value": "In production, units are in px for now. We will convert this to vw in the future.",
2376
+ "type": "other"
2377
+ },
2378
+ "S": {
2379
+ "value": 320,
2380
+ "type": "sizing",
2381
+ "description": "< 655px"
2382
+ },
2383
+ "M": {
2384
+ "value": 656,
2385
+ "type": "sizing",
2386
+ "description": "656–1047px"
2387
+ },
2388
+ "L": {
2389
+ "value": "1048–1311px",
2390
+ "type": "sizing"
2391
+ },
2392
+ "XL": {
2393
+ "value": 1312,
2394
+ "type": "sizing",
2395
+ "description": "1312–1535px"
2396
+ },
2397
+ "XXL": {
2398
+ "value": 1536,
2399
+ "type": "sizing",
2400
+ "description": "1536–1647px"
2401
+ },
2402
+ "MAX": {
2403
+ "value": 1648,
2404
+ "type": "sizing",
2405
+ "description": "1648px +"
2406
+ }
2407
+ },
2408
+ "alignment": {
2409
+ "description": {
2410
+ "value": "In production, units are in px for now. We will convert this to vw in the future.",
2411
+ "type": "other"
2412
+ },
2413
+ "center": {
2414
+ "value": 416,
2415
+ "type": "sizing",
2416
+ "description": "min-width: 416px"
2417
+ },
2418
+ "wide": {
2419
+ "value": 820,
2420
+ "type": "sizing",
2421
+ "description": "min-width: 820px"
2422
+ },
2423
+ "full": {
2424
+ "value": 1583,
2425
+ "type": "sizing",
2426
+ "description": "max-width: 1583px"
2427
+ }
2428
+ }
2429
+ }