@pantheon-systems/pds-design-tokens 1.0.0-dev.12 → 1.0.0-dev.120

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.
@@ -1,12 +1,83 @@
1
1
  {
2
2
  "animation": {
3
+ "focus": {
4
+ "transition": {
5
+ "value": "outline 200ms ease-in-out 0s",
6
+ "public": true,
7
+ "filePath": "tokens/animation/alias.json",
8
+ "isSource": true,
9
+ "original": {
10
+ "value": "outline {animation.transition.default.duration.value} {animation.transition.default.timing-function.value} {animation.transition.default.delay.value}",
11
+ "public": true
12
+ },
13
+ "name": "animation-focus-transition",
14
+ "attributes": {
15
+ "category": "animation",
16
+ "type": "focus",
17
+ "item": "transition"
18
+ },
19
+ "path": [
20
+ "animation",
21
+ "focus",
22
+ "transition"
23
+ ]
24
+ }
25
+ },
26
+ "rotation": {
27
+ "transition": {
28
+ "value": "transform 200ms ease-in-out 0s",
29
+ "public": true,
30
+ "filePath": "tokens/animation/alias.json",
31
+ "isSource": true,
32
+ "original": {
33
+ "value": "transform {animation.transition.default.duration.value} {animation.transition.default.timing-function.value} {animation.transition.default.delay.value}",
34
+ "public": true
35
+ },
36
+ "name": "animation-rotation-transition",
37
+ "attributes": {
38
+ "category": "animation",
39
+ "type": "rotation",
40
+ "item": "transition"
41
+ },
42
+ "path": [
43
+ "animation",
44
+ "rotation",
45
+ "transition"
46
+ ]
47
+ }
48
+ },
49
+ "reveal": {
50
+ "transition": {
51
+ "value": "all 300ms ease-in-out",
52
+ "public": true,
53
+ "filePath": "tokens/animation/alias.json",
54
+ "isSource": true,
55
+ "original": {
56
+ "value": "all {animation.transition.reveal.duration.value} {animation.transition.default.timing-function.value}",
57
+ "public": true
58
+ },
59
+ "name": "animation-reveal-transition",
60
+ "attributes": {
61
+ "category": "animation",
62
+ "type": "reveal",
63
+ "item": "transition"
64
+ },
65
+ "path": [
66
+ "animation",
67
+ "reveal",
68
+ "transition"
69
+ ]
70
+ }
71
+ },
3
72
  "button": {
4
73
  "transition": {
5
- "value": "background-color: 200ms ease-in-out 0s, border-color: 200ms ease-in-out 0s",
74
+ "value": "all 200ms ease-in-out 0s",
75
+ "public": true,
6
76
  "filePath": "tokens/animation/alias.json",
7
77
  "isSource": true,
8
78
  "original": {
9
- "value": "background-color: {animation.transition.default.duration.value} {animation.transition.default.timing-function.value} {animation.transition.default.delay.value}, border-color: {animation.transition.default.duration.value} {animation.transition.default.timing-function.value} {animation.transition.default.delay.value}"
79
+ "value": "all {animation.transition.default.duration.value} {animation.transition.default.timing-function.value} {animation.transition.default.delay.value}",
80
+ "public": true
10
81
  },
11
82
  "name": "animation-button-transition",
12
83
  "attributes": {
@@ -23,11 +94,13 @@
23
94
  },
24
95
  "input": {
25
96
  "transition": {
26
- "value": "background-color: 200ms ease-in-out 0s, border-color: 200ms ease-in-out 0s",
97
+ "value": "background-color 200ms ease-in-out 0s, border-color 200ms ease-in-out 0s",
98
+ "public": true,
27
99
  "filePath": "tokens/animation/alias.json",
28
100
  "isSource": true,
29
101
  "original": {
30
- "value": "background-color: {animation.transition.default.duration.value} {animation.transition.default.timing-function.value} {animation.transition.default.delay.value}, border-color: {animation.transition.default.duration.value} {animation.transition.default.timing-function.value} {animation.transition.default.delay.value}"
102
+ "value": "background-color {animation.transition.default.duration.value} {animation.transition.default.timing-function.value} {animation.transition.default.delay.value}, border-color {animation.transition.default.duration.value} {animation.transition.default.timing-function.value} {animation.transition.default.delay.value}",
103
+ "public": true
31
104
  },
32
105
  "name": "animation-input-transition",
33
106
  "attributes": {
@@ -42,23 +115,25 @@
42
115
  ]
43
116
  }
44
117
  },
45
- "input-label": {
118
+ "link": {
46
119
  "transition": {
47
- "value": "color: 200ms ease-in-out 0s",
120
+ "value": "all 200ms ease-in-out 0s",
121
+ "public": true,
48
122
  "filePath": "tokens/animation/alias.json",
49
123
  "isSource": true,
50
124
  "original": {
51
- "value": "color: {animation.transition.default.duration.value} {animation.transition.default.timing-function.value} {animation.transition.default.delay.value}"
125
+ "value": "all {animation.transition.default.duration.value} {animation.transition.default.timing-function.value} {animation.transition.default.delay.value}",
126
+ "public": true
52
127
  },
53
- "name": "animation-input-label-transition",
128
+ "name": "animation-link-transition",
54
129
  "attributes": {
55
130
  "category": "animation",
56
- "type": "input-label",
131
+ "type": "link",
57
132
  "item": "transition"
58
133
  },
59
134
  "path": [
60
135
  "animation",
61
- "input-label",
136
+ "link",
62
137
  "transition"
63
138
  ]
64
139
  }
@@ -159,6 +234,31 @@
159
234
  "duration"
160
235
  ]
161
236
  }
237
+ },
238
+ "reveal": {
239
+ "duration": {
240
+ "value": "300ms",
241
+ "public": true,
242
+ "filePath": "tokens/animation/base.json",
243
+ "isSource": true,
244
+ "original": {
245
+ "value": "300ms",
246
+ "public": true
247
+ },
248
+ "name": "animation-transition-reveal-duration",
249
+ "attributes": {
250
+ "category": "animation",
251
+ "type": "transition",
252
+ "item": "reveal",
253
+ "subitem": "duration"
254
+ },
255
+ "path": [
256
+ "animation",
257
+ "transition",
258
+ "reveal",
259
+ "duration"
260
+ ]
261
+ }
162
262
  }
163
263
  }
164
264
  },
@@ -186,18 +286,64 @@
186
286
  "radius",
187
287
  "default"
188
288
  ]
289
+ },
290
+ "container": {
291
+ "value": 0.375,
292
+ "defaultUnit": "rem",
293
+ "public": true,
294
+ "filePath": "tokens/border/alias.json",
295
+ "isSource": true,
296
+ "original": {
297
+ "value": 0.375,
298
+ "defaultUnit": "rem",
299
+ "public": true
300
+ },
301
+ "name": "border-radius-container",
302
+ "attributes": {
303
+ "category": "border",
304
+ "type": "radius",
305
+ "item": "container"
306
+ },
307
+ "path": [
308
+ "border",
309
+ "radius",
310
+ "container"
311
+ ]
312
+ },
313
+ "bar": {
314
+ "value": 3.5,
315
+ "defaultUnit": "rem",
316
+ "public": true,
317
+ "filePath": "tokens/border/alias.json",
318
+ "isSource": true,
319
+ "original": {
320
+ "value": 3.5,
321
+ "defaultUnit": "rem",
322
+ "public": true
323
+ },
324
+ "name": "border-radius-bar",
325
+ "attributes": {
326
+ "category": "border",
327
+ "type": "radius",
328
+ "item": "bar"
329
+ },
330
+ "path": [
331
+ "border",
332
+ "radius",
333
+ "bar"
334
+ ]
189
335
  }
190
336
  },
