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

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,735 @@
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"
316
589
  ]
317
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"
673
+ ]
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
+ "dashboard-nav": {
990
+ "item-height": {
991
+ "value": 2.25,
992
+ "defaultUnit": "rem",
993
+ "public": true,
994
+ "filePath": "tokens/spacing/alias.json",
995
+ "isSource": true,
996
+ "original": {
997
+ "value": 2.25,
998
+ "defaultUnit": "rem",
999
+ "public": true
1000
+ },
1001
+ "name": "spacing-dashboard-nav-item-height",
1002
+ "attributes": {
1003
+ "category": "spacing",
1004
+ "type": "dashboard-nav",
1005
+ "item": "item-height"
1006
+ },
1007
+ "path": [
1008
+ "spacing",
1009
+ "dashboard-nav",
1010
+ "item-height"
1011
+ ]
1012
+ },
1013
+ "item-padding": {
1014
+ "value": 0.625,
1015
+ "defaultUnit": "rem",
1016
+ "public": true,
1017
+ "filePath": "tokens/spacing/alias.json",
1018
+ "isSource": true,
1019
+ "original": {
1020
+ "value": 0.625,
1021
+ "defaultUnit": "rem",
1022
+ "public": true
1023
+ },
1024
+ "name": "spacing-dashboard-nav-item-padding",
1025
+ "attributes": {
1026
+ "category": "spacing",
1027
+ "type": "dashboard-nav",
1028
+ "item": "item-padding"
1029
+ },
1030
+ "path": [
1031
+ "spacing",
1032
+ "dashboard-nav",
1033
+ "item-padding"
1034
+ ]
1035
+ }
1036
+ },
1037
+ "8XL": {
1038
+ "value": "7.451",
1039
+ "defaultUnit": "rem",
1040
+ "public": true,
343
1041
  "filePath": "tokens/spacing/base.json",
344
1042
  "isSource": true,
345
1043
  "original": {
346
- "value": "1.25",
347
- "comment": "Base ratio/multiplier"
1044
+ "value": "7.451",
1045
+ "defaultUnit": "rem",
1046
+ "public": true
348
1047
  },
349
- "name": "spacing-scale-ratio",
1048
+ "name": "spacing-8-xl",
350
1049
  "attributes": {
351
1050
  "category": "spacing",
352
- "type": "scale-ratio"
1051
+ "type": "8XL"
353
1052
  },
354
1053
  "path": [
355
1054
  "spacing",
356
- "scale-ratio"
1055
+ "8XL"
1056
+ ]
1057
+ },
1058
+ "7XL": {
1059
+ "value": "5.96",
1060
+ "defaultUnit": "rem",
1061
+ "public": true,
1062
+ "filePath": "tokens/spacing/base.json",
1063
+ "isSource": true,
1064
+ "original": {
1065
+ "value": "5.96",
1066
+ "defaultUnit": "rem",
1067
+ "public": true
1068
+ },
1069
+ "name": "spacing-7-xl",
1070
+ "attributes": {
1071
+ "category": "spacing",
1072
+ "type": "7XL"
1073
+ },
1074
+ "path": [
1075
+ "spacing",
1076
+ "7XL"
357
1077
  ]
358
1078
  },
