@pantheon-systems/pds-design-tokens 1.0.0-dev.13 → 1.0.0-dev.130

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,758 @@
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
+ "tooltip": {
484
+ "max-width": {
485
+ "value": "12.5rem",
486
+ "public": true,
487
+ "filePath": "tokens/container/alias.json",
222
488
  "isSource": true,
223
489
  "original": {
224
- "value": "20.875%"
490
+ "value": "12.5rem",
491
+ "public": true
225
492
  },
226
- "name": "grid-columns-4-width",
493
+ "name": "container-tooltip-max-width",
227
494
  "attributes": {
228
- "category": "grid",
229
- "type": "columns-4",
230
- "item": "width"
495
+ "category": "container",
496
+ "type": "tooltip",
497
+ "item": "max-width"
231
498
  },
232
499
  "path": [
233
- "grid",
234
- "columns-4",
235
- "width"
500
+ "container",
501
+ "tooltip",
502
+ "max-width"
503
+ ]
504
+ }
505
+ },
506
+ "max-width": {
507
+ "narrow": {
508
+ "value": "1024px",
509
+ "public": true,
510
+ "filePath": "tokens/container/base.json",
511
+ "isSource": true,
512
+ "original": {
513
+ "value": "1024px",
514
+ "public": true
515
+ },
516
+ "name": "container-max-width-narrow",
517
+ "attributes": {
518
+ "category": "container",
519
+ "type": "max-width",
520
+ "item": "narrow"
521
+ },
522
+ "path": [
523
+ "container",
524
+ "max-width",
525
+ "narrow"
236
526
  ]
237
527
  },
238
- "gap": {
239
- "value": "5.5%",
240
- "filePath": "tokens/grid/base.json",
528
+ "standard": {
529
+ "value": "1200px",
530
+ "public": true,
531
+ "filePath": "tokens/container/base.json",
241
532
  "isSource": true,
242
533
  "original": {
243
- "value": "5.5%"
534
+ "value": "1200px",
535
+ "public": true
244
536
  },
245
- "name": "grid-columns-4-gap",
537
+ "name": "container-max-width-standard",
246
538
  "attributes": {
247
- "category": "grid",
248
- "type": "columns-4",
249
- "item": "gap"
539
+ "category": "container",
540
+ "type": "max-width",
541
+ "item": "standard"
250
542
  },
251
543
  "path": [
252
- "grid",
253
- "columns-4",
254
- "gap"
544
+ "container",
545
+ "max-width",
546
+ "standard"
255
547
  ]
256
- }
257
- },
258
- "columns-6": {
259
- "width": {
260
- "value": "14.53125%",
261
- "filePath": "tokens/grid/base.json",
548
+ },
549
+ "wide": {
550
+ "value": "1440px",
551
+ "public": true,
552
+ "filePath": "tokens/container/base.json",
262
553
  "isSource": true,
263
554
  "original": {
264
- "value": "14.53125%"
555
+ "value": "1440px",
556
+ "public": true
265
557
  },
266
- "name": "grid-columns-6-width",
558
+ "name": "container-max-width-wide",
267
559
  "attributes": {
268
- "category": "grid",
269
- "type": "columns-6",
270
- "item": "width"
560
+ "category": "container",
561
+ "type": "max-width",
562
+ "item": "wide"
271
563
  },
272
564
  "path": [
273
- "grid",
274
- "columns-6",
275
- "width"
565
+ "container",
566
+ "max-width",
567
+ "wide"
276
568
  ]
277
569
  },
278
- "gap": {
279
- "value": "2.5625%",
280
- "filePath": "tokens/grid/base.json",
570
+ "x-wide": {
571
+ "value": "1600px",
572
+ "public": true,
573
+ "filePath": "tokens/container/base.json",
281
574
  "isSource": true,
282
575
  "original": {
283
- "value": "2.5625%"
576
+ "value": "1600px",
577
+ "public": true
284
578
  },
285
- "name": "grid-columns-6-gap",
579
+ "name": "container-max-width-x-wide",
286
580
  "attributes": {
287
- "category": "grid",
288
- "type": "columns-6",
289
- "item": "gap"
581
+ "category": "container",
582
+ "type": "max-width",
583
+ "item": "x-wide"
290
584
  },
291
585
  "path": [
292
- "grid",
293
- "columns-6",
294
- "gap"
586
+ "container",
587
+ "max-width",
588
+ "x-wide"
295
589
  ]
296
590
  }
297
591
  },
298
- "columns-12": {
299
- "width": {
300
- "value": "6.5%",
301
- "filePath": "tokens/grid/base.json",
592
+ "padding": {
593
+ "base": {
594
+ "value": "1.563",
595
+ "public": true,
596
+ "filePath": "tokens/container/base.json",
302
597
  "isSource": true,
303
598
  "original": {
304
- "value": "6.5%"
599
+ "value": "{spacing.XL.value}",
600
+ "public": true
305
601
  },
306
- "name": "grid-columns-12-width",
602
+ "name": "container-padding-base",
307
603
  "attributes": {
308
- "category": "grid",
309
- "type": "columns-12",
310
- "item": "width"
604
+ "category": "container",
605
+ "type": "padding",
606
+ "item": "base"
311
607
  },
312
608
  "path": [
313
- "grid",
314
- "columns-12",
315
- "width"
609
+ "container",
610
+ "padding",
611
+ "base"
316
612
  ]
317
613
  },
614
+ "narrow-bp-md": {
615
+ "value": "12%",
616
+ "public": true,
617
+ "filePath": "tokens/container/base.json",
618
+ "isSource": true,
619
+ "original": {
620
+ "value": "12%",
621
+ "public": true
622
+ },
623
+ "name": "container-padding-narrow-bp-md",
624
+ "attributes": {
625
+ "category": "container",
626
+ "type": "padding",
627
+ "item": "narrow-bp-md"
628
+ },
629
+ "path": [
630
+ "container",
631
+ "padding",
632
+ "narrow-bp-md"
633
+ ]
634
+ },
635
+ "narrow-bp-lg": {
636
+ "value": "20%",
637
+ "public": true,
638
+ "filePath": "tokens/container/base.json",
639
+ "isSource": true,
640
+ "original": {
641
+ "value": "20%",
642
+ "public": true
643
+ },
644
+ "name": "container-padding-narrow-bp-lg",
645
+ "attributes": {
646
+ "category": "container",
647
+ "type": "padding",
648
+ "item": "narrow-bp-lg"
649
+ },
650
+ "path": [
651
+ "container",
652
+ "padding",
653
+ "narrow-bp-lg"
654
+ ]
655
+ },
656
+ "standard-bp-md": {
657
+ "value": "6%",
658
+ "public": true,
659
+ "filePath": "tokens/container/base.json",
660
+ "isSource": true,
661
+ "original": {
662
+ "value": "6%",
663
+ "public": true
664
+ },
665
+ "name": "container-padding-standard-bp-md",
666
+ "attributes": {
667
+ "category": "container",
668
+ "type": "padding",
669
+ "item": "standard-bp-md"
670
+ },
671
+ "path": [
672
+ "container",
673
+ "padding",
674
+ "standard-bp-md"
675
+ ]
676
+ },
677
+ "standard-bp-lg": {
678
+ "value": "8%",
679
+ "public": true,
680
+ "filePath": "tokens/container/base.json",
681
+ "isSource": true,
682
+ "original": {
683
+ "value": "8%",
684
+ "public": true
685
+ },
686
+ "name": "container-padding-standard-bp-lg",
687
+ "attributes": {
688
+ "category": "container",
689
+ "type": "padding",
690
+ "item": "standard-bp-lg"
691
+ },
692
+ "path": [
693
+ "container",
694
+ "padding",
695
+ "standard-bp-lg"
696
+ ]
697
+ },
698
+ "wide-bp-md": {
699
+ "value": "5%",
700
+ "public": true,
701
+ "filePath": "tokens/container/base.json",
702
+ "isSource": true,
703
+ "original": {
704
+ "value": "5%",
705
+ "public": true
706
+ },
707
+ "name": "container-padding-wide-bp-md",
708
+ "attributes": {
709
+ "category": "container",
710
+ "type": "padding",
711
+ "item": "wide-bp-md"
712
+ },
713
+ "path": [
714
+ "container",
715
+ "padding",
716
+ "wide-bp-md"
717
+ ]
718
+ },
719
+ "wide-bp-lg": {
720
+ "value": "4%",
721
+ "public": true,
722
+ "filePath": "tokens/container/base.json",
723
+ "isSource": true,
724
+ "original": {
725
+ "value": "4%",
726
+ "public": true
727
+ },
728
+ "name": "container-padding-wide-bp-lg",
729
+ "attributes": {
730
+ "category": "container",
731
+ "type": "padding",
732
+ "item": "wide-bp-lg"
733
+ },
734
+ "path": [
735
+ "container",
736
+ "padding",
737
+ "wide-bp-lg"
738
+ ]
739
+ }
740
+ }
741
+ },
742
+ "grid": {
743
+ "columns-4": {
318
744
  "gap": {
319
- "value": "2%",
745
+ "value": "5.5%",
320
746
  "filePath": "tokens/grid/base.json",
321
747
  "isSource": true,
322
748
  "original": {
323
- "value": "2%"
749
+ "value": "5.5%"
324
750
  },
325
- "name": "grid-columns-12-gap",
751
+ "name": "grid-columns-4-gap",
326
752
  "attributes": {
327
753
  "category": "grid",
328
- "type": "columns-12",
754
+ "type": "columns-4",
329
755
  "item": "gap"
330
756
  },
331
757
  "path": [
332
758
  "grid",
333
- "columns-12",
759
+ "columns-4",
334
760
  "gap"
335
761
  ]
336
762
  }
763
+ },
764
+ "columns-12": {
765
+ "bp-md": {
766
+ "gap": {
767
+ "narrow": {
768
+ "value": "1.25",
769
+ "filePath": "tokens/grid/base.json",
770
+ "isSource": true,
771
+ "original": {
772
+ "value": "{spacing.L.value}"
773
+ },
774
+ "name": "grid-columns-12-bp-md-gap-narrow",
775
+ "attributes": {
776
+ "category": "grid",
777
+ "type": "columns-12",
778
+ "item": "bp-md",
779
+ "subitem": "gap",
780
+ "state": "narrow"
781
+ },
782
+ "path": [
783
+ "grid",
784
+ "columns-12",
785
+ "bp-md",
786
+ "gap",
787
+ "narrow"
788
+ ]
789
+ },
790
+ "standard": {
791
+ "value": "1.563",
792
+ "filePath": "tokens/grid/base.json",
793
+ "isSource": true,
794
+ "original": {
795
+ "value": "{spacing.XL.value}"
796
+ },
797
+ "name": "grid-columns-12-bp-md-gap-standard",
798
+ "attributes": {
799
+ "category": "grid",
800
+ "type": "columns-12",
801
+ "item": "bp-md",
802
+ "subitem": "gap",
803
+ "state": "standard"
804
+ },
805
+ "path": [
806
+ "grid",
807
+ "columns-12",
808
+ "bp-md",
809
+ "gap",
810
+ "standard"
811
+ ]
812
+ },
813
+ "wide": {
814
+ "value": "1.953",
815
+ "filePath": "tokens/grid/base.json",
816
+ "isSource": true,
817
+ "original": {
818
+ "value": "{spacing.2XL.value}"
819
+ },
820
+ "name": "grid-columns-12-bp-md-gap-wide",
821
+ "attributes": {
822
+ "category": "grid",
823
+ "type": "columns-12",
824
+ "item": "bp-md",
825
+ "subitem": "gap",
826
+ "state": "wide"
827
+ },
828
+ "path": [
829
+ "grid",
830
+ "columns-12",
831
+ "bp-md",
832
+ "gap",
833
+ "wide"
834
+ ]
835
+ }
836
+ }
837
+ },
838
+ "bp-lg": {
839
+ "gap": {
840
+ "narrow": {
841
+ "value": "1.563",
842
+ "filePath": "tokens/grid/base.json",
843
+ "isSource": true,
844
+ "original": {
845
+ "value": "{spacing.XL.value}"
846
+ },
847
+ "name": "grid-columns-12-bp-lg-gap-narrow",
848
+ "attributes": {
849
+ "category": "grid",
850
+ "type": "columns-12",
851
+ "item": "bp-lg",
852
+ "subitem": "gap",
853
+ "state": "narrow"
854
+ },
855
+ "path": [
856
+ "grid",
857
+ "columns-12",
858
+ "bp-lg",
859
+ "gap",
860
+ "narrow"
861
+ ]
862
+ },
863
+ "standard": {
864
+ "value": "1.953",
865
+ "filePath": "tokens/grid/base.json",
866
+ "isSource": true,
867
+ "original": {
868
+ "value": "{spacing.2XL.value}"
869
+ },
870
+ "name": "grid-columns-12-bp-lg-gap-standard",
871
+ "attributes": {
872
+ "category": "grid",
873
+ "type": "columns-12",
874
+ "item": "bp-lg",
875
+ "subitem": "gap",
876
+ "state": "standard"
877
+ },
878
+ "path": [
879
+ "grid",
880
+ "columns-12",
881
+ "bp-lg",
882
+ "gap",
883
+ "standard"
884
+ ]
885
+ },
886
+ "wide": {
887
+ "value": "2.441",
888
+ "filePath": "tokens/grid/base.json",
889
+ "isSource": true,
890
+ "original": {
891
+ "value": "{spacing.3XL.value}"
892
+ },
893
+ "name": "grid-columns-12-bp-lg-gap-wide",
894
+ "attributes": {
895
+ "category": "grid",
896
+ "type": "columns-12",
897
+ "item": "bp-lg",
898
+ "subitem": "gap",
899
+ "state": "wide"
900
+ },
901
+ "path": [
902
+ "grid",
903
+ "columns-12",
904
+ "bp-lg",
905
+ "gap",
906
+ "wide"
907
+ ]
908
+ }
909
+ }
910
+ }
911
+ },
912
+ "marketing": {
913
+ "column": {
914
+ "small": {
915
+ "value": "21.34375%",
916
+ "public": true,
917
+ "filePath": "tokens/grid/base.json",
918
+ "isSource": true,
919
+ "original": {
920
+ "value": "21.34375%",
921
+ "public": true
922
+ },
923
+ "name": "grid-marketing-column-small",
924
+ "attributes": {
925
+ "category": "grid",
926
+ "type": "marketing",
927
+ "item": "column",
928
+ "subitem": "small"
929
+ },
930
+ "path": [
931
+ "grid",
932
+ "marketing",
933
+ "column",
934
+ "small"
935
+ ]
936
+ },
937
+ "medium-large": {
938
+ "value": "4.36875%",
939
+ "public": true,
940
+ "filePath": "tokens/grid/base.json",
941
+ "isSource": true,
942
+ "original": {
943
+ "value": "4.36875%",
944
+ "public": true
945
+ },
946
+ "name": "grid-marketing-column-medium-large",
947
+ "attributes": {
948
+ "category": "grid",
949
+ "type": "marketing",
950
+ "item": "column",
951
+ "subitem": "medium-large"
952
+ },
953
+ "path": [
954
+ "grid",
955
+ "marketing",
956
+ "column",
957
+ "medium-large"
958
+ ]
959
+ }
960
+ },
961
+ "gap": {
962
+ "small": {
963
+ "value": "4.875%",
964
+ "public": true,
965
+ "filePath": "tokens/grid/base.json",
966
+ "isSource": true,
967
+ "original": {
968
+ "value": "4.875%",
969
+ "public": true
970
+ },
971
+ "name": "grid-marketing-gap-small",
972
+ "attributes": {
973
+ "category": "grid",
974
+ "type": "marketing",
975
+ "item": "gap",
976
+ "subitem": "small"
977
+ },
978
+ "path": [
979
+ "grid",
980
+ "marketing",
981
+ "gap",
982
+ "small"
983
+ ]
984
+ },
985
+ "medium-large": {
986
+ "value": "4.325%",
987
+ "public": true,
988
+ "filePath": "tokens/grid/base.json",
989
+ "isSource": true,
990
+ "original": {
991
+ "value": "4.325%",
992
+ "public": true
993
+ },
994
+ "name": "grid-marketing-gap-medium-large",
995
+ "attributes": {
996
+ "category": "grid",
997
+ "type": "marketing",
998
+ "item": "gap",
999
+ "subitem": "medium-large"
1000
+ },
1001
+ "path": [
1002
+ "grid",
1003
+ "marketing",
1004
+ "gap",
1005
+ "medium-large"
1006
+ ]
1007
+ }
1008
+ }
337
1009
  }
338
1010
  },
339
1011
  "spacing": {
340
- "scale-ratio": {
341
- "value": "1.25",
342
- "comment": "Base ratio/multiplier",
1012
+ "dashboard-nav": {
1013
+ "item-height": {
1014
+ "value": 2.25,
1015
+ "defaultUnit": "rem",
1016
+ "public": true,
1017
+ "filePath": "tokens/spacing/alias.json",
1018
+ "isSource": true,
1019
+ "original": {
1020
+ "value": 2.25,
1021
+ "defaultUnit": "rem",
1022
+ "public": true
1023
+ },
1024
+ "name": "spacing-dashboard-nav-item-height",
1025
+ "attributes": {
1026
+ "category": "spacing",
1027
+ "type": "dashboard-nav",
1028
+ "item": "item-height"
1029
+ },
1030
+ "path": [
1031
+ "spacing",
1032
+ "dashboard-nav",
1033
+ "item-height"
1034
+ ]
1035
+ },
1036
+ "item-padding": {
1037
+ "value": 0.625,
1038
+ "defaultUnit": "rem",
1039
+ "public": true,
1040
+ "filePath": "tokens/spacing/alias.json",
1041
+ "isSource": true,
1042
+ "original": {
1043
+ "value": 0.625,
1044
+ "defaultUnit": "rem",
1045
+ "public": true
1046
+ },
1047
+ "name": "spacing-dashboard-nav-item-padding",
1048
+ "attributes": {
1049
+ "category": "spacing",
1050
+ "type": "dashboard-nav",
1051
+ "item": "item-padding"
1052
+ },
1053
+ "path": [
1054
+ "spacing",
1055
+ "dashboard-nav",
1056
+ "item-padding"
1057
+ ]
1058
+ }
1059
+ },
1060
+ "8XL": {
1061
+ "value": "7.451",
1062
+ "defaultUnit": "rem",
1063
+ "public": true,
343
1064
  "filePath": "tokens/spacing/base.json",
344
1065
  "isSource": true,
345
1066
  "original": {
346
- "value": "1.25",
347
- "comment": "Base ratio/multiplier"
1067
+ "value": "7.451",
1068
+ "defaultUnit": "rem",
1069
+ "public": true
1070
+ },
1071
+ "name": "spacing-8-xl",
1072
+ "attributes": {
1073
+ "category": "spacing",
1074
+ "type": "8XL"
1075
+ },
1076
+ "path": [
1077
+ "spacing",
1078
+ "8XL"
1079
+ ]
1080
+ },
1081
+ "7XL": {
1082
+ "value": "5.96",
1083
+ "defaultUnit": "rem",
1084
+ "public": true,
1085
+ "filePath": "tokens/spacing/base.json",
1086
+ "isSource": true,
1087
+ "original": {
1088
+ "value": "5.96",
1089
+ "defaultUnit": "rem",
1090
+ "public": true
348
1091
  },
349
- "name": "spacing-scale-ratio",
1092
+ "name": "spacing-7-xl",
350
1093
  "attributes": {
351
1094
  "category": "spacing",
352
- "type": "scale-ratio"
1095
+ "type": "7XL"
353
1096
  },
354
1097
  "path": [
355
1098
  "spacing",
356
- "scale-ratio"
1099
+ "7XL"
357
1100
  ]
358
1101
  },
359
1102
  "6XL": {
360
1103
  "value": "4.678",
361
- "formula": "1.25**7",
362
1104
  "defaultUnit": "rem",
1105
+ "public": true,
363
1106
  "filePath": "tokens/spacing/base.json",
364
1107
  "isSource": true,
365
1108
  "original": {
366
1109
  "value": "4.678",
367
- "formula": "{spacing.scale-ratio}**7",
368
- "defaultUnit": "rem"
1110
+ "defaultUnit": "rem",
1111
+ "public": true
369
1112
  },
370
1113
  "name": "spacing-6-xl",
371
1114
  "attributes": {
@@ -379,14 +1122,14 @@
379
1122
  },
380
1123
  "5XL": {
381
1124
  "value": "3.815",
382
- "formula": "1.25**6",
383
1125
  "defaultUnit": "rem",
1126
+ "public": true,
384
1127
  "filePath": "tokens/spacing/base.json",
385
1128
  "isSource": true,
386
1129
  "original": {
387
1130
  "value": "3.815",
388
- "formula": "{spacing.scale-ratio}**6",
389
- "defaultUnit": "rem"
1131
+ "defaultUnit": "rem",
1132
+ "public": true
390
1133
  },
391
1134
  "name": "spacing-5-xl",
392
1135
  "attributes": {
@@ -400,14 +1143,14 @@
400
1143
  },
401
1144
  "4XL": {
402
1145
  "value": "3.052",
403
- "formula": "1.25**5",
404
1146
  "defaultUnit": "rem",
1147
+ "public": true,
405
1148
  "filePath": "tokens/spacing/base.json",
406
1149
  "isSource": true,
407
1150
  "original": {
408
1151
  "value": "3.052",
409
- "formula": "{spacing.scale-ratio}**5",
410
- "defaultUnit": "rem"
1152
+ "defaultUnit": "rem",
1153
+ "public": true
411
1154
  },
412
1155
  "name": "spacing-4-xl",
413
1156
  "attributes": {
@@ -421,14 +1164,14 @@
421
1164
  },
422
1165
  "3XL": {
423
1166
  "value": "2.441",
424
- "formula": "1.25**4",
425
1167
  "defaultUnit": "rem",
1168
+ "public": true,
426
1169
  "filePath": "tokens/spacing/base.json",
427
1170
  "isSource": true,
428
1171
  "original": {
429
1172
  "value": "2.441",
430
- "formula": "{spacing.scale-ratio}**4",
431
- "defaultUnit": "rem"
1173
+ "defaultUnit": "rem",
1174
+ "public": true
432
1175
  },
433
1176
  "name": "spacing-3-xl",
434
1177
  "attributes": {
@@ -442,14 +1185,14 @@
442
1185
  },
443
1186
  "2XL": {
444
1187
  "value": "1.953",
445
- "formula": "1.25**3",
446
1188
  "defaultUnit": "rem",
1189
+ "public": true,
447
1190
  "filePath": "tokens/spacing/base.json",
448
1191
  "isSource": true,
449
1192
  "original": {
450
1193
  "value": "1.953",
451
- "formula": "{spacing.scale-ratio}**3",
452
- "defaultUnit": "rem"
1194
+ "defaultUnit": "rem",
1195
+ "public": true
453
1196
  },
454
1197
  "name": "spacing-2-xl",
455
1198
  "attributes": {
@@ -463,14 +1206,14 @@
463
1206
  },
464
1207
  "XL": {
465
1208
  "value": "1.563",
466
- "formula": "1.25**2",
467
1209
  "defaultUnit": "rem",
1210
+ "public": true,
468
1211
  "filePath": "tokens/spacing/base.json",
469
1212
  "isSource": true,
470
1213
  "original": {
471
1214
  "value": "1.563",
472
- "formula": "{spacing.scale-ratio}**2",
473
- "defaultUnit": "rem"
1215
+ "defaultUnit": "rem",
1216
+ "public": true
474
1217
  },
475
1218
  "name": "spacing-xl",
476
1219
  "attributes": {
@@ -484,14 +1227,14 @@
484
1227
  },
485
1228
  "L": {
486
1229
  "value": "1.25",
487
- "formula": "1.25**1",
488
1230
  "defaultUnit": "rem",
1231
+ "public": true,
489
1232
  "filePath": "tokens/spacing/base.json",
490
1233
  "isSource": true,
491
1234
  "original": {
492
1235
  "value": "1.25",
493
- "formula": "{spacing.scale-ratio}**1",
494
- "defaultUnit": "rem"
1236
+ "defaultUnit": "rem",
1237
+ "public": true
495
1238
  },
496
1239
  "name": "spacing-l",
497
1240
  "attributes": {
@@ -506,11 +1249,13 @@
506
1249
  "M": {
507
1250
  "value": "1",
508
1251
  "defaultUnit": "rem",
1252
+ "public": true,
509
1253
  "filePath": "tokens/spacing/base.json",
510
1254
  "isSource": true,
511
1255
  "original": {
512
1256
  "value": "1",
513
- "defaultUnit": "rem"
1257
+ "defaultUnit": "rem",
1258
+ "public": true
514
1259
  },
515
1260
  "name": "spacing-m",
516
1261
  "attributes": {
@@ -524,14 +1269,14 @@
524
1269
  },
525
1270
  "S": {
526
1271
  "value": "0.8",
527
- "formula": "1.25**-1",
528
1272
  "defaultUnit": "rem",
1273
+ "public": true,
529
1274
  "filePath": "tokens/spacing/base.json",
530
1275
  "isSource": true,
531
1276
  "original": {
532
1277
  "value": "0.8",
533
- "formula": "{spacing.scale-ratio}**-1",
534
- "defaultUnit": "rem"
1278
+ "defaultUnit": "rem",
1279
+ "public": true
535
1280
  },
536
1281
  "name": "spacing-s",
537
1282
  "attributes": {
@@ -545,14 +1290,14 @@
545
1290
  },
546
1291
  "XS": {
547
1292
  "value": "0.64",
548
- "formula": "1.25**-2",
549
1293
  "defaultUnit": "rem",
1294
+ "public": true,
550
1295
  "filePath": "tokens/spacing/base.json",
551
1296
  "isSource": true,
552
1297
  "original": {
553
1298
  "value": "0.64",
554
- "formula": "{spacing.scale-ratio}**-2",
555
- "defaultUnit": "rem"
1299
+ "defaultUnit": "rem",
1300
+ "public": true
556
1301
  },
557
1302
  "name": "spacing-xs",
558
1303
  "attributes": {
@@ -566,14 +1311,14 @@
566
1311
  },
567
1312
  "2XS": {
568
1313
  "value": "0.512",
569
- "formula": "1.25**-3",
570
1314
  "defaultUnit": "rem",
1315
+ "public": true,
571
1316
  "filePath": "tokens/spacing/base.json",
572
1317
  "isSource": true,
573
1318
  "original": {
574
1319
  "value": "0.512",
575
- "formula": "{spacing.scale-ratio}**-3",
576
- "defaultUnit": "rem"
1320
+ "defaultUnit": "rem",
1321
+ "public": true
577
1322
  },
578
1323
  "name": "spacing-2-xs",
579
1324
  "attributes": {
@@ -587,14 +1332,14 @@
587
1332
  },
588
1333
  "3XS": {
589
1334
  "value": "0.41",
590
- "formula": "1.25**-4",
591
1335
  "defaultUnit": "rem",
1336
+ "public": true,
592
1337
  "filePath": "tokens/spacing/base.json",
593
1338
  "isSource": true,
594
1339
  "original": {
595
1340
  "value": "0.41",
596
- "formula": "{spacing.scale-ratio}**-4",
597
- "defaultUnit": "rem"
1341
+ "defaultUnit": "rem",
1342
+ "public": true
598
1343
  },
599
1344
  "name": "spacing-3-xs",
600
1345
  "attributes": {
@@ -608,14 +1353,14 @@
608
1353
  },
609
1354
  "4XS": {
610
1355
  "value": "0.328",
611
- "formula": "1.25**-5",
612
1356
  "defaultUnit": "rem",
1357
+ "public": true,
613
1358
  "filePath": "tokens/spacing/base.json",
614
1359
  "isSource": true,
615
1360
  "original": {
616
1361
  "value": "0.328",
617
- "formula": "{spacing.scale-ratio}**-5",
618
- "defaultUnit": "rem"
1362
+ "defaultUnit": "rem",
1363
+ "public": true
619
1364
  },
620
1365
  "name": "spacing-4-xs",
621
1366
  "attributes": {
@@ -626,6 +1371,48 @@
626
1371
  "spacing",
627
1372
  "4XS"
628
1373
  ]
1374
+ },
1375
+ "5XS": {
1376
+ "value": "0.25",
1377
+ "defaultUnit": "rem",
1378
+ "public": true,
1379
+ "filePath": "tokens/spacing/base.json",
1380
+ "isSource": true,
1381
+ "original": {
1382
+ "value": "0.25",
1383
+ "defaultUnit": "rem",
1384
+ "public": true
1385
+ },
1386
+ "name": "spacing-5-xs",
1387
+ "attributes": {
1388
+ "category": "spacing",
1389
+ "type": "5XS"
1390
+ },
1391
+ "path": [
1392
+ "spacing",
1393
+ "5XS"
1394
+ ]
1395
+ },
1396
+ "6XS": {
1397
+ "value": "0.125",
1398
+ "defaultUnit": "rem",
1399
+ "public": true,
1400
+ "filePath": "tokens/spacing/base.json",
1401
+ "isSource": true,
1402
+ "original": {
1403
+ "value": "0.125",
1404
+ "defaultUnit": "rem",
1405
+ "public": true
1406
+ },
1407
+ "name": "spacing-6-xs",
1408
+ "attributes": {
1409
+ "category": "spacing",
1410
+ "type": "6XS"
1411
+ },
1412
+ "path": [
1413
+ "spacing",
1414
+ "6XS"
1415
+ ]
629
1416
  }
630
1417
  },
631
1418
  "typography": {
@@ -651,6 +1438,48 @@
651
1438
  "default"
652
1439
  ]
653
1440
  },
1441
+ "secondary": {
1442
+ "value": "'Aleo', serif",
1443
+ "public": true,
1444
+ "filePath": "tokens/typography/alias/font.json",
1445
+ "isSource": true,
1446
+ "original": {
1447
+ "value": "'Aleo', serif",
1448
+ "public": true
1449
+ },
1450
+ "name": "typography-font-secondary",
1451
+ "attributes": {
1452
+ "category": "typography",
1453
+ "type": "font",
1454
+ "item": "secondary"
1455
+ },
1456
+ "path": [
1457
+ "typography",
1458
+ "font",
1459
+ "secondary"
1460
+ ]
1461
+ },
1462
+ "code": {
1463
+ "value": "'Source Code Pro', monospace",
1464
+ "public": true,
1465
+ "filePath": "tokens/typography/alias/font.json",
1466
+ "isSource": true,
1467
+ "original": {
1468
+ "value": "'Source Code Pro', monospace",
1469
+ "public": true
1470
+ },
1471
+ "name": "typography-font-code",
1472
+ "attributes": {
1473
+ "category": "typography",
1474
+ "type": "font",
1475
+ "item": "code"
1476
+ },
1477
+ "path": [
1478
+ "typography",
1479
+ "font",
1480
+ "code"
1481
+ ]
1482
+ },
654
1483
  "headings": {
655
1484
  "value": "'Poppins', sans-serif",
656
1485
  "filePath": "tokens/typography/alias/font.json",
@@ -694,7 +1523,7 @@
694
1523
  "filePath": "tokens/typography/alias/font.json",
695
1524
  "isSource": true,
696
1525
  "original": {
697
- "value": "'Aleo', serif"
1526
+ "value": "{typography.font.secondary.value}"
698
1527
  },
699
1528
  "name": "typography-font-lead",
700
1529
  "attributes": {
@@ -713,7 +1542,7 @@
713
1542
  "filePath": "tokens/typography/alias/font.json",
714
1543
  "isSource": true,
715
1544
  "original": {
716
- "value": "'Aleo', serif"
1545
+ "value": "{typography.font.secondary.value}"
717
1546
  },
718
1547
  "name": "typography-font-quote",
719
1548
  "attributes": {
@@ -747,11 +1576,11 @@
747
1576
  ]
748
1577
  },
749
1578
  "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'",
1579
+ "value": "'https://fonts.googleapis.com/css2?family=Aleo:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,300;0,400;0,600;0,700;1,300;1,400;1,600;1,700&family=Source+Code+Pro:ital,wght@0,200..900;1,200..900&display=swap'",
751
1580
  "filePath": "tokens/typography/base/font.json",
752
1581
  "isSource": true,
753
1582
  "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'"
1583
+ "value": "'https://fonts.googleapis.com/css2?family=Aleo:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,300;0,400;0,600;0,700;1,300;1,400;1,600;1,700&family=Source+Code+Pro:ital,wght@0,200..900;1,200..900&display=swap'"
755
1584
  },
756
1585
  "name": "typography-font-css-import",
757
1586
  "attributes": {
@@ -767,50 +1596,56 @@
767
1596
  }
768
1597
  },
769
1598
  "font-weight": {
770
- "regular": {
771
- "value": 400,
1599
+ "light": {
1600
+ "value": 300,
1601
+ "public": true,
772
1602
  "filePath": "tokens/typography/base/font-weight.json",
773
1603
  "isSource": true,
774
1604
  "original": {
775
- "value": 400
1605
+ "value": 300,
1606
+ "public": true
776
1607
  },
777
- "name": "typography-font-weight-regular",
1608
+ "name": "typography-font-weight-light",
778
1609
  "attributes": {
779
1610
  "category": "typography",
780
1611
  "type": "font-weight",
781
- "item": "regular"
1612
+ "item": "light"
782
1613
  },
783
1614
  "path": [
784
1615
  "typography",
785
1616
  "font-weight",
786
- "regular"
1617
+ "light"
787
1618
  ]
788
1619
  },
789
- "medium": {
790
- "value": 500,
1620
+ "regular": {
1621
+ "value": 400,
1622
+ "public": true,
791
1623
  "filePath": "tokens/typography/base/font-weight.json",
792
1624
  "isSource": true,
793
1625
  "original": {
794
- "value": 500
1626
+ "value": 400,
1627
+ "public": true
795
1628
  },
796
- "name": "typography-font-weight-medium",
1629
+ "name": "typography-font-weight-regular",
797
1630
  "attributes": {
798
1631
  "category": "typography",
799
1632
  "type": "font-weight",
800
- "item": "medium"
1633
+ "item": "regular"
801
1634
  },
802
1635
  "path": [
803
1636
  "typography",
804
1637
  "font-weight",
805
- "medium"
1638
+ "regular"
806
1639
  ]
807
1640
  },
808
1641
  "semibold": {
809
1642
  "value": 600,
1643
+ "public": true,
810
1644
  "filePath": "tokens/typography/base/font-weight.json",
811
1645
  "isSource": true,
812
1646
  "original": {
813
- "value": 600
1647
+ "value": 600,
1648
+ "public": true
814
1649
  },
815
1650
  "name": "typography-font-weight-semibold",
816
1651
  "attributes": {
@@ -826,10 +1661,12 @@
826
1661
  },
827
1662
  "bold": {
828
1663
  "value": 700,
1664
+ "public": true,
829
1665
  "filePath": "tokens/typography/base/font-weight.json",
830
1666
  "isSource": true,
831
1667
  "original": {
832
- "value": 700
1668
+ "value": 700,
1669
+ "public": true
833
1670
  },
834
1671
  "name": "typography-font-weight-bold",
835
1672
  "attributes": {
@@ -842,36 +1679,19 @@
842
1679
  "font-weight",
843
1680
  "bold"
844
1681
  ]
845
- },
846
- "extrabold": {
847
- "value": 800,
848
- "filePath": "tokens/typography/base/font-weight.json",
849
- "isSource": true,
850
- "original": {
851
- "value": 800
852
- },
853
- "name": "typography-font-weight-extrabold",
854
- "attributes": {
855
- "category": "typography",
856
- "type": "font-weight",
857
- "item": "extrabold"
858
- },
859
- "path": [
860
- "typography",
861
- "font-weight",
862
- "extrabold"
863
- ]
864
1682
  }
865
1683
  },
866
1684
  "letter-spacing": {
867
1685
  "XL": {
868
1686
  "value": "0.06",
869
- "defaultUnit": "em",
1687
+ "defaultUnit": "rem",
1688
+ "public": true,
870
1689
  "filePath": "tokens/typography/base/letter-spacing.json",
871
1690
  "isSource": true,
872
1691
  "original": {
873
1692
  "value": "0.06",
874
- "defaultUnit": "em"
1693
+ "defaultUnit": "rem",
1694
+ "public": true
875
1695
  },
876
1696
  "name": "typography-letter-spacing-xl",
877
1697
  "attributes": {
@@ -887,12 +1707,14 @@
887
1707
  },
888
1708
  "L": {
889
1709
  "value": "0.04",
890
- "defaultUnit": "em",
1710
+ "defaultUnit": "rem",
1711
+ "public": true,
891
1712
  "filePath": "tokens/typography/base/letter-spacing.json",
892
1713
  "isSource": true,
893
1714
  "original": {
894
1715
  "value": "0.04",
895
- "defaultUnit": "em"
1716
+ "defaultUnit": "rem",
1717
+ "public": true
896
1718
  },
897
1719
  "name": "typography-letter-spacing-l",
898
1720
  "attributes": {
@@ -908,12 +1730,14 @@
908
1730
  },
909
1731
  "M": {
910
1732
  "value": "0.02",
911
- "defaultUnit": "em",
1733
+ "defaultUnit": "rem",
1734
+ "public": true,
912
1735
  "filePath": "tokens/typography/base/letter-spacing.json",
913
1736
  "isSource": true,
914
1737
  "original": {
915
1738
  "value": "0.02",
916
- "defaultUnit": "em"
1739
+ "defaultUnit": "rem",
1740
+ "public": true
917
1741
  },
918
1742
  "name": "typography-letter-spacing-m",
919
1743
  "attributes": {
@@ -929,12 +1753,14 @@
929
1753
  },
930
1754
  "S": {
931
1755
  "value": "0.01",
932
- "defaultUnit": "em",
1756
+ "defaultUnit": "rem",
1757
+ "public": true,
933
1758
  "filePath": "tokens/typography/base/letter-spacing.json",
934
1759
  "isSource": true,
935
1760
  "original": {
936
1761
  "value": "0.01",
937
- "defaultUnit": "em"
1762
+ "defaultUnit": "rem",
1763
+ "public": true
938
1764
  },
939
1765
  "name": "typography-letter-spacing-s",
940
1766
  "attributes": {
@@ -950,12 +1776,35 @@
950
1776
  }
951
1777
  },
952
1778
  "line-height": {
1779
+ "XL": {
1780
+ "value": "195%",
1781
+ "public": true,
1782
+ "filePath": "tokens/typography/base/line-height.json",
1783
+ "isSource": true,
1784
+ "original": {
1785
+ "value": "195%",
1786
+ "public": true
1787
+ },
1788
+ "name": "typography-line-height-xl",
1789
+ "attributes": {
1790
+ "category": "typography",
1791
+ "type": "line-height",
1792
+ "item": "XL"
1793
+ },
1794
+ "path": [
1795
+ "typography",
1796
+ "line-height",
1797
+ "XL"
1798
+ ]
1799
+ },
953
1800
  "L": {
954
- "value": "195.3%",
1801
+ "value": "165%",
1802
+ "public": true,
955
1803
  "filePath": "tokens/typography/base/line-height.json",
956
1804
  "isSource": true,
957
1805
  "original": {
958
- "value": "195.3%"
1806
+ "value": "165%",
1807
+ "public": true
959
1808
  },
960
1809
  "name": "typography-line-height-l",
961
1810
  "attributes": {
@@ -970,11 +1819,13 @@
970
1819
  ]
971
1820
  },
972
1821
  "M": {
973
- "value": "156.3%",
1822
+ "value": "140%",
1823
+ "public": true,
974
1824
  "filePath": "tokens/typography/base/line-height.json",
975
1825
  "isSource": true,
976
1826
  "original": {
977
- "value": "156.3%"
1827
+ "value": "140%",
1828
+ "public": true
978
1829
  },
979
1830
  "name": "typography-line-height-m",
980
1831
  "attributes": {
@@ -989,11 +1840,13 @@
989
1840
  ]
990
1841
  },
991
1842
  "S": {
992
- "value": "125%",
1843
+ "value": "120%",
1844
+ "public": true,
993
1845
  "filePath": "tokens/typography/base/line-height.json",
994
1846
  "isSource": true,
995
1847
  "original": {
996
- "value": "125%"
1848
+ "value": "120%",
1849
+ "public": true
997
1850
  },
998
1851
  "name": "typography-line-height-s",
999
1852
  "attributes": {
@@ -1008,36 +1861,178 @@
1008
1861
  ]
1009
1862
  }
1010
1863
  },
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"
1864
+ "multiplier": {
1865
+ "small": {
1866
+ "value": "0.84",
1867
+ "public": true,
1868
+ "filePath": "tokens/typography/base/multipliers.json",
1869
+ "isSource": true,
1870
+ "original": {
1871
+ "value": "0.84",
1872
+ "public": true
1873
+ },
1874
+ "name": "typography-multiplier-small",
1875
+ "attributes": {
1876
+ "category": "typography",
1877
+ "type": "multiplier",
1878
+ "item": "small"
1879
+ },
1880
+ "path": [
1881
+ "typography",
1882
+ "multiplier",
1883
+ "small"
1884
+ ]
1024
1885
  },
1025
- "path": [
1026
- "typography",
1027
- "scale-ratio"
1028
- ]
1886
+ "medium": {
1887
+ "value": "0.88",
1888
+ "public": true,
1889
+ "filePath": "tokens/typography/base/multipliers.json",
1890
+ "isSource": true,
1891
+ "original": {
1892
+ "value": "0.88",
1893
+ "public": true
1894
+ },
1895
+ "name": "typography-multiplier-medium",
1896
+ "attributes": {
1897
+ "category": "typography",
1898
+ "type": "multiplier",
1899
+ "item": "medium"
1900
+ },
1901
+ "path": [
1902
+ "typography",
1903
+ "multiplier",
1904
+ "medium"
1905
+ ]
1906
+ }
1029
1907
  },
1030
1908
  "size": {
1909
+ "9XL": {
1910
+ "value": "6.192",
1911
+ "defaultUnit": "rem",
1912
+ "public": true,
1913
+ "filePath": "tokens/typography/base/size.json",
1914
+ "isSource": true,
1915
+ "original": {
1916
+ "value": "6.192",
1917
+ "defaultUnit": "rem",
1918
+ "public": true
1919
+ },
1920
+ "name": "typography-size-9-xl",
1921
+ "attributes": {
1922
+ "category": "typography",
1923
+ "type": "size",
1924
+ "item": "9XL"
1925
+ },
1926
+ "path": [
1927
+ "typography",
1928
+ "size",
1929
+ "9XL"
1930
+ ]
1931
+ },
1932
+ "8XL": {
1933
+ "value": "5.160",
1934
+ "defaultUnit": "rem",
1935
+ "public": true,
1936
+ "filePath": "tokens/typography/base/size.json",
1937
+ "isSource": true,
1938
+ "original": {
1939
+ "value": "5.160",
1940
+ "defaultUnit": "rem",
1941
+ "public": true
1942
+ },
1943
+ "name": "typography-size-8-xl",
1944
+ "attributes": {
1945
+ "category": "typography",
1946
+ "type": "size",
1947
+ "item": "8XL"
1948
+ },
1949
+ "path": [
1950
+ "typography",
1951
+ "size",
1952
+ "8XL"
1953
+ ]
1954
+ },
1955
+ "7XL": {
1956
+ "value": "4.3",
1957
+ "defaultUnit": "rem",
1958
+ "public": true,
1959
+ "filePath": "tokens/typography/base/size.json",
1960
+ "isSource": true,
1961
+ "original": {
1962
+ "value": "4.3",
1963
+ "defaultUnit": "rem",
1964
+ "public": true
1965
+ },
1966
+ "name": "typography-size-7-xl",
1967
+ "attributes": {
1968
+ "category": "typography",
1969
+ "type": "size",
1970
+ "item": "7XL"
1971
+ },
1972
+ "path": [
1973
+ "typography",
1974
+ "size",
1975
+ "7XL"
1976
+ ]
1977
+ },
1978
+ "6XL": {
1979
+ "value": "3.583",
1980
+ "defaultUnit": "rem",
1981
+ "public": true,
1982
+ "filePath": "tokens/typography/base/size.json",
1983
+ "isSource": true,
1984
+ "original": {
1985
+ "value": "3.583",
1986
+ "defaultUnit": "rem",
1987
+ "public": true
1988
+ },
1989
+ "name": "typography-size-6-xl",
1990
+ "attributes": {
1991
+ "category": "typography",
1992
+ "type": "size",
1993
+ "item": "6XL"
1994
+ },
1995
+ "path": [
1996
+ "typography",
1997
+ "size",
1998
+ "6XL"
1999
+ ]
2000
+ },
2001
+ "5XL": {
2002
+ "value": "2.986",
2003
+ "defaultUnit": "rem",
2004
+ "public": true,
2005
+ "comment": "Default h1",
2006
+ "filePath": "tokens/typography/base/size.json",
2007
+ "isSource": true,
2008
+ "original": {
2009
+ "value": "2.986",
2010
+ "defaultUnit": "rem",
2011
+ "public": true,
2012
+ "comment": "Default h1"
2013
+ },
2014
+ "name": "typography-size-5-xl",
2015
+ "attributes": {
2016
+ "category": "typography",
2017
+ "type": "size",
2018
+ "item": "5XL"
2019
+ },
2020
+ "path": [
2021
+ "typography",
2022
+ "size",
2023
+ "5XL"
2024
+ ]
2025
+ },
1031
2026
  "4XL": {
1032
- "value": "3.052",
1033
- "formula": "1.25**5",
1034
- "defaultUnit": "em",
2027
+ "value": "2.488",
2028
+ "defaultUnit": "rem",
2029
+ "public": true,
1035
2030
  "filePath": "tokens/typography/base/size.json",
1036
2031
  "isSource": true,
1037
2032
  "original": {
1038
- "value": "3.052",
1039
- "formula": "{typography.scale-ratio}**5",
1040
- "defaultUnit": "em"
2033
+ "value": "2.488",
2034
+ "defaultUnit": "rem",
2035
+ "public": true
1041
2036
  },
1042
2037
  "name": "typography-size-4-xl",
1043
2038
  "attributes": {
@@ -1052,15 +2047,17 @@
1052
2047
  ]
1053
2048
  },
1054
2049
  "3XL": {
1055
- "value": "2.441",
1056
- "formula": "1.25**4",
1057
- "defaultUnit": "em",
2050
+ "value": "2.074",
2051
+ "defaultUnit": "rem",
2052
+ "public": true,
2053
+ "comment": "Default h2",
1058
2054
  "filePath": "tokens/typography/base/size.json",
1059
2055
  "isSource": true,
1060
2056
  "original": {
1061
- "value": "2.441",
1062
- "formula": "{typography.scale-ratio}**4",
1063
- "defaultUnit": "em"
2057
+ "value": "2.074",
2058
+ "defaultUnit": "rem",
2059
+ "public": true,
2060
+ "comment": "Default h2"
1064
2061
  },
1065
2062
  "name": "typography-size-3-xl",
1066
2063
  "attributes": {
@@ -1075,15 +2072,17 @@
1075
2072
  ]
1076
2073
  },
1077
2074
  "2XL": {
1078
- "value": "1.953",
1079
- "formula": "1.25**3",
1080
- "defaultUnit": "em",
2075
+ "value": "1.728",
2076
+ "defaultUnit": "rem",
2077
+ "public": true,
2078
+ "comment": "Default h3",
1081
2079
  "filePath": "tokens/typography/base/size.json",
1082
2080
  "isSource": true,
1083
2081
  "original": {
1084
- "value": "1.953",
1085
- "formula": "{typography.scale-ratio}**3",
1086
- "defaultUnit": "em"
2082
+ "value": "1.728",
2083
+ "defaultUnit": "rem",
2084
+ "public": true,
2085
+ "comment": "Default h3"
1087
2086
  },
1088
2087
  "name": "typography-size-2-xl",
1089
2088
  "attributes": {
@@ -1098,15 +2097,17 @@
1098
2097
  ]
1099
2098
  },
1100
2099
  "XL": {
1101
- "value": "1.563",
1102
- "formula": "1.25**2",
1103
- "defaultUnit": "em",
2100
+ "value": "1.44",
2101
+ "defaultUnit": "rem",
2102
+ "public": true,
2103
+ "comment": "Default h4",
1104
2104
  "filePath": "tokens/typography/base/size.json",
1105
2105
  "isSource": true,
1106
2106
  "original": {
1107
- "value": "1.563",
1108
- "formula": "{typography.scale-ratio}**2",
1109
- "defaultUnit": "em"
2107
+ "value": "1.44",
2108
+ "defaultUnit": "rem",
2109
+ "public": true,
2110
+ "comment": "Default h4"
1110
2111
  },
1111
2112
  "name": "typography-size-xl",
1112
2113
  "attributes": {
@@ -1121,15 +2122,17 @@
1121
2122
  ]
1122
2123
  },
1123
2124
  "L": {
1124
- "value": "1.25",
1125
- "formula": "1.25**1",
1126
- "defaultUnit": "em",
2125
+ "value": "1.2",
2126
+ "defaultUnit": "rem",
2127
+ "public": true,
2128
+ "comment": "Default h5",
1127
2129
  "filePath": "tokens/typography/base/size.json",
1128
2130
  "isSource": true,
1129
2131
  "original": {
1130
- "value": "1.25",
1131
- "formula": "{typography.scale-ratio}**1",
1132
- "defaultUnit": "em"
2132
+ "value": "1.2",
2133
+ "defaultUnit": "rem",
2134
+ "public": true,
2135
+ "comment": "Default h5"
1133
2136
  },
1134
2137
  "name": "typography-size-l",
1135
2138
  "attributes": {
@@ -1145,14 +2148,16 @@
1145
2148
  },
1146
2149
  "M": {
1147
2150
  "value": "1",
2151
+ "defaultUnit": "rem",
2152
+ "public": true,
1148
2153
  "comment": "Base value.",
1149
- "defaultUnit": "em",
1150
2154
  "filePath": "tokens/typography/base/size.json",
1151
2155
  "isSource": true,
1152
2156
  "original": {
1153
2157
  "value": "1",
1154
- "comment": "Base value.",
1155
- "defaultUnit": "em"
2158
+ "defaultUnit": "rem",
2159
+ "public": true,
2160
+ "comment": "Base value."
1156
2161
  },
1157
2162
  "name": "typography-size-m",
1158
2163
  "attributes": {
@@ -1167,15 +2172,15 @@
1167
2172
  ]
1168
2173
  },
1169
2174
  "S": {
1170
- "value": "0.875",
1171
- "formula": "1.25**-1",
1172
- "defaultUnit": "em",
2175
+ "value": "0.833",
2176
+ "defaultUnit": "rem",
2177
+ "public": true,
1173
2178
  "filePath": "tokens/typography/base/size.json",
1174
2179
  "isSource": true,
1175
2180
  "original": {
1176
- "value": "0.875",
1177
- "formula": "{typography.scale-ratio}**-1",
1178
- "defaultUnit": "em"
2181
+ "value": "0.833",
2182
+ "defaultUnit": "rem",
2183
+ "public": true
1179
2184
  },
1180
2185
  "name": "typography-size-s",
1181
2186
  "attributes": {
@@ -1190,15 +2195,15 @@
1190
2195
  ]
1191
2196
  },
1192
2197
  "XS": {
1193
- "value": "0.75",
1194
- "formula": "1.25**-2",
1195
- "defaultUnit": "em",
2198
+ "value": "0.694",
2199
+ "defaultUnit": "rem",
2200
+ "public": true,
1196
2201
  "filePath": "tokens/typography/base/size.json",
1197
2202
  "isSource": true,
1198
2203
  "original": {
1199
- "value": "0.75",
1200
- "formula": "{typography.scale-ratio}**-2",
1201
- "defaultUnit": "em"
2204
+ "value": "0.694",
2205
+ "defaultUnit": "rem",
2206
+ "public": true
1202
2207
  },
1203
2208
  "name": "typography-size-xs",
1204
2209
  "attributes": {
@@ -1213,5 +2218,102 @@
1213
2218
  ]
1214
2219
  }
1215
2220
  }
2221
+ },
2222
+ "z-index": {
2223
+ "navigation": {
2224
+ "value": 100,
2225
+ "public": true,
2226
+ "filePath": "tokens/z-index/base.json",
2227
+ "isSource": true,
2228
+ "original": {
2229
+ "value": 100,
2230
+ "public": true
2231
+ },
2232
+ "name": "z-index-navigation",
2233
+ "attributes": {
2234
+ "category": "z-index",
2235
+ "type": "navigation"
2236
+ },
2237
+ "path": [
2238
+ "z-index",
2239
+ "navigation"
2240
+ ]
2241
+ },
2242
+ "dropdown": {
2243
+ "value": 200,
2244
+ "public": true,
2245
+ "filePath": "tokens/z-index/base.json",
2246
+ "isSource": true,
2247
+ "original": {
2248
+ "value": 200,
2249
+ "public": true
2250
+ },
2251
+ "name": "z-index-dropdown",
2252
+ "attributes": {
2253
+ "category": "z-index",
2254
+ "type": "dropdown"
2255
+ },
2256
+ "path": [
2257
+ "z-index",
2258
+ "dropdown"
2259
+ ]
2260
+ },
2261
+ "notifications": {
2262
+ "value": 300,
2263
+ "public": true,
2264
+ "filePath": "tokens/z-index/base.json",
2265
+ "isSource": true,
2266
+ "original": {
2267
+ "value": 300,
2268
+ "public": true
2269
+ },
2270
+ "name": "z-index-notifications",
2271
+ "attributes": {
2272
+ "category": "z-index",
2273
+ "type": "notifications"
2274
+ },
2275
+ "path": [
2276
+ "z-index",
2277
+ "notifications"
2278
+ ]
2279
+ },
2280
+ "overlay": {
2281
+ "value": 400,
2282
+ "public": true,
2283
+ "filePath": "tokens/z-index/base.json",
2284
+ "isSource": true,
2285
+ "original": {
2286
+ "value": 400,
2287
+ "public": true
2288
+ },
2289
+ "name": "z-index-overlay",
2290
+ "attributes": {
2291
+ "category": "z-index",
2292
+ "type": "overlay"
2293
+ },
2294
+ "path": [
2295
+ "z-index",
2296
+ "overlay"
2297
+ ]
2298
+ },
2299
+ "modal": {
2300
+ "value": 500,
2301
+ "public": true,
2302
+ "filePath": "tokens/z-index/base.json",
2303
+ "isSource": true,
2304
+ "original": {
2305
+ "value": 500,
2306
+ "public": true
2307
+ },
2308
+ "name": "z-index-modal",
2309
+ "attributes": {
2310
+ "category": "z-index",
2311
+ "type": "modal"
2312
+ },
2313
+ "path": [
2314
+ "z-index",
2315
+ "modal"
2316
+ ]
2317
+ }
1216
2318
  }
1217
- }
2319
+ }