191
337
  "width": {
192
338
  "default": {
193
- "value": 1,
194
- "defaultUnit": "px",
339
+ "value": 0.0625,
340
+ "defaultUnit": "rem",
195
341
  "public": true,
196
342
  "filePath": "tokens/border/alias.json",
197
343
  "isSource": true,
198
344
  "original": {
199
- "value": 1,
200
- "defaultUnit": "px",
345
+ "value": 0.0625,
346
+ "defaultUnit": "rem",
201
347
  "public": true
202
348
  },
203
349
  "name": "border-width-default",
@@ -211,161 +357,687 @@
211
357
  "width",
212
358
  "default"
213
359
  ]
360
+ },
361
+ "outline": {
362
+ "value": 0.125,
363
+ "defaultUnit": "rem",
364
+ "public": true,
365
+ "filePath": "tokens/border/alias.json",
366
+ "isSource": true,
367
+ "original": {
368
+ "value": 0.125,
369
+ "defaultUnit": "rem",
370
+ "public": true
371
+ },
372
+ "name": "border-width-outline",
373
+ "attributes": {
374
+ "category": "border",
375
+ "type": "width",
376
+ "item": "outline"
377
+ },
378
+ "path": [
379
+ "border",
380
+ "width",
381
+ "outline"
382
+ ]
383
+ },
384
+ "stepper": {
385
+ "value": 0.1875,
386
+ "defaultUnit": "rem",
387
+ "public": true,
388
+ "filePath": "tokens/border/alias.json",
389
+ "isSource": true,
390
+ "original": {
391
+ "value": 0.1875,
392
+ "defaultUnit": "rem",
393
+ "public": true
394
+ },
395
+ "name": "border-width-stepper",
396
+ "attributes": {
397
+ "category": "border",
398
+ "type": "width",
399
+ "item": "stepper"
400
+ },
401
+ "path": [
402
+ "border",
403
+ "width",
404
+ "stepper"
405
+ ]
214
406
  }
215
407
  }
216
408
  },