359
1079
  "6XL": {
360
1080
  "value": "4.678",
361
- "formula": "1.25**7",
362
1081
  "defaultUnit": "rem",
1082
+ "public": true,
363
1083
  "filePath": "tokens/spacing/base.json",
364
1084
  "isSource": true,
365
1085
  "original": {
366
1086
  "value": "4.678",
367
- "formula": "{spacing.scale-ratio}**7",
368
- "defaultUnit": "rem"
1087
+ "defaultUnit": "rem",
1088
+ "public": true
369
1089
  },
370
1090
  "name": "spacing-6-xl",
371
1091
  "attributes": {
@@ -379,14 +1099,14 @@
379
1099
  },
380
1100
  "5XL": {
381
1101
  "value": "3.815",
382
- "formula": "1.25**6",
383
1102
  "defaultUnit": "rem",
1103
+ "public": true,
384
1104
  "filePath": "tokens/spacing/base.json",
385
1105
  "isSource": true,
386
1106
  "original": {
387
1107
  "value": "3.815",
388
- "formula": "{spacing.scale-ratio}**6",
389
- "defaultUnit": "rem"
1108
+ "defaultUnit": "rem",
1109
+ "public": true
390
1110
  },
391
1111
  "name": "spacing-5-xl",
392
1112
  "attributes": {
@@ -400,14 +1120,14 @@
400
1120
  },
401
1121
  "4XL": {
402
1122
  "value": "3.052",
403
- "formula": "1.25**5",
404
1123
  "defaultUnit": "rem",
1124
+ "public": true,
405
1125
  "filePath": "tokens/spacing/base.json",
406
1126
  "isSource": true,
407
1127
  "original": {
408
1128
  "value": "3.052",
409
- "formula": "{spacing.scale-ratio}**5",
410
- "defaultUnit": "rem"
1129
+ "defaultUnit": "rem",
1130
+ "public": true
411
1131
  },
412
1132
  "name": "spacing-4-xl",
413
1133
  "attributes": {
@@ -421,14 +1141,14 @@
421
1141
  },
422
1142
  "3XL": {
423
1143
  "value": "2.441",
424
- "formula": "1.25**4",
425
1144
  "defaultUnit": "rem",
1145
+ "public": true,
426
1146
  "filePath": "tokens/spacing/base.json",
427
1147
  "isSource": true,
428
1148
  "original": {
429
1149
  "value": "2.441",
430
- "formula": "{spacing.scale-ratio}**4",
431
- "defaultUnit": "rem"
1150
+ "defaultUnit": "rem",
1151
+ "public": true
432
1152
  },
433
1153
  "name": "spacing-3-xl",
434
1154
  "attributes": {
@@ -442,14 +1162,14 @@
442
1162
  },
443
1163
  "2XL": {
444
1164
  "value": "1.953",
445
- "formula": "1.25**3",
446
1165
  "defaultUnit": "rem",
1166
+ "public": true,
447
1167
  "filePath": "tokens/spacing/base.json",
448
1168
  "isSource": true,
449
1169
  "original": {
450
1170
  "value": "1.953",
451
- "formula": "{spacing.scale-ratio}**3",
452
- "defaultUnit": "rem"
1171
+ "defaultUnit": "rem",
1172
+ "public": true
453
1173
  },
454
1174
  "name": "spacing-2-xl",
455
1175
  "attributes": {
@@ -463,14 +1183,14 @@
463
1183
  },
464
1184
  "XL": {
465
1185
  "value": "1.563",
466
- "formula": "1.25**2",
467
1186
  "defaultUnit": "rem",
1187
+ "public": true,
468
1188
  "filePath": "tokens/spacing/base.json",
469
1189
  "isSource": true,
470
1190
  "original": {
471
1191
  "value": "1.563",
472
- "formula": "{spacing.scale-ratio}**2",
473
- "defaultUnit": "rem"
1192
+ "defaultUnit": "rem",
1193
+ "public": true
474
1194
  },
475
1195
  "name": "spacing-xl",
476
1196
  "attributes": {
@@ -484,14 +1204,14 @@
484
1204
  },
485
1205
  "L": {
486
1206
  "value": "1.25",
487
- "formula": "1.25**1",
488
1207
  "defaultUnit": "rem",
1208
+ "public": true,
489
1209
  "filePath": "tokens/spacing/base.json",
490
1210
  "isSource": true,
491
1211
  "original": {
492
1212
  "value": "1.25",
493
- "formula": "{spacing.scale-ratio}**1",
494
- "defaultUnit": "rem"
1213
+ "defaultUnit": "rem",
1214
+ "public": true
495
1215
  },
496
1216
  "name": "spacing-l",
497
1217
  "attributes": {
@@ -506,11 +1226,13 @@
506
1226
  "M": {
507
1227
  "value": "1",
508
1228
  "defaultUnit": "rem",
1229
+ "public": true,
509
1230
  "filePath": "tokens/spacing/base.json",
510
1231
  "isSource": true,
511
1232
  "original": {
512
1233
  "value": "1",
513
- "defaultUnit": "rem"
1234
+ "defaultUnit": "rem",
1235
+ "public": true
514
1236
  },
515
1237
  "name": "spacing-m",
516
1238
  "attributes": {
@@ -524,14 +1246,14 @@
524
1246
  },
525
1247
  "S": {
526
1248
  "value": "0.8",
527
- "formula": "1.25**-1",
528
1249
  "defaultUnit": "rem",
1250
+ "public": true,
529
1251
  "filePath": "tokens/spacing/base.json",
530
1252
  "isSource": true,
531
1253
  "original": {
532
1254
  "value": "0.8",
533
- "formula": "{spacing.scale-ratio}**-1",
534
- "defaultUnit": "rem"
1255
+ "defaultUnit": "rem",
1256
+ "public": true
535
1257
  },
536
1258
  "name": "spacing-s",
537
1259
  "attributes": {
@@ -545,14 +1267,14 @@
545
1267
  },
546
1268
  "XS": {
547
1269
  "value": "0.64",
548
- "formula": "1.25**-2",
549
1270
  "defaultUnit": "rem",
1271
+ "public": true,
550
1272
  "filePath": "tokens/spacing/base.json",
551
1273
  "isSource": true,
552
1274
  "original": {
553
1275
  "value": "0.64",
554
- "formula": "{spacing.scale-ratio}**-2",
555
- "defaultUnit": "rem"
1276
+ "defaultUnit": "rem",
1277
+ "public": true
556
1278
  },
557
1279
  "name": "spacing-xs",
558
1280
  "attributes": {
@@ -566,14 +1288,14 @@
566
1288
  },
567
1289
  "2XS": {
568
1290
  "value": "0.512",
569
- "formula": "1.25**-3",
570
1291
  "defaultUnit": "rem",
1292
+ "public": true,
571
1293
  "filePath": "tokens/spacing/base.json",
572
1294
  "isSource": true,
573
1295
  "original": {
574
1296
  "value": "0.512",
575
- "formula": "{spacing.scale-ratio}**-3",
576
- "defaultUnit": "rem"
1297
+ "defaultUnit": "rem",
1298
+ "public": true
577
1299
  },
578
1300
  "name": "spacing-2-xs",
579
1301
  "attributes": {
@@ -587,14 +1309,14 @@
587
1309
  },
588
1310
  "3XS": {
589
1311
  "value": "0.41",
590
- "formula": "1.25**-4",
591
1312
  "defaultUnit": "rem",
1313
+ "public": true,
592
1314
  "filePath": "tokens/spacing/base.json",
593
1315
  "isSource": true,
594
1316
  "original": {
595
1317
  "value": "0.41",
596
- "formula": "{spacing.scale-ratio}**-4",
597
- "defaultUnit": "rem"
1318
+ "defaultUnit": "rem",
1319
+ "public": true
598
1320
  },
599
1321
  "name": "spacing-3-xs",
600
1322
  "attributes": {
@@ -608,14 +1330,14 @@
608
1330
  },
609
1331
  "4XS": {
610
1332
  "value": "0.328",
611
- "formula": "1.25**-5",
612
1333
  "defaultUnit": "rem",
1334
+ "public": true,
613
1335
  "filePath": "tokens/spacing/base.json",
614
1336
  "isSource": true,
615
1337
  "original": {
616
1338
  "value": "0.328",
617
- "formula": "{spacing.scale-ratio}**-5",
618
- "defaultUnit": "rem"
1339
+ "defaultUnit": "rem",
1340
+ "public": true
619
1341
  },
620
1342
  "name": "spacing-4-xs",
621
1343
  "attributes": {
@@ -626,6 +1348,48 @@
626
1348
  "spacing",
627
1349
  "4XS"
628
1350
  ]
1351
+ },
1352
+ "5XS": {
1353
+ "value": "0.25",
1354
+ "defaultUnit": "rem",
1355
+ "public": true,
1356
+ "filePath": "tokens/spacing/base.json",
1357
+ "isSource": true,
1358
+ "original": {
1359
+ "value": "0.25",
1360
+ "defaultUnit": "rem",
1361
+ "public": true
1362
+ },
1363
+ "name": "spacing-5-xs",
1364
+ "attributes": {
1365
+ "category": "spacing",
1366
+ "type": "5XS"
1367
+ },
1368
+ "path": [
1369
+ "spacing",
1370
+ "5XS"
1371
+ ]
1372
+ },
1373
+ "6XS": {
1374
+ "value": "0.125",
1375
+ "defaultUnit": "rem",
1376
+ "public": true,
1377
+ "filePath": "tokens/spacing/base.json",
1378
+ "isSource": true,
1379
+ "original": {
1380
+ "value": "0.125",
1381
+ "defaultUnit": "rem",
1382
+ "public": true
1383
+ },
1384
+ "name": "spacing-6-xs",
1385
+ "attributes": {
1386
+ "category": "spacing",
1387
+ "type": "6XS"
1388
+ },
1389
+ "path": [
1390
+ "spacing",
1391
+ "6XS"
1392
+ ]
629
1393
  }
630
1394
  },
631
1395
  "typography": {
@@ -651,6 +1415,48 @@
651
1415
  "default"
652
1416
  ]
653
1417
  },
1418
+ "secondary": {
1419
+ "value": "'Aleo', serif",
1420
+ "public": true,
1421
+ "filePath": "tokens/typography/alias/font.json",
1422
+ "isSource": true,
1423
+ "original": {
1424
+ "value": "'Aleo', serif",
1425
+ "public": true
1426
+ },
1427
+ "name": "typography-font-secondary",
1428
+ "attributes": {
1429
+ "category": "typography",
1430
+ "type": "font",
1431
+ "item": "secondary"
1432
+ },
1433
+ "path": [
1434
+ "typography",
1435
+ "font",
1436
+ "secondary"
1437
+ ]
1438
+ },
1439
+ "code": {
1440
+ "value": "'Source Code Pro', monospace",
1441
+ "public": true,
1442
+ "filePath": "tokens/typography/alias/font.json",
1443
+ "isSource": true,
1444
+ "original": {
1445
+ "value": "'Source Code Pro', monospace",
1446
+ "public": true
1447
+ },
1448
+ "name": "typography-font-code",
1449
+ "attributes": {
1450
+ "category": "typography",
1451
+ "type": "font",
1452
+ "item": "code"
1453
+ },
1454
+ "path": [
1455
+ "typography",
1456
+ "font",
1457
+ "code"
1458
+ ]
1459
+ },
654
1460
  "headings": {
655
1461
  "value": "'Poppins', sans-serif",
656
1462
  "filePath": "tokens/typography/alias/font.json",
@@ -694,7 +1500,7 @@
694
1500
  "filePath": "tokens/typography/alias/font.json",
695
1501
  "isSource": true,
696
1502
  "original": {
697
- "value": "'Aleo', serif"
1503
+ "value": "{typography.font.secondary.value}"
698
1504
  },
699
1505
  "name": "typography-font-lead",
700
1506
  "attributes": {
@@ -713,7 +1519,7 @@
713
1519
  "filePath": "tokens/typography/alias/font.json",
714
1520
  "isSource": true,
715
1521
  "original": {
716
- "value": "'Aleo', serif"
1522
+ "value": "{typography.font.secondary.value}"
717
1523
  },
718
1524
  "name": "typography-font-quote",
719
1525
  "attributes": {
@@ -747,11 +1553,11 @@
747
1553
  ]
748
1554
  },
749
1555
  "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'",
1556
+ "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
1557
  "filePath": "tokens/typography/base/font.json",
752
1558
  "isSource": true,
753
1559
  "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'"
1560
+ "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
1561
  },
756
1562
  "name": "typography-font-css-import",
757
1563
  "attributes": {
@@ -765,52 +1571,37 @@
765
1571
  "css-import"
766
1572
  ]
767
1573
  }
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,
1574
+ },
1575
+ "font-weight": {
1576
+ "regular": {
1577
+ "value": 400,
1578
+ "public": true,
791
1579
  "filePath": "tokens/typography/base/font-weight.json",
792
1580
  "isSource": true,
793
1581
  "original": {
794
- "value": 500
1582
+ "value": 400,
1583
+ "public": true
795
1584
  },
796
- "name": "typography-font-weight-medium",
1585
+ "name": "typography-font-weight-regular",
797
1586
  "attributes": {
798
1587
  "category": "typography",
799
1588
  "type": "font-weight",
800
- "item": "medium"
1589
+ "item": "regular"
801
1590
  },
802
1591
  "path": [
803
1592
  "typography",
804
1593
  "font-weight",
805
- "medium"
1594
+ "regular"
806
1595
  ]
807
1596
  },
808
1597
  "semibold": {
809
1598
  "value": 600,
1599
+ "public": true,
810
1600
  "filePath": "tokens/typography/base/font-weight.json",
811
1601
  "isSource": true,
812
1602
  "original": {
813
- "value": 600
1603
+ "value": 600,
1604
+ "public": true
814
1605
  },
815
1606
  "name": "typography-font-weight-semibold",
816
1607
  "attributes": {
@@ -826,10 +1617,12 @@
826
1617
  },
827
1618
  "bold": {
828
1619
  "value": 700,
1620
+ "public": true,
829
1621
  "filePath": "tokens/typography/base/font-weight.json",
830
1622
  "isSource": true,
831
1623
  "original": {
832
- "value": 700
1624
+ "value": 700,
1625
+ "public": true
833
1626
  },
834
1627
  "name": "typography-font-weight-bold",
835
1628
  "attributes": {
@@ -845,10 +1638,12 @@
845
1638
  },
846
1639
  "extrabold": {
847
1640
  "value": 800,
1641
+ "public": true,
848
1642
  "filePath": "tokens/typography/base/font-weight.json",
849
1643
  "isSource": true,
850
1644
  "original": {
851
- "value": 800
1645
+ "value": 800,
1646
+ "public": true
852
1647
  },
853
1648
  "name": "typography-font-weight-extrabold",
854
1649
  "attributes": {
@@ -866,12 +1661,14 @@
866
1661
  "letter-spacing": {
867
1662
  "XL": {
868
1663
  "value": "0.06",
869
- "defaultUnit": "em",
1664
+ "defaultUnit": "rem",
1665
+ "public": true,
870
1666
  "filePath": "tokens/typography/base/letter-spacing.json",
871
1667
  "isSource": true,
872
1668
  "original": {
873
1669
  "value": "0.06",
874
- "defaultUnit": "em"
1670
+ "defaultUnit": "rem",
1671
+ "public": true
875
1672
  },
876
1673
  "name": "typography-letter-spacing-xl",
877
1674
  "attributes": {
@@ -887,12 +1684,14 @@
887
1684
  },
888
1685
  "L": {
889
1686
  "value": "0.04",
890
- "defaultUnit": "em",
1687
+ "defaultUnit": "rem",
1688
+ "public": true,
891
1689
  "filePath": "tokens/typography/base/letter-spacing.json",
892
1690
  "isSource": true,
893
1691
  "original": {
894
1692
  "value": "0.04",
895
- "defaultUnit": "em"
1693
+ "defaultUnit": "rem",
1694
+ "public": true
896
1695
  },
897
1696
  "name": "typography-letter-spacing-l",
898
1697
  "attributes": {
@@ -908,12 +1707,14 @@
908
1707
  },
909
1708
  "M": {
910
1709
  "value": "0.02",
911
- "defaultUnit": "em",
1710
+ "defaultUnit": "rem",
1711
+ "public": true,
912
1712
  "filePath": "tokens/typography/base/letter-spacing.json",
913
1713
  "isSource": true,
914
1714
  "original": {
915
1715
  "value": "0.02",
916
- "defaultUnit": "em"
1716
+ "defaultUnit": "rem",
1717
+ "public": true
917
1718
  },
918
1719
  "name": "typography-letter-spacing-m",
919
1720
  "attributes": {
@@ -929,12 +1730,14 @@
929
1730
  },
930
1731
  "S": {
931
1732
  "value": "0.01",
932
- "defaultUnit": "em",
1733
+ "defaultUnit": "rem",
1734
+ "public": true,
933
1735
  "filePath": "tokens/typography/base/letter-spacing.json",
934
1736
  "isSource": true,
935
1737
  "original": {
936
1738
  "value": "0.01",
937
- "defaultUnit": "em"
1739
+ "defaultUnit": "rem",
1740
+ "public": true
938
1741
  },
939
1742
  "name": "typography-letter-spacing-s",
940
1743
  "attributes": {
@@ -950,12 +1753,35 @@
950
1753
  }
951
1754
  },
952
1755
  "line-height": {
1756
+ "XL": {
1757
+ "value": "195%",
1758
+ "public": true,
1759
+ "filePath": "tokens/typography/base/line-height.json",
1760
+ "isSource": true,
1761
+ "original": {
1762
+ "value": "195%",
1763
+ "public": true
1764
+ },
1765
+ "name": "typography-line-height-xl",
1766
+ "attributes": {
1767
+ "category": "typography",
1768
+ "type": "line-height",
1769
+ "item": "XL"
1770
+ },
1771
+ "path": [
1772
+ "typography",
1773
+ "line-height",
1774
+ "XL"
1775
+ ]
1776
+ },
953
1777
  "L": {
954
- "value": "195.3%",
1778
+ "value": "165%",
1779
+ "public": true,
955
1780
  "filePath": "tokens/typography/base/line-height.json",
956
1781
  "isSource": true,
957
1782
  "original": {
958
- "value": "195.3%"
1783
+ "value": "165%",
1784
+ "public": true
959
1785
  },
960
1786
  "name": "typography-line-height-l",
961
1787
  "attributes": {
@@ -970,11 +1796,13 @@
970
1796
  ]
971
1797
  },
972
1798
  "M": {
973
- "value": "156.3%",
1799
+ "value": "140%",
1800
+ "public": true,
974
1801
  "filePath": "tokens/typography/base/line-height.json",
975
1802
  "isSource": true,
976
1803
  "original": {
977
- "value": "156.3%"
1804
+ "value": "140%",
1805
+ "public": true
978
1806
  },
979
1807
  "name": "typography-line-height-m",
980
1808
  "attributes": {
@@ -989,11 +1817,13 @@
989
1817
  ]
990
1818
  },
991
1819
  "S": {
992
- "value": "125%",
1820
+ "value": "120%",
1821
+ "public": true,
993
1822
  "filePath": "tokens/typography/base/line-height.json",
994
1823
  "isSource": true,
995
1824
  "original": {
996
- "value": "125%"
1825
+ "value": "120%",
1826
+ "public": true
997
1827
  },
998
1828
  "name": "typography-line-height-s",
999
1829
  "attributes": {
@@ -1008,36 +1838,178 @@
1008
1838
  ]
1009
1839
  }
1010
1840
  },
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"
1841
+ "multiplier": {
1842
+ "small": {
1843
+ "value": "0.625",
1844
+ "public": true,
1845
+ "filePath": "tokens/typography/base/multipliers.json",
1846
+ "isSource": true,
1847
+ "original": {
1848
+ "value": "0.625",
1849
+ "public": true
1850
+ },
1851
+ "name": "typography-multiplier-small",
1852
+ "attributes": {
1853
+ "category": "typography",
1854
+ "type": "multiplier",
1855
+ "item": "small"
1856
+ },
1857
+ "path": [
1858
+ "typography",
1859
+ "multiplier",
1860
+ "small"
1861
+ ]
1024
1862
  },
1025
- "path": [
1026
- "typography",
1027
- "scale-ratio"
1028
- ]
1863
+ "medium": {
1864
+ "value": "0.78",
1865
+ "public": true,
1866
+ "filePath": "tokens/typography/base/multipliers.json",
1867
+ "isSource": true,
1868
+ "original": {
1869
+ "value": "0.78",
1870
+ "public": true
1871
+ },
1872
+ "name": "typography-multiplier-medium",
1873
+ "attributes": {
1874
+ "category": "typography",
1875
+ "type": "multiplier",
1876
+ "item": "medium"
1877
+ },
1878
+ "path": [
1879
+ "typography",
1880
+ "multiplier",
1881
+ "medium"
1882
+ ]
1883
+ }
1029
1884
  },
1030
1885
  "size": {
1886
+ "9XL": {
1887
+ "value": "6.192",
1888
+ "defaultUnit": "rem",
1889
+ "public": true,
1890
+ "filePath": "tokens/typography/base/size.json",
1891
+ "isSource": true,
1892
+ "original": {
1893
+ "value": "6.192",
1894
+ "defaultUnit": "rem",
1895
+ "public": true
1896
+ },
1897
+ "name": "typography-size-9-xl",
1898
+ "attributes": {
1899
+ "category": "typography",
1900
+ "type": "size",
1901
+ "item": "9XL"
1902
+ },
1903
+ "path": [
1904
+ "typography",
1905
+ "size",
1906
+ "9XL"
1907
+ ]
1908
+ },
1909
+ "8XL": {
1910
+ "value": "5.160",
1911
+ "defaultUnit": "rem",
1912
+ "public": true,
1913
+ "filePath": "tokens/typography/base/size.json",
1914
+ "isSource": true,
1915
+ "original": {
1916
+ "value": "5.160",
1917
+ "defaultUnit": "rem",
1918
+ "public": true
1919
+ },
1920
+ "name": "typography-size-8-xl",
1921
+ "attributes": {
1922
+ "category": "typography",
1923
+ "type": "size",
1924
+ "item": "8XL"
1925
+ },
1926
+ "path": [
1927
+ "typography",
1928
+ "size",
1929
+ "8XL"
1930
+ ]
1931
+ },
1932
+ "7XL": {
1933
+ "value": "4.3",
1934
+ "defaultUnit": "rem",
1935
+ "public": true,
1936
+ "filePath": "tokens/typography/base/size.json",
1937
+ "isSource": true,
1938
+ "original": {
1939
+ "value": "4.3",
1940
+ "defaultUnit": "rem",
1941
+ "public": true
1942
+ },
1943
+ "name": "typography-size-7-xl",
1944
+ "attributes": {
1945
+ "category": "typography",
1946
+ "type": "size",
1947
+ "item": "7XL"
1948
+ },
1949
+ "path": [
1950
+ "typography",
1951
+ "size",
1952
+ "7XL"
1953
+ ]
1954
+ },
1955
+ "6XL": {
1956
+ "value": "3.583",
1957
+ "defaultUnit": "rem",
1958
+ "public": true,
1959
+ "filePath": "tokens/typography/base/size.json",
1960
+ "isSource": true,
1961
+ "original": {
1962
+ "value": "3.583",
1963
+ "defaultUnit": "rem",
1964
+ "public": true
1965
+ },
1966
+ "name": "typography-size-6-xl",
1967
+ "attributes": {
1968
+ "category": "typography",
1969
+ "type": "size",
1970
+ "item": "6XL"
1971
+ },
1972
+ "path": [
1973
+ "typography",
1974
+ "size",
1975
+ "6XL"
1976
+ ]
1977
+ },
1978
+ "5XL": {
1979
+ "value": "2.986",
1980
+ "defaultUnit": "rem",
1981
+ "public": true,
1982
+ "comment": "Default h1",
1983
+ "filePath": "tokens/typography/base/size.json",
1984
+ "isSource": true,
1985
+ "original": {
1986
+ "value": "2.986",
1987
+ "defaultUnit": "rem",
1988
+ "public": true,
1989
+ "comment": "Default h1"
1990
+ },
1991
+ "name": "typography-size-5-xl",
1992
+ "attributes": {
1993
+ "category": "typography",
1994
+ "type": "size",
1995
+ "item": "5XL"
1996
+ },
1997
+ "path": [
1998
+ "typography",
1999
+ "size",
2000
+ "5XL"
2001
+ ]
2002
+ },
1031
2003
  "4XL": {
1032
- "value": "3.052",
1033
- "formula": "1.25**5",
1034
- "defaultUnit": "em",
2004
+ "value": "2.488",
2005
+ "defaultUnit": "rem",
2006
+ "public": true,
1035
2007
  "filePath": "tokens/typography/base/size.json",
1036
2008
  "isSource": true,
1037
2009
  "original": {
1038
- "value": "3.052",
1039
- "formula": "{typography.scale-ratio}**5",
1040
- "defaultUnit": "em"
2010
+ "value": "2.488",
2011
+ "defaultUnit": "rem",
2012
+ "public": true
1041
2013
  },
1042
2014
  "name": "typography-size-4-xl",
1043
2015
  "attributes": {
@@ -1052,15 +2024,17 @@
1052
2024
  ]
1053
2025
  },
1054
2026
  "3XL": {
1055
- "value": "2.441",
1056
- "formula": "1.25**4",
1057
- "defaultUnit": "em",
2027
+ "value": "2.074",
2028
+ "defaultUnit": "rem",
2029
+ "public": true,
2030
+ "comment": "Default h2",
1058
2031
  "filePath": "tokens/typography/base/size.json",
1059
2032
  "isSource": true,
1060
2033
  "original": {
1061
- "value": "2.441",
1062
- "formula": "{typography.scale-ratio}**4",
1063
- "defaultUnit": "em"
2034
+ "value": "2.074",
2035
+ "defaultUnit": "rem",
2036
+ "public": true,
2037
+ "comment": "Default h2"
1064
2038
  },
1065
2039
  "name": "typography-size-3-xl",
1066
2040
  "attributes": {
@@ -1075,15 +2049,17 @@
1075
2049
  ]
1076
2050
  },
1077
2051
  "2XL": {
1078
- "value": "1.953",
1079
- "formula": "1.25**3",
1080
- "defaultUnit": "em",
2052
+ "value": "1.728",
2053
+ "defaultUnit": "rem",
2054
+ "public": true,
2055
+ "comment": "Default h3",
1081
2056
  "filePath": "tokens/typography/base/size.json",
1082
2057
  "isSource": true,
1083
2058
  "original": {
1084
- "value": "1.953",
1085
- "formula": "{typography.scale-ratio}**3",
1086
- "defaultUnit": "em"
2059
+ "value": "1.728",
2060
+ "defaultUnit": "rem",
2061
+ "public": true,
2062
+ "comment": "Default h3"
1087
2063
  },
1088
2064
  "name": "typography-size-2-xl",
1089
2065
  "attributes": {
@@ -1098,15 +2074,17 @@
1098
2074
  ]
1099
2075
  },
1100
2076
  "XL": {
1101
- "value": "1.563",
1102
- "formula": "1.25**2",
1103
- "defaultUnit": "em",
2077
+ "value": "1.44",
2078
+ "defaultUnit": "rem",
2079
+ "public": true,
2080
+ "comment": "Default h4",
1104
2081
  "filePath": "tokens/typography/base/size.json",
1105
2082
  "isSource": true,
1106
2083
  "original": {
1107
- "value": "1.563",
1108
- "formula": "{typography.scale-ratio}**2",
1109
- "defaultUnit": "em"
2084
+ "value": "1.44",
2085
+ "defaultUnit": "rem",
2086
+ "public": true,
2087
+ "comment": "Default h4"
1110
2088
  },
1111
2089
  "name": "typography-size-xl",
1112
2090
  "attributes": {
@@ -1121,15 +2099,17 @@
1121
2099
  ]
1122
2100
  },
1123
2101
  "L": {
1124
- "value": "1.25",
1125
- "formula": "1.25**1",
1126
- "defaultUnit": "em",
2102
+ "value": "1.2",
2103
+ "defaultUnit": "rem",
2104
+ "public": true,
2105
+ "comment": "Default h5",
1127
2106
  "filePath": "tokens/typography/base/size.json",
1128
2107
  "isSource": true,
1129
2108
  "original": {
1130
- "value": "1.25",
1131
- "formula": "{typography.scale-ratio}**1",
1132
- "defaultUnit": "em"
2109
+ "value": "1.2",
2110
+ "defaultUnit": "rem",
2111
+ "public": true,
2112
+ "comment": "Default h5"
1133
2113
  },
1134
2114
  "name": "typography-size-l",
1135
2115
  "attributes": {
@@ -1145,14 +2125,16 @@
1145
2125
  },
1146
2126
  "M": {
1147
2127
  "value": "1",
2128
+ "defaultUnit": "rem",
2129
+ "public": true,
1148
2130
  "comment": "Base value.",
1149
- "defaultUnit": "em",
1150
2131
  "filePath": "tokens/typography/base/size.json",
1151
2132
  "isSource": true,
1152
2133
  "original": {
1153
2134
  "value": "1",
1154
- "comment": "Base value.",
1155
- "defaultUnit": "em"
2135
+ "defaultUnit": "rem",
2136
+ "public": true,
2137
+ "comment": "Base value."
1156
2138
  },
1157
2139
  "name": "typography-size-m",
1158
2140
  "attributes": {
@@ -1167,15 +2149,15 @@
1167
2149
  ]
1168
2150
  },
1169
2151
  "S": {
1170
- "value": "0.875",
1171
- "formula": "1.25**-1",
1172
- "defaultUnit": "em",
2152
+ "value": "0.833",
2153
+ "defaultUnit": "rem",
2154
+ "public": true,
1173
2155
  "filePath": "tokens/typography/base/size.json",
1174
2156
  "isSource": true,
1175
2157
  "original": {
1176
- "value": "0.875",
1177
- "formula": "{typography.scale-ratio}**-1",
1178
- "defaultUnit": "em"
2158
+ "value": "0.833",
2159
+ "defaultUnit": "rem",
2160
+ "public": true
1179
2161
  },
1180
2162
  "name": "typography-size-s",
1181
2163
  "attributes": {
@@ -1190,15 +2172,15 @@
1190
2172
  ]
1191
2173
  },
1192
2174
  "XS": {
1193
- "value": "0.75",
1194
- "formula": "1.25**-2",
1195
- "defaultUnit": "em",
2175
+ "value": "0.694",
2176
+ "defaultUnit": "rem",
2177
+ "public": true,
1196
2178
  "filePath": "tokens/typography/base/size.json",
1197
2179
  "isSource": true,
1198
2180
  "original": {
1199
- "value": "0.75",
1200
- "formula": "{typography.scale-ratio}**-2",
1201
- "defaultUnit": "em"
2181
+ "value": "0.694",
2182
+ "defaultUnit": "rem",
2183
+ "public": true
1202
2184
  },
1203
2185
  "name": "typography-size-xs",
1204
2186
  "attributes": {
@@ -1213,5 +2195,102 @@
1213
2195
  ]
1214
2196
  }
1215
2197
  }
2198
+ },
2199
+ "z-index": {
2200
+ "navigation": {
2201
+ "value": 100,
2202
+ "public": true,
2203
+ "filePath": "tokens/z-index/base.json",
2204
+ "isSource": true,
2205
+ "original": {
2206
+ "value": 100,
2207
+ "public": true
2208
+ },
2209
+ "name": "z-index-navigation",
2210
+ "attributes": {
2211
+ "category": "z-index",
2212
+ "type": "navigation"
2213
+ },
2214
+ "path": [
2215
+ "z-index",
2216
+ "navigation"
2217
+ ]
2218
+ },
2219
+ "dropdown": {
2220
+ "value": 200,
2221
+ "public": true,
2222
+ "filePath": "tokens/z-index/base.json",
2223
+ "isSource": true,
2224
+ "original": {
2225
+ "value": 200,
2226
+ "public": true
2227
+ },
2228
+ "name": "z-index-dropdown",
2229
+ "attributes": {
2230
+ "category": "z-index",
2231
+ "type": "dropdown"
2232
+ },
2233
+ "path": [
2234
+ "z-index",
2235
+ "dropdown"
2236
+ ]
2237
+ },
2238
+ "notifications": {
2239
+ "value": 300,
2240
+ "public": true,
2241
+ "filePath": "tokens/z-index/base.json",
2242
+ "isSource": true,
2243
+ "original": {
2244
+ "value": 300,
2245
+ "public": true
2246
+ },
2247
+ "name": "z-index-notifications",
2248
+ "attributes": {
2249
+ "category": "z-index",
2250
+ "type": "notifications"
2251
+ },
2252
+ "path": [
2253
+ "z-index",
2254
+ "notifications"
2255
+ ]
2256
+ },
2257
+ "overlay": {
2258
+ "value": 400,
2259
+ "public": true,
2260
+ "filePath": "tokens/z-index/base.json",
2261
+ "isSource": true,
2262
+ "original": {
2263
+ "value": 400,
2264
+ "public": true
2265
+ },
2266
+ "name": "z-index-overlay",
2267
+ "attributes": {
2268
+ "category": "z-index",
2269
+ "type": "overlay"
2270
+ },
2271
+ "path": [
2272
+ "z-index",
2273
+ "overlay"
2274
+ ]
2275
+ },
2276
+ "modal": {
2277
+ "value": 500,
2278
+ "public": true,
2279
+ "filePath": "tokens/z-index/base.json",
2280
+ "isSource": true,
2281
+ "original": {
2282
+ "value": 500,
2283
+ "public": true
2284
+ },
2285
+ "name": "z-index-modal",
2286
+ "attributes": {
2287
+ "category": "z-index",
2288
+ "type": "modal"
2289
+ },
2290
+ "path": [
2291
+ "z-index",
2292
+ "modal"
2293
+ ]
2294
+ }
1216
2295
  }
1217
- }
2296
+ }