217
- "grid": {
218
- "columns-4": {
409
+ "container": {
410
+ "modal": {
219
411
  "width": {
220
- "value": "20.875%",
221
- "filePath": "tokens/grid/base.json",
412
+ "small": {
413
+ "value": "25rem",
414
+ "public": true,
415
+ "filePath": "tokens/container/alias.json",
416
+ "isSource": true,
417
+ "original": {
418
+ "value": "25rem",
419
+ "public": true
420
+ },
421
+ "name": "container-modal-width-small",
422
+ "attributes": {
423
+ "category": "container",
424
+ "type": "modal",
425
+ "item": "width",
426
+ "subitem": "small"
427
+ },
428
+ "path": [
429
+ "container",
430
+ "modal",
431
+ "width",
432
+ "small"
433
+ ]
434
+ },
435
+ "medium": {
436
+ "value": "36rem",
437
+ "public": true,
438
+ "filePath": "tokens/container/alias.json",
439
+ "isSource": true,
440
+ "original": {
441
+ "value": "36rem",
442
+ "public": true
443
+ },
444
+ "name": "container-modal-width-medium",
445
+ "attributes": {
446
+ "category": "container",
447
+ "type": "modal",
448
+ "item": "width",
449
+ "subitem": "medium"
450
+ },
451
+ "path": [
452
+ "container",
453
+ "modal",
454
+ "width",
455
+ "medium"
456
+ ]
457
+ },
458
+ "large": {
459
+ "value": "44rem",
460
+ "public": true,
461
+ "filePath": "tokens/container/alias.json",
462
+ "isSource": true,
463
+ "original": {
464
+ "value": "44rem",
465
+ "public": true
466
+ },
467
+ "name": "container-modal-width-large",
468
+ "attributes": {
469
+ "category": "container",
470
+ "type": "modal",
471
+ "item": "width",
472
+ "subitem": "large"
473
+ },
474
+ "path": [
475
+ "container",
476
+ "modal",
477
+ "width",
478
+ "large"
479
+ ]
480
+ }
481
+ }
482
+ },
483
+ "max-width": {
484
+ "narrow": {
485
+ "value": "1024px",
486
+ "public": true,
487
+ "filePath": "tokens/container/base.json",
222
488
  "isSource": true,
223
489
  "original": {
224
- "value": "20.875%"
490
+ "value": "1024px",
491
+ "public": true
225
492
  },
226
- "name": "grid-columns-4-width",
493
+ "name": "container-max-width-narrow",
227
494
  "attributes": {
228
- "category": "grid",
229
- "type": "columns-4",
230
- "item": "width"
495
+ "category": "container",
496
+ "type": "max-width",
497
+ "item": "narrow"
231
498
  },
232
499
  "path": [
233
- "grid",
234
- "columns-4",
235
- "width"
500
+ "container",
501
+ "max-width",
502
+ "narrow"
236
503
  ]
237
504
  },
238
- "gap": {
239
- "value": "5.5%",
240
- "filePath": "tokens/grid/base.json",
505
+ "standard": {
506
+ "value": "1200px",
507
+ "public": true,
508
+ "filePath": "tokens/container/base.json",
241
509
  "isSource": true,
242
510
  "original": {
243
- "value": "5.5%"
511
+ "value": "1200px",
512
+ "public": true
244
513
  },
245
- "name": "grid-columns-4-gap",
514
+ "name": "container-max-width-standard",
246
515
  "attributes": {
247
- "category": "grid",
248
- "type": "columns-4",
249
- "item": "gap"
516
+ "category": "container",
517
+ "type": "max-width",
518
+ "item": "standard"
250
519
  },
251
520
  "path": [
252
- "grid",
253
- "columns-4",
254
- "gap"
521
+ "container",
522
+ "max-width",
523
+ "standard"
255
524
  ]
256
- }
257
- },
258
- "columns-6": {
259
- "width": {
260
- "value": "14.53125%",
261
- "filePath": "tokens/grid/base.json",
525
+ },
526
+ "wide": {
527
+ "value": "1440px",
528
+ "public": true,
529
+ "filePath": "tokens/container/base.json",
262
530
  "isSource": true,
263
531
  "original": {
264
- "value": "14.53125%"
532
+ "value": "1440px",
533
+ "public": true
265
534
  },
266
- "name": "grid-columns-6-width",
535
+ "name": "container-max-width-wide",
267
536
  "attributes": {
268
- "category": "grid",
269
- "type": "columns-6",
270
- "item": "width"
537
+ "category": "container",
538
+ "type": "max-width",
539
+ "item": "wide"
271
540
  },
272
541
  "path": [
273
- "grid",
274
- "columns-6",
275
- "width"
542
+ "container",
543
+ "max-width",
544
+ "wide"
276
545
  ]
277
546
  },
278
- "gap": {
279
- "value": "2.5625%",
280
- "filePath": "tokens/grid/base.json",
547
+ "x-wide": {
548
+ "value": "1600px",
549
+ "public": true,
550
+ "filePath": "tokens/container/base.json",
281
551
  "isSource": true,
282
552
  "original": {
283
- "value": "2.5625%"
553
+ "value": "1600px",
554
+ "public": true
284
555
  },
285
- "name": "grid-columns-6-gap",
556
+ "name": "container-max-width-x-wide",
286
557
  "attributes": {
287
- "category": "grid",
288
- "type": "columns-6",
289
- "item": "gap"
558
+ "category": "container",
559
+ "type": "max-width",
560
+ "item": "x-wide"
290
561
  },
291
562
  "path": [
292
- "grid",
293
- "columns-6",
294
- "gap"
563
+ "container",
564
+ "max-width",
565
+ "x-wide"
295
566
  ]
296
567
  }
297
568
  },
298
- "columns-12": {
299
- "width": {
300
- "value": "6.5%",
301
- "filePath": "tokens/grid/base.json",
569
+ "padding": {
570
+ "base": {
571
+ "value": "6%",
572
+ "public": true,
573
+ "filePath": "tokens/container/base.json",
302
574
  "isSource": true,
303
575
  "original": {
304
- "value": "6.5%"
576
+ "value": "6%",
577
+ "public": true
305
578
  },
306
- "name": "grid-columns-12-width",
579
+ "name": "container-padding-base",
307
580
  "attributes": {
308
- "category": "grid",
309
- "type": "columns-12",
310
- "item": "width"
581
+ "category": "container",
582
+ "type": "padding",
583
+ "item": "base"
311
584
  },
312
585
  "path": [
313
- "grid",
314
- "columns-12",
315
- "width"
586
+ "container",
587
+ "padding",
588
+ "base"
589
+ ]
590
+ },
591
+ "narrow-bp-md": {
592
+ "value": "12%",
593
+ "public": true,
594
+ "filePath": "tokens/container/base.json",
595
+ "isSource": true,
596
+ "original": {
597
+ "value": "12%",
598
+ "public": true
599
+ },
600
+ "name": "container-padding-narrow-bp-md",
601
+ "attributes": {
602
+ "category": "container",
603
+ "type": "padding",
604
+ "item": "narrow-bp-md"
605
+ },
606
+ "path": [
607
+ "container",
608
+ "padding",
609
+ "narrow-bp-md"
610
+ ]
611
+ },
612
+ "narrow-bp-lg": {
613
+ "value": "20%",
614
+ "public": true,
615
+ "filePath": "tokens/container/base.json",
616
+ "isSource": true,
617
+ "original": {
618
+ "value": "20%",
619
+ "public": true
620
+ },
621
+ "name": "container-padding-narrow-bp-lg",
622
+ "attributes": {
623
+ "category": "container",
624
+ "type": "padding",
625
+ "item": "narrow-bp-lg"
626
+ },
627
+ "path": [
628
+ "container",
629
+ "padding",
630
+ "narrow-bp-lg"
631
+ ]
632
+ },
633
+ "standard-bp-md": {
634
+ "value": "6%",
635
+ "public": true,
636
+ "filePath": "tokens/container/base.json",
637
+ "isSource": true,
638
+ "original": {
639
+ "value": "6%",
640
+ "public": true
641
+ },
642
+ "name": "container-padding-standard-bp-md",
643
+ "attributes": {
644
+ "category": "container",
645
+ "type": "padding",
646
+ "item": "standard-bp-md"
647
+ },
648
+ "path": [
649
+ "container",
650
+ "padding",
651
+ "standard-bp-md"
652
+ ]
653
+ },
654
+ "standard-bp-lg": {
655
+ "value": "8%",
656
+ "public": true,
657
+ "filePath": "tokens/container/base.json",
658
+ "isSource": true,
659
+ "original": {
660
+ "value": "8%",
661
+ "public": true
662
+ },
663
+ "name": "container-padding-standard-bp-lg",
664
+ "attributes": {
665
+ "category": "container",
666
+ "type": "padding",
667
+ "item": "standard-bp-lg"
668
+ },
669
+ "path": [
670
+ "container",
671
+ "padding",
672
+ "standard-bp-lg"
316
673
  ]
317
674
  },
675
+ "wide-bp-md": {
676
+ "value": "5%",
677
+ "public": true,
678
+ "filePath": "tokens/container/base.json",
679
+ "isSource": true,
680
+ "original": {
681
+ "value": "5%",
682
+ "public": true
683
+ },
684
+ "name": "container-padding-wide-bp-md",
685
+ "attributes": {
686
+ "category": "container",
687
+ "type": "padding",
688
+ "item": "wide-bp-md"
689
+ },
690
+ "path": [
691
+ "container",
692
+ "padding",
693
+ "wide-bp-md"
694
+ ]
695
+ },
696
+ "wide-bp-lg": {
697
+ "value": "4%",
698
+ "public": true,
699
+ "filePath": "tokens/container/base.json",
700
+ "isSource": true,
701
+ "original": {
702
+ "value": "4%",
703
+ "public": true
704
+ },
705
+ "name": "container-padding-wide-bp-lg",
706
+ "attributes": {
707
+ "category": "container",
708
+ "type": "padding",
709
+ "item": "wide-bp-lg"
710
+ },
711
+ "path": [
712
+ "container",
713
+ "padding",
714
+ "wide-bp-lg"
715
+ ]
716
+ }
717
+ }
718
+ },
719
+ "grid": {
720
+ "columns-4": {
318
721
  "gap": {
319
- "value": "2%",
722
+ "value": "5.5%",
320
723
  "filePath": "tokens/grid/base.json",
321
724
  "isSource": true,
322
725
  "original": {
323
- "value": "2%"
726
+ "value": "5.5%"
324
727
  },
325
- "name": "grid-columns-12-gap",
728
+ "name": "grid-columns-4-gap",
326
729
  "attributes": {
327
730
  "category": "grid",
328
- "type": "columns-12",
731
+ "type": "columns-4",
329
732
  "item": "gap"
330
733
  },
331
734
  "path": [
332
735
  "grid",
333
- "columns-12",
736
+ "columns-4",
334
737
  "gap"
335
738
  ]
336
739
  }
740
+ },
741
+ "columns-12": {
742
+ "bp-md": {
743
+ "gap": {
744
+ "narrow": {
745
+ "value": "1.25",
746
+ "filePath": "tokens/grid/base.json",
747
+ "isSource": true,
748
+ "original": {
749
+ "value": "{spacing.L.value}"
750
+ },
751
+ "name": "grid-columns-12-bp-md-gap-narrow",
752
+ "attributes": {
753
+ "category": "grid",
754
+ "type": "columns-12",
755
+ "item": "bp-md",
756
+ "subitem": "gap",
757
+ "state": "narrow"
758
+ },
759
+ "path": [
760
+ "grid",
761
+ "columns-12",
762
+ "bp-md",
763
+ "gap",
764
+ "narrow"
765
+ ]
766
+ },
767
+ "standard": {
768
+ "value": "1.563",
769
+ "filePath": "tokens/grid/base.json",
770
+ "isSource": true,
771
+ "original": {
772
+ "value": "{spacing.XL.value}"
773
+ },
774
+ "name": "grid-columns-12-bp-md-gap-standard",
775
+ "attributes": {
776
+ "category": "grid",
777
+ "type": "columns-12",
778
+ "item": "bp-md",
779
+ "subitem": "gap",
780
+ "state": "standard"
781
+ },
782
+ "path": [
783
+ "grid",
784
+ "columns-12",
785
+ "bp-md",
786
+ "gap",
787
+ "standard"
788
+ ]
789
+ },
790
+ "wide": {
791
+ "value": "1.953",
792
+ "filePath": "tokens/grid/base.json",
793
+ "isSource": true,
794
+ "original": {
795
+ "value": "{spacing.2XL.value}"
796
+ },
797
+ "name": "grid-columns-12-bp-md-gap-wide",
798
+ "attributes": {
799
+ "category": "grid",
800
+ "type": "columns-12",
801
+ "item": "bp-md",
802
+ "subitem": "gap",
803
+ "state": "wide"
804
+ },
805
+ "path": [
806
+ "grid",
807
+ "columns-12",
808
+ "bp-md",
809
+ "gap",
810
+ "wide"
811
+ ]
812
+ }
813
+ }
814
+ },
815
+ "bp-lg": {
816
+ "gap": {
817
+ "narrow": {
818
+ "value": "1.563",
819
+ "filePath": "tokens/grid/base.json",
820
+ "isSource": true,
821
+ "original": {
822
+ "value": "{spacing.XL.value}"
823
+ },
824
+ "name": "grid-columns-12-bp-lg-gap-narrow",
825
+ "attributes": {
826
+ "category": "grid",
827
+ "type": "columns-12",
828
+ "item": "bp-lg",
829
+ "subitem": "gap",
830
+ "state": "narrow"
831
+ },
832
+ "path": [
833
+ "grid",
834
+ "columns-12",
835
+ "bp-lg",
836
+ "gap",
837
+ "narrow"
838
+ ]
839
+ },
840
+ "standard": {
841
+ "value": "1.953",
842
+ "filePath": "tokens/grid/base.json",
843
+ "isSource": true,
844
+ "original": {
845
+ "value": "{spacing.2XL.value}"
846
+ },
847
+ "name": "grid-columns-12-bp-lg-gap-standard",
848
+ "attributes": {
849
+ "category": "grid",
850
+ "type": "columns-12",
851
+ "item": "bp-lg",
852
+ "subitem": "gap",
853
+ "state": "standard"
854
+ },
855
+ "path": [
856
+ "grid",
857
+ "columns-12",
858
+ "bp-lg",
859
+ "gap",
860
+ "standard"
861
+ ]
862
+ },
863
+ "wide": {
864
+ "value": "2.441",
865
+ "filePath": "tokens/grid/base.json",
866
+ "isSource": true,
867
+ "original": {
868
+ "value": "{spacing.3XL.value}"
869
+ },
870
+ "name": "grid-columns-12-bp-lg-gap-wide",
871
+ "attributes": {
872
+ "category": "grid",
873
+ "type": "columns-12",
874
+ "item": "bp-lg",
875
+ "subitem": "gap",
876
+ "state": "wide"
877
+ },
878
+ "path": [
879
+ "grid",
880
+ "columns-12",
881
+ "bp-lg",
882
+ "gap",
883
+ "wide"
884
+ ]
885
+ }
886
+ }
887
+ }
888
+ },
889
+ "marketing": {
890
+ "column": {
891
+ "small": {
892
+ "value": "21.34375%",
893
+ "public": true,
894
+ "filePath": "tokens/grid/base.json",
895
+ "isSource": true,
896
+ "original": {
897
+ "value": "21.34375%",
898
+ "public": true
899
+ },
900
+ "name": "grid-marketing-column-small",
901
+ "attributes": {
902
+ "category": "grid",
903
+ "type": "marketing",
904
+ "item": "column",
905
+ "subitem": "small"
906
+ },
907
+ "path": [
908
+ "grid",
909
+ "marketing",
910
+ "column",
911
+ "small"
912
+ ]
913
+ },
914
+ "medium-large": {
915
+ "value": "4.36875%",
916
+ "public": true,
917
+ "filePath": "tokens/grid/base.json",
918
+ "isSource": true,
919
+ "original": {
920
+ "value": "4.36875%",
921
+ "public": true
922
+ },
923
+ "name": "grid-marketing-column-medium-large",
924
+ "attributes": {
925
+ "category": "grid",
926
+ "type": "marketing",
927
+ "item": "column",
928
+ "subitem": "medium-large"
929
+ },
930
+ "path": [
931
+ "grid",
932
+ "marketing",
933
+ "column",
934
+ "medium-large"
935
+ ]
936
+ }
937
+ },
938
+ "gap": {
939
+ "small": {
940
+ "value": "4.875%",
941
+ "public": true,
942
+ "filePath": "tokens/grid/base.json",
943
+ "isSource": true,
944
+ "original": {
945
+ "value": "4.875%",
946
+ "public": true
947
+ },
948
+ "name": "grid-marketing-gap-small",
949
+ "attributes": {
950
+ "category": "grid",
951
+ "type": "marketing",
952
+ "item": "gap",
953
+ "subitem": "small"
954
+ },
955
+ "path": [
956
+ "grid",
957
+ "marketing",
958
+ "gap",
959
+ "small"
960
+ ]
961
+ },
962
+ "medium-large": {
963
+ "value": "4.325%",
964
+ "public": true,
965
+ "filePath": "tokens/grid/base.json",
966
+ "isSource": true,
967
+ "original": {
968
+ "value": "4.325%",
969
+ "public": true
970
+ },
971
+ "name": "grid-marketing-gap-medium-large",
972
+ "attributes": {
973
+ "category": "grid",
974
+ "type": "marketing",
975
+ "item": "gap",
976
+ "subitem": "medium-large"
977
+ },
978
+ "path": [
979
+ "grid",
980
+ "marketing",
981
+ "gap",
982
+ "medium-large"
983
+ ]
984
+ }
985
+ }
337
986
  }
338
987
  },
339
988
  "spacing": {
340
- "scale-ratio": {
341
- "value": "1.25",
342
- "comment": "Base ratio/multiplier",
989
+ "8XL": {
990
+ "value": "7.451",
991
+ "defaultUnit": "rem",
992
+ "public": true,
343
993
  "filePath": "tokens/spacing/base.json",
344
994
  "isSource": true,
345
995
  "original": {
346
- "value": "1.25",
347
- "comment": "Base ratio/multiplier"
996
+ "value": "7.451",
997
+ "defaultUnit": "rem",
998
+ "public": true
348
999
  },
349
- "name": "spacing-scale-ratio",
1000
+ "name": "spacing-8-xl",
350
1001
  "attributes": {
351
1002
  "category": "spacing",
352
- "type": "scale-ratio"
1003
+ "type": "8XL"
353
1004
  },
354
1005
  "path": [
355
1006
  "spacing",
356
- "scale-ratio"
1007
+ "8XL"
1008
+ ]
1009
+ },
1010
+ "7XL": {
1011
+ "value": "5.96",
1012
+ "defaultUnit": "rem",
1013
+ "public": true,
1014
+ "filePath": "tokens/spacing/base.json",
1015
+ "isSource": true,
1016
+ "original": {
1017
+ "value": "5.96",
1018
+ "defaultUnit": "rem",
1019
+ "public": true
1020
+ },
1021
+ "name": "spacing-7-xl",
1022
+ "attributes": {
1023
+ "category": "spacing",
1024
+ "type": "7XL"
1025
+ },
1026
+ "path": [
1027
+ "spacing",
1028
+ "7XL"
357
1029
  ]
358
1030
  },
359
1031
  "6XL": {
360
1032
  "value": "4.678",
361
- "formula": "1.25**7",
362
1033
  "defaultUnit": "rem",
1034
+ "public": true,
363
1035
  "filePath": "tokens/spacing/base.json",
364
1036
  "isSource": true,
365
1037
  "original": {
366
1038
  "value": "4.678",
367
- "formula": "{spacing.scale-ratio}**7",
368
- "defaultUnit": "rem"
1039
+ "defaultUnit": "rem",
1040
+ "public": true
369
1041
  },
370
1042
  "name": "spacing-6-xl",
371
1043
  "attributes": {
@@ -379,14 +1051,14 @@
379
1051
  },
380
1052
  "5XL": {
381
1053
  "value": "3.815",
382
- "formula": "1.25**6",
383
1054
  "defaultUnit": "rem",
1055
+ "public": true,
384
1056
  "filePath": "tokens/spacing/base.json",
385
1057
  "isSource": true,
386
1058
  "original": {
387
1059
  "value": "3.815",
388
- "formula": "{spacing.scale-ratio}**6",
389
- "defaultUnit": "rem"
1060
+ "defaultUnit": "rem",
1061
+ "public": true
390
1062
  },
391
1063
  "name": "spacing-5-xl",
392
1064
  "attributes": {
@@ -400,14 +1072,14 @@
400
1072
  },
401
1073
  "4XL": {
402
1074
  "value": "3.052",
403
- "formula": "1.25**5",
404
1075
  "defaultUnit": "rem",
1076
+ "public": true,
405
1077
  "filePath": "tokens/spacing/base.json",
406
1078
  "isSource": true,
407
1079
  "original": {
408
1080
  "value": "3.052",
409
- "formula": "{spacing.scale-ratio}**5",
410
- "defaultUnit": "rem"
1081
+ "defaultUnit": "rem",
1082
+ "public": true
411
1083
  },
412
1084
  "name": "spacing-4-xl",
413
1085
  "attributes": {
@@ -421,14 +1093,14 @@
421
1093
  },
422
1094
  "3XL": {
423
1095
  "value": "2.441",
424
- "formula": "1.25**4",
425
1096
  "defaultUnit": "rem",
1097
+ "public": true,
426
1098
  "filePath": "tokens/spacing/base.json",
427
1099
  "isSource": true,
428
1100
  "original": {
429
1101
  "value": "2.441",
430
- "formula": "{spacing.scale-ratio}**4",
431
- "defaultUnit": "rem"
1102
+ "defaultUnit": "rem",
1103
+ "public": true
432
1104
  },
433
1105
  "name": "spacing-3-xl",
434
1106
  "attributes": {
@@ -442,14 +1114,14 @@
442
1114
  },
443
1115
  "2XL": {
444
1116
  "value": "1.953",
445
- "formula": "1.25**3",
446
1117
  "defaultUnit": "rem",
1118
+ "public": true,
447
1119
  "filePath": "tokens/spacing/base.json",
448
1120
  "isSource": true,
449
1121
  "original": {
450
1122
  "value": "1.953",
451
- "formula": "{spacing.scale-ratio}**3",
452
- "defaultUnit": "rem"
1123
+ "defaultUnit": "rem",
1124
+ "public": true
453
1125
  },
454
1126
  "name": "spacing-2-xl",
455
1127
  "attributes": {
@@ -463,14 +1135,14 @@
463
1135
  },
464
1136
  "XL": {
465
1137
  "value": "1.563",
466
- "formula": "1.25**2",
467
1138
  "defaultUnit": "rem",
1139
+ "public": true,
468
1140
  "filePath": "tokens/spacing/base.json",
469
1141
  "isSource": true,
470
1142
  "original": {
471
1143
  "value": "1.563",
472
- "formula": "{spacing.scale-ratio}**2",
473
- "defaultUnit": "rem"
1144
+ "defaultUnit": "rem",
1145
+ "public": true
474
1146
  },
475
1147
  "name": "spacing-xl",
476
1148
  "attributes": {
@@ -484,14 +1156,14 @@
484
1156
  },
485
1157
  "L": {
486
1158
  "value": "1.25",
487
- "formula": "1.25**1",
488
1159
  "defaultUnit": "rem",
1160
+ "public": true,
489
1161
  "filePath": "tokens/spacing/base.json",
490
1162
  "isSource": true,
491
1163
  "original": {
492
1164
  "value": "1.25",
493
- "formula": "{spacing.scale-ratio}**1",
494
- "defaultUnit": "rem"
1165
+ "defaultUnit": "rem",
1166
+ "public": true
495
1167
  },
496
1168
  "name": "spacing-l",
497
1169
  "attributes": {
@@ -506,11 +1178,13 @@
506
1178
  "M": {
507
1179
  "value": "1",
508
1180
  "defaultUnit": "rem",
1181
+ "public": true,
509
1182
  "filePath": "tokens/spacing/base.json",
510
1183
  "isSource": true,
511
1184
  "original": {
512
1185
  "value": "1",
513
- "defaultUnit": "rem"
1186
+ "defaultUnit": "rem",
1187
+ "public": true
514
1188
  },
515
1189
  "name": "spacing-m",
516
1190
  "attributes": {
@@ -524,14 +1198,14 @@
524
1198
  },
525
1199
  "S": {
526
1200
  "value": "0.8",
527
- "formula": "1.25**-1",
528
1201
  "defaultUnit": "rem",
1202
+ "public": true,
529
1203
  "filePath": "tokens/spacing/base.json",
530
1204
  "isSource": true,
531
1205
  "original": {
532
1206
  "value": "0.8",
533
- "formula": "{spacing.scale-ratio}**-1",
534
- "defaultUnit": "rem"
1207
+ "defaultUnit": "rem",
1208
+ "public": true
535
1209
  },
536
1210
  "name": "spacing-s",
537
1211
  "attributes": {
@@ -545,14 +1219,14 @@
545
1219
  },
546
1220
  "XS": {
547
1221
  "value": "0.64",
548
- "formula": "1.25**-2",
549
1222
  "defaultUnit": "rem",
1223
+ "public": true,
550
1224
  "filePath": "tokens/spacing/base.json",
551
1225
  "isSource": true,
552
1226
  "original": {
553
1227
  "value": "0.64",
554
- "formula": "{spacing.scale-ratio}**-2",
555
- "defaultUnit": "rem"
1228
+ "defaultUnit": "rem",
1229
+ "public": true
556
1230
  },
557
1231
  "name": "spacing-xs",
558
1232
  "attributes": {
@@ -566,14 +1240,14 @@
566
1240
  },
567
1241
  "2XS": {
568
1242
  "value": "0.512",
569
- "formula": "1.25**-3",
570
1243
  "defaultUnit": "rem",
1244
+ "public": true,
571
1245
  "filePath": "tokens/spacing/base.json",
572
1246
  "isSource": true,
573
1247
  "original": {
574
1248
  "value": "0.512",
575
- "formula": "{spacing.scale-ratio}**-3",
576
- "defaultUnit": "rem"
1249
+ "defaultUnit": "rem",
1250
+ "public": true
577
1251
  },
578
1252
  "name": "spacing-2-xs",
579
1253
  "attributes": {
@@ -587,14 +1261,14 @@
587
1261
  },
588
1262
  "3XS": {
589
1263
  "value": "0.41",
590
- "formula": "1.25**-4",
591
1264
  "defaultUnit": "rem",
1265
+ "public": true,
592
1266
  "filePath": "tokens/spacing/base.json",
593
1267
  "isSource": true,
594
1268
  "original": {
595
1269
  "value": "0.41",
596
- "formula": "{spacing.scale-ratio}**-4",
597
- "defaultUnit": "rem"
1270
+ "defaultUnit": "rem",
1271
+ "public": true
598
1272
  },
599
1273
  "name": "spacing-3-xs",
600
1274
  "attributes": {
@@ -608,14 +1282,14 @@
608
1282
  },
609
1283
  "4XS": {
610
1284
  "value": "0.328",
611
- "formula": "1.25**-5",
612
1285
  "defaultUnit": "rem",
1286
+ "public": true,
613
1287
  "filePath": "tokens/spacing/base.json",
614
1288
  "isSource": true,
615
1289
  "original": {
616
1290
  "value": "0.328",
617
- "formula": "{spacing.scale-ratio}**-5",
618
- "defaultUnit": "rem"
1291
+ "defaultUnit": "rem",
1292
+ "public": true
619
1293
  },
620
1294
  "name": "spacing-4-xs",
621
1295
  "attributes": {
@@ -626,6 +1300,48 @@
626
1300
  "spacing",
627
1301
  "4XS"
628
1302
  ]
1303
+ },
1304
+ "5XS": {
1305
+ "value": "0.25",
1306
+ "defaultUnit": "rem",
1307
+ "public": true,
1308
+ "filePath": "tokens/spacing/base.json",
1309
+ "isSource": true,
1310
+ "original": {
1311
+ "value": "0.25",
1312
+ "defaultUnit": "rem",
1313
+ "public": true
1314
+ },
1315
+ "name": "spacing-5-xs",
1316
+ "attributes": {
1317
+ "category": "spacing",
1318
+ "type": "5XS"
1319
+ },
1320
+ "path": [
1321
+ "spacing",
1322
+ "5XS"
1323
+ ]
1324
+ },
1325
+ "6XS": {
1326
+ "value": "0.125",
1327
+ "defaultUnit": "rem",
1328
+ "public": true,
1329
+ "filePath": "tokens/spacing/base.json",
1330
+ "isSource": true,
1331
+ "original": {
1332
+ "value": "0.125",
1333
+ "defaultUnit": "rem",
1334
+ "public": true
1335
+ },
1336
+ "name": "spacing-6-xs",
1337
+ "attributes": {
1338
+ "category": "spacing",
1339
+ "type": "6XS"
1340
+ },
1341
+ "path": [
1342
+ "spacing",
1343
+ "6XS"
1344
+ ]
629
1345
  }
630
1346
  },
631
1347
  "typography": {
@@ -651,6 +1367,48 @@
651
1367
  "default"
652
1368
  ]
653
1369
  },
1370
+ "secondary": {
1371
+ "value": "'Aleo', serif",
1372
+ "public": true,
1373
+ "filePath": "tokens/typography/alias/font.json",
1374
+ "isSource": true,
1375
+ "original": {
1376
+ "value": "'Aleo', serif",
1377
+ "public": true
1378
+ },
1379
+ "name": "typography-font-secondary",
1380
+ "attributes": {
1381
+ "category": "typography",
1382
+ "type": "font",
1383
+ "item": "secondary"
1384
+ },
1385
+ "path": [
1386
+ "typography",
1387
+ "font",
1388
+ "secondary"
1389
+ ]
1390
+ },
1391
+ "code": {
1392
+ "value": "'Source Code Pro', monospace",
1393
+ "public": true,
1394
+ "filePath": "tokens/typography/alias/font.json",
1395
+ "isSource": true,
1396
+ "original": {
1397
+ "value": "'Source Code Pro', monospace",
1398
+ "public": true
1399
+ },
1400
+ "name": "typography-font-code",
1401
+ "attributes": {
1402
+ "category": "typography",
1403
+ "type": "font",
1404
+ "item": "code"
1405
+ },
1406
+ "path": [
1407
+ "typography",
1408
+ "font",
1409
+ "code"
1410
+ ]
1411
+ },
654
1412
  "headings": {
655
1413
  "value": "'Poppins', sans-serif",
656
1414
  "filePath": "tokens/typography/alias/font.json",
@@ -694,7 +1452,7 @@
694
1452
  "filePath": "tokens/typography/alias/font.json",
695
1453
  "isSource": true,
696
1454
  "original": {
697
- "value": "'Aleo', serif"
1455
+ "value": "{typography.font.secondary.value}"
698
1456
  },
699
1457
  "name": "typography-font-lead",
700
1458
  "attributes": {
@@ -713,7 +1471,7 @@
713
1471
  "filePath": "tokens/typography/alias/font.json",
714
1472
  "isSource": true,
715
1473
  "original": {
716
- "value": "'Aleo', serif"
1474
+ "value": "{typography.font.secondary.value}"
717
1475
  },
718
1476
  "name": "typography-font-quote",
719
1477
  "attributes": {
@@ -747,11 +1505,11 @@
747
1505
  ]
748
1506
  },
749
1507
  "css-import": {
750
- "value": "'https://fonts.googleapis.com/css2?family=Aleo:ital,wght@0,400;0,700;1,400;1,700&family=Poppins:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,500;1,600;1,700;1,800&display=swap'",
1508
+ "value": "'https://fonts.googleapis.com/css2?family=Aleo:ital,wght@0,400;0,700;1,400;1,700&family=Poppins:ital,wght@0,400;0,600;0,700;1,400;1,600;1,700&family=Source+Code+Pro:wght@400;600&display=swap'",
751
1509
  "filePath": "tokens/typography/base/font.json",
752
1510
  "isSource": true,
753
1511
  "original": {
754
- "value": "'https://fonts.googleapis.com/css2?family=Aleo:ital,wght@0,400;0,700;1,400;1,700&family=Poppins:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,500;1,600;1,700;1,800&display=swap'"
1512
+ "value": "'https://fonts.googleapis.com/css2?family=Aleo:ital,wght@0,400;0,700;1,400;1,700&family=Poppins:ital,wght@0,400;0,600;0,700;1,400;1,600;1,700&family=Source+Code+Pro:wght@400;600&display=swap'"
755
1513
  },
756
1514
  "name": "typography-font-css-import",
757
1515
  "attributes": {
@@ -765,52 +1523,37 @@
765
1523
  "css-import"
766
1524
  ]
767
1525
  }
768
- },
769
- "font-weight": {
770
- "regular": {
771
- "value": 400,
772
- "filePath": "tokens/typography/base/font-weight.json",
773
- "isSource": true,
774
- "original": {
775
- "value": 400
776
- },
777
- "name": "typography-font-weight-regular",
778
- "attributes": {
779
- "category": "typography",
780
- "type": "font-weight",
781
- "item": "regular"
782
- },
783
- "path": [
784
- "typography",
785
- "font-weight",
786
- "regular"
787
- ]
788
- },
789
- "medium": {
790
- "value": 500,
1526
+ },
1527
+ "font-weight": {
1528
+ "regular": {
1529
+ "value": 400,
1530
+ "public": true,
791
1531
  "filePath": "tokens/typography/base/font-weight.json",
792
1532
  "isSource": true,
793
1533
  "original": {
794
- "value": 500
1534
+ "value": 400,
1535
+ "public": true
795
1536
  },
796
- "name": "typography-font-weight-medium",
1537
+ "name": "typography-font-weight-regular",
797
1538
  "attributes": {
798
1539
  "category": "typography",
799
1540
  "type": "font-weight",
800
- "item": "medium"
1541
+ "item": "regular"
801
1542
  },
802
1543
  "path": [
803
1544
  "typography",
804
1545
  "font-weight",
805
- "medium"
1546
+ "regular"
806
1547
  ]
807
1548
  },
808
1549
  "semibold": {
809
1550
  "value": 600,
1551
+ "public": true,
810
1552
  "filePath": "tokens/typography/base/font-weight.json",
811
1553
  "isSource": true,
812
1554
  "original": {
813
- "value": 600
1555
+ "value": 600,
1556
+ "public": true
814
1557
  },
815
1558
  "name": "typography-font-weight-semibold",
816
1559
  "attributes": {
@@ -826,10 +1569,12 @@
826
1569
  },
827
1570
  "bold": {
828
1571
  "value": 700,
1572
+ "public": true,
829
1573
  "filePath": "tokens/typography/base/font-weight.json",
830
1574
  "isSource": true,
831
1575
  "original": {
832
- "value": 700
1576
+ "value": 700,
1577
+ "public": true
833
1578
  },
834
1579
  "name": "typography-font-weight-bold",
835
1580
  "attributes": {
@@ -845,10 +1590,12 @@
845
1590
  },
846
1591
  "extrabold": {
847
1592
  "value": 800,
1593
+ "public": true,
848
1594
  "filePath": "tokens/typography/base/font-weight.json",
849
1595
  "isSource": true,
850
1596
  "original": {
851
- "value": 800
1597
+ "value": 800,
1598
+ "public": true
852
1599
  },
853
1600
  "name": "typography-font-weight-extrabold",
854
1601
  "attributes": {
@@ -866,12 +1613,14 @@
866
1613
  "letter-spacing": {
867
1614
  "XL": {
868
1615
  "value": "0.06",
869
- "defaultUnit": "em",
1616
+ "defaultUnit": "rem",
1617
+ "public": true,
870
1618
  "filePath": "tokens/typography/base/letter-spacing.json",
871
1619
  "isSource": true,
872
1620
  "original": {
873
1621
  "value": "0.06",
874
- "defaultUnit": "em"
1622
+ "defaultUnit": "rem",
1623
+ "public": true
875
1624
  },
876
1625
  "name": "typography-letter-spacing-xl",
877
1626
  "attributes": {
@@ -887,12 +1636,14 @@
887
1636
  },
888
1637
  "L": {
889
1638
  "value": "0.04",
890
- "defaultUnit": "em",
1639
+ "defaultUnit": "rem",
1640
+ "public": true,
891
1641
  "filePath": "tokens/typography/base/letter-spacing.json",
892
1642
  "isSource": true,
893
1643
  "original": {
894
1644
  "value": "0.04",
895
- "defaultUnit": "em"
1645
+ "defaultUnit": "rem",
1646
+ "public": true
896
1647
  },
897
1648
  "name": "typography-letter-spacing-l",
898
1649
  "attributes": {
@@ -908,12 +1659,14 @@
908
1659
  },
909
1660
  "M": {
910
1661
  "value": "0.02",
911
- "defaultUnit": "em",
1662
+ "defaultUnit": "rem",
1663
+ "public": true,
912
1664
  "filePath": "tokens/typography/base/letter-spacing.json",
913
1665
  "isSource": true,
914
1666
  "original": {
915
1667
  "value": "0.02",
916
- "defaultUnit": "em"
1668
+ "defaultUnit": "rem",
1669
+ "public": true
917
1670
  },
918
1671
  "name": "typography-letter-spacing-m",
919
1672
  "attributes": {
@@ -929,12 +1682,14 @@
929
1682
  },
930
1683
  "S": {
931
1684
  "value": "0.01",
932
- "defaultUnit": "em",
1685
+ "defaultUnit": "rem",
1686
+ "public": true,
933
1687
  "filePath": "tokens/typography/base/letter-spacing.json",
934
1688
  "isSource": true,
935
1689
  "original": {
936
1690
  "value": "0.01",
937
- "defaultUnit": "em"
1691
+ "defaultUnit": "rem",
1692
+ "public": true
938
1693
  },
939
1694
  "name": "typography-letter-spacing-s",
940
1695
  "attributes": {
@@ -950,12 +1705,35 @@
950
1705
  }
951
1706
  },
952
1707
  "line-height": {
1708
+ "XL": {
1709
+ "value": "195%",
1710
+ "public": true,
1711
+ "filePath": "tokens/typography/base/line-height.json",
1712
+ "isSource": true,
1713
+ "original": {
1714
+ "value": "195%",
1715
+ "public": true
1716
+ },
1717
+ "name": "typography-line-height-xl",
1718
+ "attributes": {
1719
+ "category": "typography",
1720
+ "type": "line-height",
1721
+ "item": "XL"
1722
+ },
1723
+ "path": [
1724
+ "typography",
1725
+ "line-height",
1726
+ "XL"
1727
+ ]
1728
+ },
953
1729
  "L": {
954
- "value": "195.3%",
1730
+ "value": "165%",
1731
+ "public": true,
955
1732
  "filePath": "tokens/typography/base/line-height.json",
956
1733
  "isSource": true,
957
1734
  "original": {
958
- "value": "195.3%"
1735
+ "value": "165%",
1736
+ "public": true
959
1737
  },
960
1738
  "name": "typography-line-height-l",
961
1739
  "attributes": {
@@ -970,11 +1748,13 @@
970
1748
  ]
971
1749
  },
972
1750
  "M": {
973
- "value": "156.3%",
1751
+ "value": "140%",
1752
+ "public": true,
974
1753
  "filePath": "tokens/typography/base/line-height.json",
975
1754
  "isSource": true,
976
1755
  "original": {
977
- "value": "156.3%"
1756
+ "value": "140%",
1757
+ "public": true
978
1758
  },
979
1759
  "name": "typography-line-height-m",
980
1760
  "attributes": {
@@ -989,11 +1769,13 @@
989
1769
  ]
990
1770
  },
991
1771
  "S": {
992
- "value": "125%",
1772
+ "value": "120%",
1773
+ "public": true,
993
1774
  "filePath": "tokens/typography/base/line-height.json",
994
1775
  "isSource": true,
995
1776
  "original": {
996
- "value": "125%"
1777
+ "value": "120%",
1778
+ "public": true
997
1779
  },
998
1780
  "name": "typography-line-height-s",
999
1781
  "attributes": {
@@ -1008,36 +1790,178 @@
1008
1790
  ]
1009
1791
  }
1010
1792
  },
1011
- "scale-ratio": {
1012
- "value": "1.25",
1013
- "comment": "The base ratio/multiplier of the typographic scale.",
1014
- "filePath": "tokens/typography/base/size.json",
1015
- "isSource": true,
1016
- "original": {
1017
- "value": "1.25",
1018
- "comment": "The base ratio/multiplier of the typographic scale."
1019
- },
1020
- "name": "typography-scale-ratio",
1021
- "attributes": {
1022
- "category": "typography",
1023
- "type": "scale-ratio"
1793
+ "multiplier": {
1794
+ "small": {
1795
+ "value": "0.625",
1796
+ "public": true,
1797
+ "filePath": "tokens/typography/base/multipliers.json",
1798
+ "isSource": true,
1799
+ "original": {
1800
+ "value": "0.625",
1801
+ "public": true
1802
+ },
1803
+ "name": "typography-multiplier-small",
1804
+ "attributes": {
1805
+ "category": "typography",
1806
+ "type": "multiplier",
1807
+ "item": "small"
1808
+ },
1809
+ "path": [
1810
+ "typography",
1811
+ "multiplier",
1812
+ "small"
1813
+ ]
1024
1814
  },
1025
- "path": [
1026
- "typography",
1027
- "scale-ratio"
1028
- ]
1815
+ "medium": {
1816
+ "value": "0.78",
1817
+ "public": true,
1818
+ "filePath": "tokens/typography/base/multipliers.json",
1819
+ "isSource": true,
1820
+ "original": {
1821
+ "value": "0.78",
1822
+ "public": true
1823
+ },
1824
+ "name": "typography-multiplier-medium",
1825
+ "attributes": {
1826
+ "category": "typography",
1827
+ "type": "multiplier",
1828
+ "item": "medium"
1829
+ },
1830
+ "path": [
1831
+ "typography",
1832
+ "multiplier",
1833
+ "medium"
1834
+ ]
1835
+ }
1029
1836
  },
1030
1837
  "size": {
1838
+ "9XL": {
1839
+ "value": "6.192",
1840
+ "defaultUnit": "rem",
1841
+ "public": true,
1842
+ "filePath": "tokens/typography/base/size.json",
1843
+ "isSource": true,
1844
+ "original": {
1845
+ "value": "6.192",
1846
+ "defaultUnit": "rem",
1847
+ "public": true
1848
+ },
1849
+ "name": "typography-size-9-xl",
1850
+ "attributes": {
1851
+ "category": "typography",
1852
+ "type": "size",
1853
+ "item": "9XL"
1854
+ },
1855
+ "path": [
1856
+ "typography",
1857
+ "size",
1858
+ "9XL"
1859
+ ]
1860
+ },
1861
+ "8XL": {
1862
+ "value": "5.160",
1863
+ "defaultUnit": "rem",
1864
+ "public": true,
1865
+ "filePath": "tokens/typography/base/size.json",
1866
+ "isSource": true,
1867
+ "original": {
1868
+ "value": "5.160",
1869
+ "defaultUnit": "rem",
1870
+ "public": true
1871
+ },
1872
+ "name": "typography-size-8-xl",
1873
+ "attributes": {
1874
+ "category": "typography",
1875
+ "type": "size",
1876
+ "item": "8XL"
1877
+ },
1878
+ "path": [
1879
+ "typography",
1880
+ "size",
1881
+ "8XL"
1882
+ ]
1883
+ },
1884
+ "7XL": {
1885
+ "value": "4.3",
1886
+ "defaultUnit": "rem",
1887
+ "public": true,
1888
+ "filePath": "tokens/typography/base/size.json",
1889
+ "isSource": true,
1890
+ "original": {
1891
+ "value": "4.3",
1892
+ "defaultUnit": "rem",
1893
+ "public": true
1894
+ },
1895
+ "name": "typography-size-7-xl",
1896
+ "attributes": {
1897
+ "category": "typography",
1898
+ "type": "size",
1899
+ "item": "7XL"
1900
+ },
1901
+ "path": [
1902
+ "typography",
1903
+ "size",
1904
+ "7XL"
1905
+ ]
1906
+ },
1907
+ "6XL": {
1908
+ "value": "3.583",
1909
+ "defaultUnit": "rem",
1910
+ "public": true,
1911
+ "filePath": "tokens/typography/base/size.json",
1912
+ "isSource": true,
1913
+ "original": {
1914
+ "value": "3.583",
1915
+ "defaultUnit": "rem",
1916
+ "public": true
1917
+ },
1918
+ "name": "typography-size-6-xl",
1919
+ "attributes": {
1920
+ "category": "typography",
1921
+ "type": "size",
1922
+ "item": "6XL"
1923
+ },
1924
+ "path": [
1925
+ "typography",
1926
+ "size",
1927
+ "6XL"
1928
+ ]
1929
+ },
1930
+ "5XL": {
1931
+ "value": "2.986",
1932
+ "defaultUnit": "rem",
1933
+ "public": true,
1934
+ "comment": "Default h1",
1935
+ "filePath": "tokens/typography/base/size.json",
1936
+ "isSource": true,
1937
+ "original": {
1938
+ "value": "2.986",
1939
+ "defaultUnit": "rem",
1940
+ "public": true,
1941
+ "comment": "Default h1"
1942
+ },
1943
+ "name": "typography-size-5-xl",
1944
+ "attributes": {
1945
+ "category": "typography",
1946
+ "type": "size",
1947
+ "item": "5XL"
1948
+ },
1949
+ "path": [
1950
+ "typography",
1951
+ "size",
1952
+ "5XL"
1953
+ ]
1954
+ },
1031
1955
  "4XL": {
1032
- "value": "3.052",
1033
- "formula": "1.25**5",
1034
- "defaultUnit": "em",
1956
+ "value": "2.488",
1957
+ "defaultUnit": "rem",
1958
+ "public": true,
1035
1959
  "filePath": "tokens/typography/base/size.json",
1036
1960
  "isSource": true,
1037
1961
  "original": {
1038
- "value": "3.052",
1039
- "formula": "{typography.scale-ratio}**5",
1040
- "defaultUnit": "em"
1962
+ "value": "2.488",
1963
+ "defaultUnit": "rem",
1964
+ "public": true
1041
1965
  },
1042
1966
  "name": "typography-size-4-xl",
1043
1967
  "attributes": {
@@ -1052,15 +1976,17 @@
1052
1976
  ]
1053
1977
  },
1054
1978
  "3XL": {
1055
- "value": "2.441",
1056
- "formula": "1.25**4",
1057
- "defaultUnit": "em",
1979
+ "value": "2.074",
1980
+ "defaultUnit": "rem",
1981
+ "public": true,
1982
+ "comment": "Default h2",
1058
1983
  "filePath": "tokens/typography/base/size.json",
1059
1984
  "isSource": true,
1060
1985
  "original": {
1061
- "value": "2.441",
1062
- "formula": "{typography.scale-ratio}**4",
1063
- "defaultUnit": "em"
1986
+ "value": "2.074",
1987
+ "defaultUnit": "rem",
1988
+ "public": true,
1989
+ "comment": "Default h2"
1064
1990
  },
1065
1991
  "name": "typography-size-3-xl",
1066
1992
  "attributes": {
@@ -1075,15 +2001,17 @@
1075
2001
  ]
1076
2002
  },
1077
2003
  "2XL": {
1078
- "value": "1.953",
1079
- "formula": "1.25**3",
1080
- "defaultUnit": "em",
2004
+ "value": "1.728",
2005
+ "defaultUnit": "rem",
2006
+ "public": true,
2007
+ "comment": "Default h3",
1081
2008
  "filePath": "tokens/typography/base/size.json",
1082
2009
  "isSource": true,
1083
2010
  "original": {
1084
- "value": "1.953",
1085
- "formula": "{typography.scale-ratio}**3",
1086
- "defaultUnit": "em"
2011
+ "value": "1.728",
2012
+ "defaultUnit": "rem",
2013
+ "public": true,
2014
+ "comment": "Default h3"
1087
2015
  },
1088
2016
  "name": "typography-size-2-xl",
1089
2017
  "attributes": {
@@ -1098,15 +2026,17 @@
1098
2026
  ]
1099
2027
  },
1100
2028
  "XL": {
1101
- "value": "1.563",
1102
- "formula": "1.25**2",
1103
- "defaultUnit": "em",
2029
+ "value": "1.44",
2030
+ "defaultUnit": "rem",
2031
+ "public": true,
2032
+ "comment": "Default h4",
1104
2033
  "filePath": "tokens/typography/base/size.json",
1105
2034
  "isSource": true,
1106
2035
  "original": {
1107
- "value": "1.563",
1108
- "formula": "{typography.scale-ratio}**2",
1109
- "defaultUnit": "em"
2036
+ "value": "1.44",
2037
+ "defaultUnit": "rem",
2038
+ "public": true,
2039
+ "comment": "Default h4"
1110
2040
  },
1111
2041
  "name": "typography-size-xl",
1112
2042
  "attributes": {
@@ -1121,15 +2051,17 @@
1121
2051
  ]
1122
2052
  },
1123
2053
  "L": {
1124
- "value": "1.25",
1125
- "formula": "1.25**1",
1126
- "defaultUnit": "em",
2054
+ "value": "1.2",
2055
+ "defaultUnit": "rem",
2056
+ "public": true,
2057
+ "comment": "Default h5",
1127
2058
  "filePath": "tokens/typography/base/size.json",
1128
2059
  "isSource": true,
1129
2060
  "original": {
1130
- "value": "1.25",
1131
- "formula": "{typography.scale-ratio}**1",
1132
- "defaultUnit": "em"
2061
+ "value": "1.2",
2062
+ "defaultUnit": "rem",
2063
+ "public": true,
2064
+ "comment": "Default h5"
1133
2065
  },
1134
2066
  "name": "typography-size-l",
1135
2067
  "attributes": {
@@ -1145,14 +2077,16 @@
1145
2077
  },
1146
2078
  "M": {
1147
2079
  "value": "1",
2080
+ "defaultUnit": "rem",
2081
+ "public": true,
1148
2082
  "comment": "Base value.",
1149
- "defaultUnit": "em",
1150
2083
  "filePath": "tokens/typography/base/size.json",
1151
2084
  "isSource": true,
1152
2085
  "original": {
1153
2086
  "value": "1",
1154
- "comment": "Base value.",
1155
- "defaultUnit": "em"
2087
+ "defaultUnit": "rem",
2088
+ "public": true,
2089
+ "comment": "Base value."
1156
2090
  },
1157
2091
  "name": "typography-size-m",
1158
2092
  "attributes": {
@@ -1167,15 +2101,15 @@
1167
2101
  ]
1168
2102
  },
1169
2103
  "S": {
1170
- "value": "0.875",
1171
- "formula": "1.25**-1",
1172
- "defaultUnit": "em",
2104
+ "value": "0.833",
2105
+ "defaultUnit": "rem",
2106
+ "public": true,
1173
2107
  "filePath": "tokens/typography/base/size.json",
1174
2108
  "isSource": true,
1175
2109
  "original": {
1176
- "value": "0.875",
1177
- "formula": "{typography.scale-ratio}**-1",
1178
- "defaultUnit": "em"
2110
+ "value": "0.833",
2111
+ "defaultUnit": "rem",
2112
+ "public": true
1179
2113
  },
1180
2114
  "name": "typography-size-s",
1181
2115
  "attributes": {
@@ -1190,15 +2124,15 @@
1190
2124
  ]
1191
2125
  },
1192
2126
  "XS": {
1193
- "value": "0.75",
1194
- "formula": "1.25**-2",
1195
- "defaultUnit": "em",
2127
+ "value": "0.694",
2128
+ "defaultUnit": "rem",
2129
+ "public": true,
1196
2130
  "filePath": "tokens/typography/base/size.json",
1197
2131
  "isSource": true,
1198
2132
  "original": {
1199
- "value": "0.75",
1200
- "formula": "{typography.scale-ratio}**-2",
1201
- "defaultUnit": "em"
2133
+ "value": "0.694",
2134
+ "defaultUnit": "rem",
2135
+ "public": true
1202
2136
  },
1203
2137
  "name": "typography-size-xs",
1204
2138
  "attributes": {
@@ -1213,5 +2147,102 @@
1213
2147
  ]
1214
2148
  }
1215
2149
  }
2150
+ },
2151
+ "z-index": {
2152
+ "navigation": {
2153
+ "value": 100,
2154
+ "public": true,
2155
+ "filePath": "tokens/z-index/base.json",
2156
+ "isSource": true,
2157
+ "original": {
2158
+ "value": 100,
2159
+ "public": true
2160
+ },
2161
+ "name": "z-index-navigation",
2162
+ "attributes": {
2163
+ "category": "z-index",
2164
+ "type": "navigation"
2165
+ },
2166
+ "path": [
2167
+ "z-index",
2168
+ "navigation"
2169
+ ]
2170
+ },
2171
+ "dropdown": {
2172
+ "value": 200,
2173
+ "public": true,
2174
+ "filePath": "tokens/z-index/base.json",
2175
+ "isSource": true,
2176
+ "original": {
2177
+ "value": 200,
2178
+ "public": true
2179
+ },
2180
+ "name": "z-index-dropdown",
2181
+ "attributes": {
2182
+ "category": "z-index",
2183
+ "type": "dropdown"
2184
+ },
2185
+ "path": [
2186
+ "z-index",
2187
+ "dropdown"
2188
+ ]
2189
+ },
2190
+ "notifications": {
2191
+ "value": 300,
2192
+ "public": true,
2193
+ "filePath": "tokens/z-index/base.json",
2194
+ "isSource": true,
2195
+ "original": {
2196
+ "value": 300,
2197
+ "public": true
2198
+ },
2199
+ "name": "z-index-notifications",
2200
+ "attributes": {
2201
+ "category": "z-index",
2202
+ "type": "notifications"
2203
+ },
2204
+ "path": [
2205
+ "z-index",
2206
+ "notifications"
2207
+ ]
2208
+ },
2209
+ "overlay": {
2210
+ "value": 400,
2211
+ "public": true,
2212
+ "filePath": "tokens/z-index/base.json",
2213
+ "isSource": true,
2214
+ "original": {
2215
+ "value": 400,
2216
+ "public": true
2217
+ },
2218
+ "name": "z-index-overlay",
2219
+ "attributes": {
2220
+ "category": "z-index",
2221
+ "type": "overlay"
2222
+ },
2223
+ "path": [
2224
+ "z-index",
2225
+ "overlay"
2226
+ ]
2227
+ },
2228
+ "modal": {
2229
+ "value": 500,
2230
+ "public": true,
2231
+ "filePath": "tokens/z-index/base.json",
2232
+ "isSource": true,
2233
+ "original": {
2234
+ "value": 500,
2235
+ "public": true
2236
+ },
2237
+ "name": "z-index-modal",
2238
+ "attributes": {
2239
+ "category": "z-index",
2240
+ "type": "modal"
2241
+ },
2242
+ "path": [
2243
+ "z-index",
2244
+ "modal"
2245
+ ]
2246
+ }
1216
2247
  }
1217
- }
2248
+ }