@telus-uds/theme-koodo 3.5.0 → 3.6.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,4673 @@
1
+ {
2
+ "components": {
3
+ "ActivityIndicator": {
4
+ "appearances": {},
5
+ "rules": [],
6
+ "tokens": {
7
+ "color": {
8
+ "red": 0.00392,
9
+ "green": 0.28235,
10
+ "blue": 0.27843,
11
+ "alpha": 1
12
+ },
13
+ "size": 40,
14
+ "thickness": 4
15
+ }
16
+ },
17
+ "Box": {
18
+ "appearances": {
19
+ "background": {
20
+ "description": "Background colour of box. Transparent if not specified.",
21
+ "values": ["light", "lightest", "black"]
22
+ }
23
+ },
24
+ "rules": [
25
+ {
26
+ "if": {
27
+ "background": "lightest"
28
+ },
29
+ "tokens": {
30
+ "backgroundColor": {
31
+ "red": 1,
32
+ "green": 1,
33
+ "blue": 1,
34
+ "alpha": 1
35
+ }
36
+ }
37
+ },
38
+ {
39
+ "if": {
40
+ "background": "light"
41
+ },
42
+ "tokens": {
43
+ "backgroundColor": {
44
+ "red": 0.93725,
45
+ "green": 0.93725,
46
+ "blue": 0.93725,
47
+ "alpha": 1
48
+ }
49
+ }
50
+ },
51
+ {
52
+ "if": {
53
+ "background": "black"
54
+ },
55
+ "tokens": {
56
+ "backgroundColor": {
57
+ "red": 0,
58
+ "green": 0,
59
+ "blue": 0,
60
+ "alpha": 1
61
+ }
62
+ }
63
+ }
64
+ ],
65
+ "tokens": {
66
+ "backgroundColor": {
67
+ "red": 0,
68
+ "green": 0,
69
+ "blue": 0,
70
+ "alpha": 0
71
+ },
72
+ "gradient": null
73
+ }
74
+ },
75
+ "Button": {
76
+ "appearances": {
77
+ "clear": {
78
+ "description": "Gives a button borders and a transparent background",
79
+ "type": "variant",
80
+ "values": [true]
81
+ },
82
+ "inactive": {
83
+ "description": "Prevents an interactive component from being interacted with and applies accessibility attributes to indicate to the user that this component cannot be used.",
84
+ "values": [true],
85
+ "type": "state"
86
+ },
87
+ "pressed": {
88
+ "description": "Applies while an interactive component is being physically pressed. Most visible on touchscreen taps; in React Native Web, this is visible on web mouse clicks only if the pressable is held down.",
89
+ "values": [true],
90
+ "type": "state"
91
+ },
92
+ "rank": {
93
+ "description": "Prominence of the button. Use the default (\"primary\") button style for the main action on a page or in a form, and \"secondary\" style for secondary actions.",
94
+ "type": "variant",
95
+ "values": ["secondary"]
96
+ },
97
+ "rounded": {
98
+ "description": "Gives a button \"pill-style\" rounded sides",
99
+ "type": "variant",
100
+ "values": [true]
101
+ },
102
+ "selected": {
103
+ "description": "Applies while an interactive component is the currently selected one in a set of states or components, for example a button in a `ButtonGroup`.",
104
+ "values": [true],
105
+ "type": "state"
106
+ }
107
+ },
108
+ "rules": [
109
+ {
110
+ "if": {
111
+ "rounded": true
112
+ },
113
+ "tokens": {
114
+ "borderRadius": 32
115
+ }
116
+ },
117
+ {
118
+ "if": {
119
+ "clear": true
120
+ },
121
+ "tokens": {
122
+ "backgroundColor": {
123
+ "red": 0,
124
+ "green": 0,
125
+ "blue": 0,
126
+ "alpha": 0
127
+ },
128
+ "borderColor": {
129
+ "red": 0.00392,
130
+ "green": 0.41961,
131
+ "blue": 0.41569,
132
+ "alpha": 1
133
+ },
134
+ "borderWidth": 2,
135
+ "color": {
136
+ "red": 0.00392,
137
+ "green": 0.41961,
138
+ "blue": 0.41569,
139
+ "alpha": 1
140
+ }
141
+ }
142
+ },
143
+ {
144
+ "if": {
145
+ "pressed": true
146
+ },
147
+ "tokens": {
148
+ "backgroundColor": {
149
+ "red": 0.00392,
150
+ "green": 0.41961,
151
+ "blue": 0.41569,
152
+ "alpha": 1
153
+ },
154
+ "borderColor": {
155
+ "red": 0.00392,
156
+ "green": 0.41961,
157
+ "blue": 0.41569,
158
+ "alpha": 1
159
+ },
160
+ "color": {
161
+ "red": 1,
162
+ "green": 1,
163
+ "blue": 1,
164
+ "alpha": 1
165
+ }
166
+ }
167
+ },
168
+ {
169
+ "if": {
170
+ "rank": "secondary"
171
+ },
172
+ "tokens": {
173
+ "backgroundColor": {
174
+ "red": 0,
175
+ "green": 0.63137,
176
+ "blue": 0.85882,
177
+ "alpha": 1
178
+ },
179
+ "borderColor": {
180
+ "red": 0,
181
+ "green": 0.63137,
182
+ "blue": 0.85882,
183
+ "alpha": 1
184
+ },
185
+ "color": {
186
+ "red": 1,
187
+ "green": 1,
188
+ "blue": 1,
189
+ "alpha": 1
190
+ }
191
+ }
192
+ },
193
+ {
194
+ "if": {
195
+ "clear": true,
196
+ "rank": "secondary"
197
+ },
198
+ "tokens": {
199
+ "backgroundColor": {
200
+ "red": 1,
201
+ "green": 1,
202
+ "blue": 1,
203
+ "alpha": 1
204
+ },
205
+ "borderColor": {
206
+ "red": 0,
207
+ "green": 0.63137,
208
+ "blue": 0.85882,
209
+ "alpha": 1
210
+ },
211
+ "color": {
212
+ "red": 0,
213
+ "green": 0.63137,
214
+ "blue": 0.85882,
215
+ "alpha": 1
216
+ }
217
+ }
218
+ },
219
+ {
220
+ "if": {
221
+ "pressed": true,
222
+ "rank": "secondary"
223
+ },
224
+ "tokens": {
225
+ "backgroundColor": {
226
+ "red": 0.76471,
227
+ "green": 0.93725,
228
+ "blue": 1,
229
+ "alpha": 1
230
+ },
231
+ "borderColor": {
232
+ "red": 0.76471,
233
+ "green": 0.93725,
234
+ "blue": 1,
235
+ "alpha": 1
236
+ },
237
+ "color": {
238
+ "red": 1,
239
+ "green": 1,
240
+ "blue": 1,
241
+ "alpha": 1
242
+ }
243
+ }
244
+ },
245
+ {
246
+ "if": {
247
+ "inactive": true
248
+ },
249
+ "tokens": {
250
+ "opacity": 0.3
251
+ }
252
+ },
253
+ {
254
+ "if": {
255
+ "selected": true
256
+ },
257
+ "tokens": {
258
+ "opacity": 0.8,
259
+ "outerBorderColor": {
260
+ "red": 0.00392,
261
+ "green": 0.41961,
262
+ "blue": 0.41569,
263
+ "alpha": 1
264
+ },
265
+ "outerBorderGap": 1,
266
+ "outerBorderWidth": 4
267
+ }
268
+ }
269
+ ],
270
+ "tokens": {
271
+ "alignSelf": "flex-start",
272
+ "backgroundColor": {
273
+ "red": 0.00392,
274
+ "green": 0.41961,
275
+ "blue": 0.41569,
276
+ "alpha": 1
277
+ },
278
+ "borderColor": {
279
+ "red": 1,
280
+ "green": 1,
281
+ "blue": 1,
282
+ "alpha": 1
283
+ },
284
+ "borderRadius": 4,
285
+ "borderWidth": 0,
286
+ "color": {
287
+ "red": 1,
288
+ "green": 1,
289
+ "blue": 1,
290
+ "alpha": 1
291
+ },
292
+ "fontName": "StagSans",
293
+ "fontSize": 16,
294
+ "fontWeight": 600,
295
+ "icon": null,
296
+ "iconSize": 24,
297
+ "iconSpace": 2,
298
+ "lineHeight": 1.5,
299
+ "minWidth": 0,
300
+ "opacity": 1,
301
+ "outerBackgroundColor": {
302
+ "red": 0,
303
+ "green": 0,
304
+ "blue": 0,
305
+ "alpha": 0
306
+ },
307
+ "outerBorderColor": {
308
+ "red": 1,
309
+ "green": 1,
310
+ "blue": 1,
311
+ "alpha": 1
312
+ },
313
+ "outerBorderGap": 2,
314
+ "outerBorderWidth": 2,
315
+ "paddingBottom": 8,
316
+ "paddingLeft": 24,
317
+ "paddingRight": 24,
318
+ "paddingTop": 8,
319
+ "shadow": null,
320
+ "textAlign": "center",
321
+ "textLine": "none",
322
+ "textLineStyle": "solid",
323
+ "width": null
324
+ }
325
+ },
326
+ "ButtonDropdown": {
327
+ "appearances": {
328
+ "inactive": {
329
+ "description": "Prevents an interactive component from being interacted with and applies accessibility attributes to indicate to the user that this component cannot be used.",
330
+ "values": [true],
331
+ "type": "state"
332
+ },
333
+ "open": {
334
+ "description": "Applies when a ButtonDropdown is open.",
335
+ "values": [true],
336
+ "type": "state"
337
+ },
338
+ "pressed": {
339
+ "description": "Applies while an interactive component is being physically pressed. Most visible on touchscreen taps; in React Native Web, this is visible on web mouse clicks only if the pressable is held down.",
340
+ "values": [true],
341
+ "type": "state"
342
+ },
343
+ "selected": {
344
+ "description": "Applies while an interactive component is the currently selected one in a set of states or components, for example a button in a `ButtonGroup`.",
345
+ "values": [true],
346
+ "type": "state"
347
+ }
348
+ },
349
+ "rules": [
350
+ {
351
+ "if": {
352
+ "open": true
353
+ },
354
+ "tokens": {
355
+ "icon": "PaletteIconChevronUp"
356
+ }
357
+ },
358
+ {
359
+ "if": {
360
+ "pressed": true
361
+ },
362
+ "tokens": {
363
+ "backgroundColor": {
364
+ "red": 0.00392,
365
+ "green": 0.41961,
366
+ "blue": 0.41569,
367
+ "alpha": 1
368
+ },
369
+ "borderColor": {
370
+ "red": 0.00392,
371
+ "green": 0.41961,
372
+ "blue": 0.41569,
373
+ "alpha": 1
374
+ },
375
+ "color": {
376
+ "red": 1,
377
+ "green": 1,
378
+ "blue": 1,
379
+ "alpha": 1
380
+ }
381
+ }
382
+ },
383
+ {
384
+ "if": {
385
+ "selected": true
386
+ },
387
+ "tokens": {
388
+ "opacity": 0.8,
389
+ "outerBorderColor": {
390
+ "red": 0.00392,
391
+ "green": 0.41961,
392
+ "blue": 0.41569,
393
+ "alpha": 1
394
+ },
395
+ "outerBorderGap": 1,
396
+ "outerBorderWidth": 4
397
+ }
398
+ },
399
+ {
400
+ "if": {
401
+ "inactive": true
402
+ },
403
+ "tokens": {
404
+ "backgroundColor": {
405
+ "red": 0.4,
406
+ "green": 0.4,
407
+ "blue": 0.4,
408
+ "alpha": 1
409
+ },
410
+ "borderWidth": 0,
411
+ "color": {
412
+ "red": 1,
413
+ "green": 1,
414
+ "blue": 1,
415
+ "alpha": 1
416
+ },
417
+ "iconColor": {
418
+ "red": 0.4,
419
+ "green": 0.4,
420
+ "blue": 0.4,
421
+ "alpha": 1
422
+ }
423
+ }
424
+ },
425
+ {
426
+ "if": {
427
+ "selected": true
428
+ },
429
+ "tokens": {
430
+ "opacity": 0.8,
431
+ "outerBorderColor": {
432
+ "red": 0.00392,
433
+ "green": 0.41961,
434
+ "blue": 0.41569,
435
+ "alpha": 1
436
+ },
437
+ "outerBorderGap": 1,
438
+ "outerBorderWidth": 4
439
+ }
440
+ }
441
+ ],
442
+ "tokens": {
443
+ "alignSelf": "flex-start",
444
+ "backgroundColor": {
445
+ "red": 0.00392,
446
+ "green": 0.41961,
447
+ "blue": 0.41569,
448
+ "alpha": 1
449
+ },
450
+ "borderColor": {
451
+ "red": 0.00392,
452
+ "green": 0.28235,
453
+ "blue": 0.27843,
454
+ "alpha": 1
455
+ },
456
+ "borderRadius": 4,
457
+ "borderWidth": 0,
458
+ "color": {
459
+ "red": 1,
460
+ "green": 1,
461
+ "blue": 1,
462
+ "alpha": 1
463
+ },
464
+ "fontName": "StagSans",
465
+ "fontSize": 14,
466
+ "fontWeight": 600,
467
+ "icon": "PaletteIconChevronDown",
468
+ "iconAlignSelf": "center",
469
+ "iconBackground": {
470
+ "red": 1,
471
+ "green": 1,
472
+ "blue": 1,
473
+ "alpha": 1
474
+ },
475
+ "iconBorderRadius": 32,
476
+ "iconColor": {
477
+ "red": 0.00392,
478
+ "green": 0.41961,
479
+ "blue": 0.41569,
480
+ "alpha": 1
481
+ },
482
+ "iconPadding": 4,
483
+ "iconPosition": "right",
484
+ "iconSize": 20,
485
+ "iconSpace": 3,
486
+ "iconTranslateX": 0,
487
+ "iconTranslateY": 0,
488
+ "lineHeight": 1.5,
489
+ "minWidth": 0,
490
+ "opacity": 1,
491
+ "outerBackgroundColor": {
492
+ "red": 0,
493
+ "green": 0,
494
+ "blue": 0,
495
+ "alpha": 0
496
+ },
497
+ "outerBorderColor": {
498
+ "red": 0,
499
+ "green": 0,
500
+ "blue": 0,
501
+ "alpha": 0
502
+ },
503
+ "outerBorderGap": 2,
504
+ "outerBorderWidth": 2,
505
+ "paddingBottom": 8,
506
+ "paddingLeft": 24,
507
+ "paddingRight": 16,
508
+ "paddingTop": 8,
509
+ "shadow": null,
510
+ "textAlign": "center",
511
+ "width": null
512
+ }
513
+ },
514
+ "ButtonGroup": {
515
+ "appearances": {},
516
+ "rules": [],
517
+ "tokens": {
518
+ "alignItems": "center",
519
+ "direction": "row",
520
+ "fieldSpace": 2,
521
+ "flexGrow": 0,
522
+ "flexShrink": 0,
523
+ "justifyContent": "flex-start",
524
+ "space": 3
525
+ }
526
+ },
527
+ "ButtonGroupItem": {
528
+ "appearances": {
529
+ "inactive": {
530
+ "description": "Prevents an interactive component from being interacted with and applies accessibility attributes to indicate to the user that this component cannot be used.",
531
+ "values": [true],
532
+ "type": "state"
533
+ },
534
+ "pressed": {
535
+ "description": "Applies while an interactive component is being physically pressed. Most visible on touchscreen taps; in React Native Web, this is visible on web mouse clicks only if the pressable is held down.",
536
+ "values": [true],
537
+ "type": "state"
538
+ },
539
+ "selected": {
540
+ "description": "Applies while an interactive component is the currently selected one in a set of states or components, for example a button in a `ButtonGroup`.",
541
+ "values": [true],
542
+ "type": "state"
543
+ }
544
+ },
545
+ "rules": [
546
+ {
547
+ "if": {
548
+ "pressed": true
549
+ },
550
+ "tokens": {
551
+ "backgroundColor": {
552
+ "red": 0.00392,
553
+ "green": 0.41961,
554
+ "blue": 0.41569,
555
+ "alpha": 1
556
+ },
557
+ "borderColor": {
558
+ "red": 0.00392,
559
+ "green": 0.41961,
560
+ "blue": 0.41569,
561
+ "alpha": 1
562
+ },
563
+ "color": {
564
+ "red": 1,
565
+ "green": 1,
566
+ "blue": 1,
567
+ "alpha": 1
568
+ }
569
+ }
570
+ },
571
+ {
572
+ "if": {
573
+ "selected": true
574
+ },
575
+ "tokens": {
576
+ "opacity": 0.8,
577
+ "outerBorderColor": {
578
+ "red": 0.00392,
579
+ "green": 0.41961,
580
+ "blue": 0.41569,
581
+ "alpha": 1
582
+ },
583
+ "outerBorderGap": 1,
584
+ "outerBorderWidth": 4
585
+ }
586
+ },
587
+ {
588
+ "if": {
589
+ "inactive": true
590
+ },
591
+ "tokens": {
592
+ "backgroundColor": {
593
+ "red": 0.4,
594
+ "green": 0.4,
595
+ "blue": 0.4,
596
+ "alpha": 1
597
+ },
598
+ "borderWidth": 0,
599
+ "color": {
600
+ "red": 1,
601
+ "green": 1,
602
+ "blue": 1,
603
+ "alpha": 1
604
+ }
605
+ }
606
+ },
607
+ {
608
+ "if": {
609
+ "selected": true
610
+ },
611
+ "tokens": {
612
+ "opacity": 0.8,
613
+ "outerBorderColor": {
614
+ "red": 0.00392,
615
+ "green": 0.41961,
616
+ "blue": 0.41569,
617
+ "alpha": 1
618
+ },
619
+ "outerBorderGap": 1,
620
+ "outerBorderWidth": 4
621
+ }
622
+ }
623
+ ],
624
+ "tokens": {
625
+ "alignSelf": "flex-start",
626
+ "backgroundColor": {
627
+ "red": 0.00392,
628
+ "green": 0.41961,
629
+ "blue": 0.41569,
630
+ "alpha": 1
631
+ },
632
+ "borderColor": {
633
+ "red": 0.00392,
634
+ "green": 0.28235,
635
+ "blue": 0.27843,
636
+ "alpha": 1
637
+ },
638
+ "borderRadius": 4,
639
+ "borderWidth": 0,
640
+ "color": {
641
+ "red": 1,
642
+ "green": 1,
643
+ "blue": 1,
644
+ "alpha": 1
645
+ },
646
+ "fontName": "StagSans",
647
+ "fontSize": 14,
648
+ "fontWeight": 600,
649
+ "lineHeight": 1.5,
650
+ "minWidth": 0,
651
+ "opacity": 1,
652
+ "outerBackgroundColor": {
653
+ "red": 0,
654
+ "green": 0,
655
+ "blue": 0,
656
+ "alpha": 0
657
+ },
658
+ "outerBorderColor": {
659
+ "red": 0,
660
+ "green": 0,
661
+ "blue": 0,
662
+ "alpha": 0
663
+ },
664
+ "outerBorderGap": 2,
665
+ "outerBorderWidth": 2,
666
+ "paddingBottom": 8,
667
+ "paddingLeft": 24,
668
+ "paddingRight": 24,
669
+ "paddingTop": 8,
670
+ "shadow": null,
671
+ "textAlign": "center",
672
+ "width": null
673
+ }
674
+ },
675
+ "Card": {
676
+ "appearances": {},
677
+ "rules": [],
678
+ "tokens": {
679
+ "backgroundColor": {
680
+ "red": 0.97647,
681
+ "green": 0.96471,
682
+ "blue": 0.64706,
683
+ "alpha": 1
684
+ },
685
+ "borderColor": {
686
+ "red": 0,
687
+ "green": 0,
688
+ "blue": 0,
689
+ "alpha": 0
690
+ },
691
+ "borderRadius": 0,
692
+ "borderWidth": 0,
693
+ "flex": 1,
694
+ "minWidth": null,
695
+ "paddingBottom": 16,
696
+ "paddingLeft": 16,
697
+ "paddingRight": 16,
698
+ "paddingTop": 16,
699
+ "shadow": null
700
+ }
701
+ },
702
+ "Carousel": {
703
+ "appearances": {
704
+ "viewport": {
705
+ "description": "The size label for the current screen viewport based on the current screen width",
706
+ "values": ["xs", "sm", "md", "lg", "xl"],
707
+ "type": "state"
708
+ }
709
+ },
710
+ "rules": [
711
+ {
712
+ "if": {
713
+ "viewport": ["xs", "sm"]
714
+ },
715
+ "tokens": {
716
+ "showPanelTabs": false,
717
+ "showPreviousNextNavigation": false,
718
+ "thumbnailSize": 48
719
+ }
720
+ }
721
+ ],
722
+ "tokens": {
723
+ "backgroundColor": {
724
+ "red": 0,
725
+ "green": 0,
726
+ "blue": 0,
727
+ "alpha": 0
728
+ },
729
+ "nextIcon": "PaletteIconChevronRight",
730
+ "previousIcon": "PaletteIconChevronLeft",
731
+ "showPanelNavigation": true,
732
+ "showPanelTabs": true,
733
+ "showPreviousNextNavigation": true,
734
+ "spaceBetweenSlideAndPanelNavigation": 32,
735
+ "spaceBetweenSlideAndPreviousNextNavigation": 24,
736
+ "thumbnailBorderColor": {
737
+ "red": 0.97647,
738
+ "green": 0.96471,
739
+ "blue": 0.64706,
740
+ "alpha": 1
741
+ },
742
+ "thumbnailBorderRadius": 4,
743
+ "thumbnailBorderWidth": 1,
744
+ "thumbnailContainerPaddingTop": 24,
745
+ "thumbnailMargin": 4,
746
+ "thumbnailPadding": 8,
747
+ "thumbnailSelectedBorderColor": {
748
+ "red": 0.00392,
749
+ "green": 0.41961,
750
+ "blue": 0.41569,
751
+ "alpha": 1
752
+ },
753
+ "thumbnailSelectedBorderWidth": 2,
754
+ "thumbnailSize": 64
755
+ }
756
+ },
757
+ "CarouselTabsPanelItem": {
758
+ "appearances": {
759
+ "inactive": {
760
+ "description": "Prevents an interactive component from being interacted with and applies accessibility attributes to indicate to the user that this component cannot be used.",
761
+ "values": [true],
762
+ "type": "state"
763
+ },
764
+ "pressed": {
765
+ "description": "Applies while an interactive component is being physically pressed. Most visible on touchscreen taps; in React Native Web, this is visible on web mouse clicks only if the pressable is held down.",
766
+ "values": [true],
767
+ "type": "state"
768
+ },
769
+ "selected": {
770
+ "description": "Applies while an interactive component is the currently selected one in a set of states or components, for example a button in a `ButtonGroup`.",
771
+ "values": [true],
772
+ "type": "state"
773
+ }
774
+ },
775
+ "rules": [
776
+ {
777
+ "if": {
778
+ "pressed": true
779
+ },
780
+ "tokens": {
781
+ "borderBottomColor": {
782
+ "red": 0.00392,
783
+ "green": 0.28235,
784
+ "blue": 0.27843,
785
+ "alpha": 1
786
+ },
787
+ "borderBottomWidth": 2,
788
+ "color": {
789
+ "red": 0.00392,
790
+ "green": 0.28235,
791
+ "blue": 0.27843,
792
+ "alpha": 1
793
+ }
794
+ }
795
+ },
796
+ {
797
+ "if": {
798
+ "inactive": true
799
+ },
800
+ "tokens": {
801
+ "borderBottomColor": {
802
+ "red": 0.78824,
803
+ "green": 0.78431,
804
+ "blue": 0.78431,
805
+ "alpha": 1
806
+ },
807
+ "borderBottomWidth": 4,
808
+ "color": {
809
+ "red": 0.78824,
810
+ "green": 0.78431,
811
+ "blue": 0.78431,
812
+ "alpha": 1
813
+ }
814
+ }
815
+ },
816
+ {
817
+ "if": {
818
+ "selected": true
819
+ },
820
+ "tokens": {
821
+ "borderBottomColor": {
822
+ "red": 0.78824,
823
+ "green": 0.78431,
824
+ "blue": 0.78431,
825
+ "alpha": 1
826
+ },
827
+ "borderBottomWidth": 2,
828
+ "color": {
829
+ "red": 0.78824,
830
+ "green": 0.78431,
831
+ "blue": 0.78431,
832
+ "alpha": 1
833
+ },
834
+ "fontName": "StagSans",
835
+ "fontWeight": 400
836
+ }
837
+ }
838
+ ],
839
+ "tokens": {
840
+ "alignItems": "flex-start",
841
+ "borderBottomColor": {
842
+ "red": 0,
843
+ "green": 0,
844
+ "blue": 0,
845
+ "alpha": 0
846
+ },
847
+ "borderBottomStyle": "solid",
848
+ "borderBottomWidth": 1,
849
+ "color": {
850
+ "red": 0.00392,
851
+ "green": 0.41961,
852
+ "blue": 0.41569,
853
+ "alpha": 1
854
+ },
855
+ "flex": 1,
856
+ "fontName": "StagSans",
857
+ "fontScaleCap": 64,
858
+ "fontSize": 14,
859
+ "fontWeight": 400,
860
+ "justifyContent": "flex-start",
861
+ "letterSpacing": 0,
862
+ "lineHeight": 1.1,
863
+ "paddingBottom": 16,
864
+ "paddingLeft": 0,
865
+ "paddingRight": 0,
866
+ "paddingTop": 0
867
+ }
868
+ },
869
+ "Checkbox": {
870
+ "appearances": {
871
+ "checked": {
872
+ "description": "Corresponds to a selected state for a checkbox or radio",
873
+ "values": [true],
874
+ "type": "state"
875
+ },
876
+ "error": {
877
+ "values": [true],
878
+ "type": "state"
879
+ },
880
+ "inactive": {
881
+ "description": "Prevents an interactive component from being interacted with and applies accessibility attributes to indicate to the user that this component cannot be used.",
882
+ "values": [true],
883
+ "type": "state"
884
+ }
885
+ },
886
+ "rules": [],
887
+ "tokens": {
888
+ "containerBackgroundColor": {
889
+ "red": 0,
890
+ "green": 0,
891
+ "blue": 0,
892
+ "alpha": 0
893
+ },
894
+ "feedbackMarginBottom": 0,
895
+ "feedbackMarginTop": 0,
896
+ "feedbackPosition": "bottom",
897
+ "icon": "PaletteIconCheck",
898
+ "iconBackgroundColor": {
899
+ "red": 1,
900
+ "green": 1,
901
+ "blue": 1,
902
+ "alpha": 1
903
+ },
904
+ "iconColor": {
905
+ "red": 0.00392,
906
+ "green": 0.41961,
907
+ "blue": 0.41569,
908
+ "alpha": 1
909
+ },
910
+ "iconSize": 16,
911
+ "inputBackgroundColor": {
912
+ "red": 1,
913
+ "green": 1,
914
+ "blue": 1,
915
+ "alpha": 1
916
+ },
917
+ "inputBorderColor": {
918
+ "red": 0.00392,
919
+ "green": 0.41961,
920
+ "blue": 0.41569,
921
+ "alpha": 1
922
+ },
923
+ "inputBorderRadius": 0,
924
+ "inputBorderWidth": 2,
925
+ "inputHeight": 20,
926
+ "inputOutlineColor": {
927
+ "red": 0,
928
+ "green": 0,
929
+ "blue": 0,
930
+ "alpha": 0
931
+ },
932
+ "inputOutlineWidth": 0,
933
+ "inputShadow": null,
934
+ "inputWidth": 20,
935
+ "labelColor": {
936
+ "red": 0,
937
+ "green": 0,
938
+ "blue": 0,
939
+ "alpha": 1
940
+ },
941
+ "labelFontName": "StagSans",
942
+ "labelFontSize": 16,
943
+ "labelFontWeight": 400,
944
+ "labelLineHeight": 1.5,
945
+ "labelMarginLeft": 8
946
+ }
947
+ },
948
+ "CheckboxGroup": {
949
+ "appearances": {},
950
+ "rules": [],
951
+ "tokens": {
952
+ "fieldSpace": 2,
953
+ "space": 2
954
+ }
955
+ },
956
+ "ChevronLink": {
957
+ "appearances": {},
958
+ "rules": [],
959
+ "tokens": {
960
+ "iconDisplace": 4,
961
+ "iconSize": 24,
962
+ "iconSpace": 0,
963
+ "leftIcon": "PaletteIconChevronLeft",
964
+ "rightIcon": "PaletteIconChevronRight",
965
+ "textLine": "none"
966
+ }
967
+ },
968
+ "Divider": {
969
+ "appearances": {},
970
+ "rules": [],
971
+ "tokens": {
972
+ "color": {
973
+ "red": 0.78824,
974
+ "green": 0.78431,
975
+ "blue": 0.78431,
976
+ "alpha": 1
977
+ },
978
+ "width": 1
979
+ }
980
+ },
981
+ "ExpandCollapse": {
982
+ "appearances": {},
983
+ "rules": [],
984
+ "tokens": {
985
+ "borderColor": {
986
+ "red": 0,
987
+ "green": 0,
988
+ "blue": 0,
989
+ "alpha": 0
990
+ },
991
+ "borderStyle": "solid",
992
+ "borderWidth": 0
993
+ }
994
+ },
995
+ "ExpandCollapseControl": {
996
+ "appearances": {
997
+ "expanded": {
998
+ "description": "Applies when an ExpandCollapse panel is open and the content inside is visible",
999
+ "values": [true],
1000
+ "type": "state"
1001
+ }
1002
+ },
1003
+ "rules": [
1004
+ {
1005
+ "if": {
1006
+ "expanded": true
1007
+ },
1008
+ "tokens": {
1009
+ "icon": "PaletteIconChevronUp"
1010
+ }
1011
+ }
1012
+ ],
1013
+ "tokens": {
1014
+ "backgroundColor": {
1015
+ "red": 0,
1016
+ "green": 0,
1017
+ "blue": 0,
1018
+ "alpha": 0
1019
+ },
1020
+ "borderColor": {
1021
+ "red": 0,
1022
+ "green": 0,
1023
+ "blue": 0,
1024
+ "alpha": 0
1025
+ },
1026
+ "borderWidth": 0,
1027
+ "icon": "PaletteIconChevronDown",
1028
+ "iconColor": {
1029
+ "red": 0.00392,
1030
+ "green": 0.41961,
1031
+ "blue": 0.41569,
1032
+ "alpha": 1
1033
+ },
1034
+ "iconGap": 16,
1035
+ "iconPosition": "left",
1036
+ "iconSize": 16,
1037
+ "justifyContent": "flex-start",
1038
+ "paddingBottom": 16,
1039
+ "paddingLeft": 16,
1040
+ "paddingRight": 16,
1041
+ "paddingTop": 16,
1042
+ "verticalAlign": "middle"
1043
+ }
1044
+ },
1045
+ "ExpandCollapsePanel": {
1046
+ "appearances": {},
1047
+ "rules": [],
1048
+ "tokens": {
1049
+ "collapseDuration": 250,
1050
+ "contentPaddingBottom": 16,
1051
+ "contentPaddingLeft": 48,
1052
+ "contentPaddingRight": 16,
1053
+ "contentPaddingTop": 0,
1054
+ "expandDuration": 300
1055
+ }
1056
+ },
1057
+ "Feedback": {
1058
+ "appearances": {
1059
+ "icon": {
1060
+ "type": "variant",
1061
+ "values": [true]
1062
+ },
1063
+ "validation": {
1064
+ "description": "Validation states for form inputs",
1065
+ "values": ["error", "success"],
1066
+ "type": "state"
1067
+ }
1068
+ },
1069
+ "rules": [
1070
+ {
1071
+ "if": {
1072
+ "validation": "success"
1073
+ },
1074
+ "tokens": {
1075
+ "backgroundColor": {
1076
+ "red": 0.75686,
1077
+ "green": 0.94902,
1078
+ "blue": 0.9098,
1079
+ "alpha": 1
1080
+ },
1081
+ "borderColor": {
1082
+ "red": 0.75686,
1083
+ "green": 0.94902,
1084
+ "blue": 0.9098,
1085
+ "alpha": 1
1086
+ },
1087
+ "color": {
1088
+ "red": 0.1451,
1089
+ "green": 0.5451,
1090
+ "blue": 0.04314,
1091
+ "alpha": 1
1092
+ }
1093
+ }
1094
+ },
1095
+ {
1096
+ "if": {
1097
+ "validation": "error"
1098
+ },
1099
+ "tokens": {
1100
+ "backgroundColor": {
1101
+ "red": 0.98039,
1102
+ "green": 0.90196,
1103
+ "blue": 0.95686,
1104
+ "alpha": 1
1105
+ },
1106
+ "borderColor": {
1107
+ "red": 0.98039,
1108
+ "green": 0.90196,
1109
+ "blue": 0.95686,
1110
+ "alpha": 1
1111
+ },
1112
+ "color": {
1113
+ "red": 0.87451,
1114
+ "green": 0.23922,
1115
+ "blue": 0.04706,
1116
+ "alpha": 1
1117
+ }
1118
+ }
1119
+ },
1120
+ {
1121
+ "if": {
1122
+ "icon": true,
1123
+ "validation": "success"
1124
+ },
1125
+ "tokens": {
1126
+ "icon": "PaletteIconCheckCircledFilled",
1127
+ "iconColor": {
1128
+ "red": 0.1451,
1129
+ "green": 0.5451,
1130
+ "blue": 0.04314,
1131
+ "alpha": 1
1132
+ }
1133
+ }
1134
+ },
1135
+ {
1136
+ "if": {
1137
+ "icon": true,
1138
+ "validation": "error"
1139
+ },
1140
+ "tokens": {
1141
+ "icon": "PaletteIconExclamationTriangle",
1142
+ "iconColor": {
1143
+ "red": 0.87451,
1144
+ "green": 0.23922,
1145
+ "blue": 0.04706,
1146
+ "alpha": 1
1147
+ }
1148
+ }
1149
+ }
1150
+ ],
1151
+ "tokens": {
1152
+ "backgroundColor": {
1153
+ "red": 0.93725,
1154
+ "green": 0.93725,
1155
+ "blue": 0.93725,
1156
+ "alpha": 1
1157
+ },
1158
+ "borderColor": {
1159
+ "red": 0.78824,
1160
+ "green": 0.78431,
1161
+ "blue": 0.78431,
1162
+ "alpha": 1
1163
+ },
1164
+ "borderRadius": 4,
1165
+ "borderWidth": 1,
1166
+ "color": {
1167
+ "red": 0.34902,
1168
+ "green": 0.34902,
1169
+ "blue": 0.34902,
1170
+ "alpha": 1
1171
+ },
1172
+ "contentFontSize": 14,
1173
+ "fontName": "StagSans",
1174
+ "fontWeight": 400,
1175
+ "icon": null,
1176
+ "iconColor": {
1177
+ "red": 0,
1178
+ "green": 0,
1179
+ "blue": 0,
1180
+ "alpha": 0
1181
+ },
1182
+ "iconGap": 8,
1183
+ "iconSize": 24,
1184
+ "lineHeight": 1.5,
1185
+ "paddingBottom": 10,
1186
+ "paddingLeft": 16,
1187
+ "paddingRight": 16,
1188
+ "paddingTop": 10,
1189
+ "space": 2,
1190
+ "titleFontSize": 16
1191
+ }
1192
+ },
1193
+ "HorizontalScrollButton": {
1194
+ "appearances": {
1195
+ "pressed": {
1196
+ "description": "Applies while an interactive component is being physically pressed. Most visible on touchscreen taps; in React Native Web, this is visible on web mouse clicks only if the pressable is held down.",
1197
+ "values": [true],
1198
+ "type": "state"
1199
+ }
1200
+ },
1201
+ "rules": [
1202
+ {
1203
+ "if": {
1204
+ "pressed": true
1205
+ },
1206
+ "tokens": {
1207
+ "backgroundColor": {
1208
+ "red": 0.00392,
1209
+ "green": 0.41961,
1210
+ "blue": 0.41569,
1211
+ "alpha": 1
1212
+ },
1213
+ "borderColor": {
1214
+ "red": 0.00392,
1215
+ "green": 0.41961,
1216
+ "blue": 0.41569,
1217
+ "alpha": 1
1218
+ },
1219
+ "iconColor": {
1220
+ "red": 1,
1221
+ "green": 1,
1222
+ "blue": 1,
1223
+ "alpha": 1
1224
+ }
1225
+ }
1226
+ }
1227
+ ],
1228
+ "tokens": {
1229
+ "backgroundColor": {
1230
+ "red": 1,
1231
+ "green": 1,
1232
+ "blue": 1,
1233
+ "alpha": 1
1234
+ },
1235
+ "borderColor": {
1236
+ "red": 0.78824,
1237
+ "green": 0.78431,
1238
+ "blue": 0.78431,
1239
+ "alpha": 1
1240
+ },
1241
+ "borderRadius": 32,
1242
+ "borderWidth": 1,
1243
+ "iconColor": {
1244
+ "red": 0.00392,
1245
+ "green": 0.41961,
1246
+ "blue": 0.41569,
1247
+ "alpha": 1
1248
+ },
1249
+ "iconScale": 1,
1250
+ "iconSize": 16,
1251
+ "iconTranslateX": 0,
1252
+ "iconTranslateY": 0,
1253
+ "outerBorderColor": {
1254
+ "red": 0,
1255
+ "green": 0,
1256
+ "blue": 0,
1257
+ "alpha": 0
1258
+ },
1259
+ "outerBorderGap": 0,
1260
+ "outerBorderWidth": 0,
1261
+ "padding": 8,
1262
+ "shadow": null
1263
+ }
1264
+ },
1265
+ "Icon": {
1266
+ "appearances": {
1267
+ "colour": {
1268
+ "type": "variant",
1269
+ "values": ["primary", "secondary", "black", "white"]
1270
+ },
1271
+ "size": {
1272
+ "type": "variant",
1273
+ "values": ["small"]
1274
+ },
1275
+ "status": {
1276
+ "description": "Uses icon colour to communicate meaning to the user",
1277
+ "type": "variant",
1278
+ "values": ["success", "error"]
1279
+ }
1280
+ },
1281
+ "rules": [
1282
+ {
1283
+ "if": {
1284
+ "size": "small"
1285
+ },
1286
+ "tokens": {
1287
+ "size": 20
1288
+ }
1289
+ },
1290
+ {
1291
+ "if": {
1292
+ "colour": "primary"
1293
+ },
1294
+ "tokens": {
1295
+ "color": {
1296
+ "red": 0,
1297
+ "green": 0,
1298
+ "blue": 0,
1299
+ "alpha": 1
1300
+ }
1301
+ }
1302
+ },
1303
+ {
1304
+ "if": {
1305
+ "colour": "secondary"
1306
+ },
1307
+ "tokens": {
1308
+ "color": {
1309
+ "red": 0,
1310
+ "green": 0.63137,
1311
+ "blue": 0.85882,
1312
+ "alpha": 1
1313
+ }
1314
+ }
1315
+ },
1316
+ {
1317
+ "if": {
1318
+ "colour": "black"
1319
+ },
1320
+ "tokens": {
1321
+ "color": {
1322
+ "red": 0,
1323
+ "green": 0,
1324
+ "blue": 0,
1325
+ "alpha": 1
1326
+ }
1327
+ }
1328
+ },
1329
+ {
1330
+ "if": {
1331
+ "colour": "white"
1332
+ },
1333
+ "tokens": {
1334
+ "color": {
1335
+ "red": 1,
1336
+ "green": 1,
1337
+ "blue": 1,
1338
+ "alpha": 1
1339
+ }
1340
+ }
1341
+ },
1342
+ {
1343
+ "if": {
1344
+ "status": "success"
1345
+ },
1346
+ "tokens": {
1347
+ "color": {
1348
+ "red": 0.00392,
1349
+ "green": 0.41961,
1350
+ "blue": 0.41569,
1351
+ "alpha": 1
1352
+ }
1353
+ }
1354
+ },
1355
+ {
1356
+ "if": {
1357
+ "status": "error"
1358
+ },
1359
+ "tokens": {
1360
+ "color": {
1361
+ "red": 0.93333,
1362
+ "green": 0.17255,
1363
+ "blue": 0.4549,
1364
+ "alpha": 1
1365
+ }
1366
+ }
1367
+ }
1368
+ ],
1369
+ "tokens": {
1370
+ "color": {
1371
+ "red": 0.4,
1372
+ "green": 0.4,
1373
+ "blue": 0.4,
1374
+ "alpha": 1
1375
+ },
1376
+ "scale": 1,
1377
+ "size": 24,
1378
+ "translateX": 0,
1379
+ "translateY": 0
1380
+ }
1381
+ },
1382
+ "IconButton": {
1383
+ "appearances": {
1384
+ "compact": {
1385
+ "description": "Without the outer border gap",
1386
+ "type": "variant",
1387
+ "values": [true]
1388
+ },
1389
+ "inactive": {
1390
+ "description": "Prevents an interactive component from being interacted with and applies accessibility attributes to indicate to the user that this component cannot be used.",
1391
+ "values": [true],
1392
+ "type": "state"
1393
+ },
1394
+ "pressed": {
1395
+ "description": "Applies while an interactive component is being physically pressed. Most visible on touchscreen taps; in React Native Web, this is visible on web mouse clicks only if the pressable is held down.",
1396
+ "values": [true],
1397
+ "type": "state"
1398
+ }
1399
+ },
1400
+ "rules": [
1401
+ {
1402
+ "if": {
1403
+ "compact": true
1404
+ },
1405
+ "tokens": {
1406
+ "outerBorderGap": 0
1407
+ }
1408
+ }
1409
+ ],
1410
+ "tokens": {
1411
+ "backgroundColor": {
1412
+ "red": 0,
1413
+ "green": 0,
1414
+ "blue": 0,
1415
+ "alpha": 0
1416
+ },
1417
+ "borderColor": {
1418
+ "red": 0.00392,
1419
+ "green": 0.41961,
1420
+ "blue": 0.41569,
1421
+ "alpha": 1
1422
+ },
1423
+ "borderRadius": 99999999999999,
1424
+ "borderWidth": 1,
1425
+ "iconColor": {
1426
+ "red": 0.00392,
1427
+ "green": 0.41961,
1428
+ "blue": 0.41569,
1429
+ "alpha": 1
1430
+ },
1431
+ "iconScale": 1,
1432
+ "iconSize": 24,
1433
+ "iconTranslateX": 0,
1434
+ "iconTranslateY": 0,
1435
+ "outerBorderColor": {
1436
+ "red": 0,
1437
+ "green": 0,
1438
+ "blue": 0,
1439
+ "alpha": 0
1440
+ },
1441
+ "outerBorderGap": 0,
1442
+ "outerBorderWidth": 0,
1443
+ "padding": 4,
1444
+ "shadow": null
1445
+ }
1446
+ },
1447
+ "InputLabel": {
1448
+ "appearances": {},
1449
+ "rules": [],
1450
+ "tokens": {
1451
+ "color": {
1452
+ "red": 0,
1453
+ "green": 0,
1454
+ "blue": 0,
1455
+ "alpha": 1
1456
+ },
1457
+ "fontName": "StagSans",
1458
+ "fontSize": 16,
1459
+ "fontWeight": 700,
1460
+ "gap": 8,
1461
+ "hintColor": {
1462
+ "red": 0,
1463
+ "green": 0,
1464
+ "blue": 0,
1465
+ "alpha": 1
1466
+ },
1467
+ "hintFontName": "StagSans",
1468
+ "hintFontSize": 14,
1469
+ "hintFontWeight": 400,
1470
+ "hintLineHeight": 1.4,
1471
+ "lineHeight": 1.4
1472
+ }
1473
+ },
1474
+ "InputSupports": {
1475
+ "appearances": {},
1476
+ "rules": [],
1477
+ "tokens": {
1478
+ "space": 1
1479
+ }
1480
+ },
1481
+ "Link": {
1482
+ "appearances": {
1483
+ "iconPosition": {
1484
+ "description": "Theme styles to be applied to icon links depending on where the icon is in relation to the link text",
1485
+ "values": ["left", "right"],
1486
+ "type": "state"
1487
+ },
1488
+ "rank": {
1489
+ "description": "Prominence of the link.",
1490
+ "type": "variant",
1491
+ "values": ["secondary"]
1492
+ }
1493
+ },
1494
+ "rules": [
1495
+ {
1496
+ "if": {
1497
+ "iconPosition": "left"
1498
+ },
1499
+ "tokens": {
1500
+ "iconSpace": 2
1501
+ }
1502
+ },
1503
+ {
1504
+ "if": {
1505
+ "rank": "secondary"
1506
+ },
1507
+ "tokens": {
1508
+ "color": {
1509
+ "red": 0,
1510
+ "green": 0.63137,
1511
+ "blue": 0.85882,
1512
+ "alpha": 1
1513
+ }
1514
+ }
1515
+ }
1516
+ ],
1517
+ "tokens": {
1518
+ "alignSelf": "flex-start",
1519
+ "blockFontName": "StagSans",
1520
+ "blockFontSize": 16,
1521
+ "blockFontWeight": 600,
1522
+ "blockLineHeight": 1.5,
1523
+ "borderRadius": 4,
1524
+ "color": {
1525
+ "red": 0.00392,
1526
+ "green": 0.41961,
1527
+ "blue": 0.41569,
1528
+ "alpha": 1
1529
+ },
1530
+ "icon": null,
1531
+ "iconSize": 24,
1532
+ "iconSpace": 1,
1533
+ "iconTranslateX": 0,
1534
+ "iconTranslateY": 0,
1535
+ "outerBorderColor": {
1536
+ "red": 0,
1537
+ "green": 0,
1538
+ "blue": 0,
1539
+ "alpha": 0
1540
+ },
1541
+ "outerBorderGap": 0,
1542
+ "outerBorderOutline": "none",
1543
+ "outerBorderWidth": 0,
1544
+ "textLine": "underline",
1545
+ "textLineStyle": "solid"
1546
+ }
1547
+ },
1548
+ "List": {
1549
+ "appearances": {
1550
+ "compact": {
1551
+ "description": "Reduces line height on some body text styles. For data-rich content, not for flow content",
1552
+ "type": "variant",
1553
+ "values": [true]
1554
+ },
1555
+ "size": {
1556
+ "description": "Text sizes for block links; similar but not always identical to Typography sizes.",
1557
+ "type": "variant",
1558
+ "values": ["large", "small"]
1559
+ }
1560
+ },
1561
+ "rules": [
1562
+ {
1563
+ "if": {
1564
+ "size": "large"
1565
+ },
1566
+ "tokens": {
1567
+ "itemFontSize": 20,
1568
+ "itemLineHeight": 1.4,
1569
+ "listGutter": 16
1570
+ }
1571
+ },
1572
+ {
1573
+ "if": {
1574
+ "size": "small"
1575
+ },
1576
+ "tokens": {
1577
+ "itemFontSize": 14,
1578
+ "listGutter": 10
1579
+ }
1580
+ },
1581
+ {
1582
+ "if": {
1583
+ "compact": true
1584
+ },
1585
+ "tokens": {
1586
+ "itemLineHeight": 1.2
1587
+ }
1588
+ },
1589
+ {
1590
+ "if": {
1591
+ "compact": true,
1592
+ "size": "small"
1593
+ },
1594
+ "tokens": {
1595
+ "itemLineHeight": 1.1
1596
+ }
1597
+ },
1598
+ {
1599
+ "if": {
1600
+ "compact": true,
1601
+ "size": "large"
1602
+ },
1603
+ "tokens": {
1604
+ "itemLineHeight": 1.3
1605
+ }
1606
+ }
1607
+ ],
1608
+ "tokens": {
1609
+ "dividerColor": {
1610
+ "red": 0.78824,
1611
+ "green": 0.78431,
1612
+ "blue": 0.78431,
1613
+ "alpha": 1
1614
+ },
1615
+ "dividerSize": 1,
1616
+ "iconMarginTop": 4,
1617
+ "interItemMargin": 8,
1618
+ "interItemMarginWithDivider": 16,
1619
+ "itemBulletColor": {
1620
+ "red": 0.48627,
1621
+ "green": 0.07451,
1622
+ "blue": 0.4,
1623
+ "alpha": 1
1624
+ },
1625
+ "itemBulletContainerAlign": "center",
1626
+ "itemBulletContainerWidth": 16,
1627
+ "itemBulletHeight": 4,
1628
+ "itemBulletWidth": 4,
1629
+ "itemFontName": "StagSans",
1630
+ "itemFontSize": 16,
1631
+ "itemFontWeight": 600,
1632
+ "itemIconColor": {
1633
+ "red": 0.48627,
1634
+ "green": 0.07451,
1635
+ "blue": 0.4,
1636
+ "alpha": 1
1637
+ },
1638
+ "itemIconSize": 16,
1639
+ "itemLineHeight": 1.3,
1640
+ "listGutter": 10
1641
+ }
1642
+ },
1643
+ "Modal": {
1644
+ "appearances": {
1645
+ "maxWidth": {
1646
+ "description": "Whether a modal should expand responsively to the maximum of 8 layout columns width",
1647
+ "values": [true],
1648
+ "type": "state"
1649
+ },
1650
+ "viewport": {
1651
+ "description": "The size label for the current screen viewport based on the current screen width",
1652
+ "values": ["xs", "sm", "md", "lg", "xl"],
1653
+ "type": "state"
1654
+ }
1655
+ },
1656
+ "rules": [
1657
+ {
1658
+ "if": {
1659
+ "viewport": ["xs", "sm"]
1660
+ },
1661
+ "tokens": {
1662
+ "height": "100%"
1663
+ }
1664
+ },
1665
+ {
1666
+ "if": {
1667
+ "viewport": ["md", "lg", "xl"]
1668
+ },
1669
+ "tokens": {
1670
+ "containerPaddingBottom": 32,
1671
+ "containerPaddingTop": 32,
1672
+ "maxWidth": 576
1673
+ }
1674
+ },
1675
+ {
1676
+ "if": {
1677
+ "maxWidth": true,
1678
+ "viewport": ["md", "lg", "xl"]
1679
+ },
1680
+ "tokens": {
1681
+ "containerPaddingLeft": 16,
1682
+ "containerPaddingRight": 16,
1683
+ "maxWidth": "66.67%"
1684
+ }
1685
+ }
1686
+ ],
1687
+ "tokens": {
1688
+ "backdropColor": {
1689
+ "red": 0,
1690
+ "green": 0,
1691
+ "blue": 0,
1692
+ "alpha": 1
1693
+ },
1694
+ "backdropOpacity": 0.5,
1695
+ "backgroundColor": {
1696
+ "red": 1,
1697
+ "green": 1,
1698
+ "blue": 1,
1699
+ "alpha": 1
1700
+ },
1701
+ "borderRadius": 4,
1702
+ "closeIcon": "PaletteIconTimes",
1703
+ "closeIconColor": {
1704
+ "red": 0,
1705
+ "green": 0,
1706
+ "blue": 0,
1707
+ "alpha": 1
1708
+ },
1709
+ "closeIconSize": 24,
1710
+ "closePadding": 4,
1711
+ "containerPaddingBottom": 0,
1712
+ "containerPaddingLeft": 0,
1713
+ "containerPaddingRight": 0,
1714
+ "containerPaddingTop": 0,
1715
+ "height": null,
1716
+ "maxWidth": "100%",
1717
+ "paddingBottom": 16,
1718
+ "paddingLeft": 16,
1719
+ "paddingRight": 16,
1720
+ "paddingTop": 16,
1721
+ "shadow": {
1722
+ "inset": false,
1723
+ "offsetX": 0,
1724
+ "offsetY": 0,
1725
+ "blur": 0,
1726
+ "spread": 0,
1727
+ "color": {
1728
+ "red": 0,
1729
+ "green": 0,
1730
+ "blue": 0,
1731
+ "alpha": 0
1732
+ }
1733
+ }
1734
+ }
1735
+ },
1736
+ "Notification": {
1737
+ "appearances": {
1738
+ "style": {
1739
+ "values": ["success", "warning", "error"],
1740
+ "type": "state"
1741
+ },
1742
+ "system": {
1743
+ "values": [true],
1744
+ "type": "state"
1745
+ }
1746
+ },
1747
+ "rules": [
1748
+ {
1749
+ "if": {
1750
+ "system": true
1751
+ },
1752
+ "tokens": {
1753
+ "iconGap": 12,
1754
+ "paddingBottom": 16,
1755
+ "paddingLeft": 16,
1756
+ "paddingRight": 16,
1757
+ "paddingTop": 16
1758
+ }
1759
+ },
1760
+ {
1761
+ "if": {
1762
+ "style": "success"
1763
+ },
1764
+ "tokens": {
1765
+ "backgroundColor": {
1766
+ "red": 0.75686,
1767
+ "green": 0.94902,
1768
+ "blue": 0.9098,
1769
+ "alpha": 1
1770
+ },
1771
+ "icon": "PaletteIconCheckCircledFilled",
1772
+ "iconColor": {
1773
+ "red": 0.1451,
1774
+ "green": 0.5451,
1775
+ "blue": 0.04314,
1776
+ "alpha": 1
1777
+ }
1778
+ }
1779
+ },
1780
+ {
1781
+ "if": {
1782
+ "style": "warning"
1783
+ },
1784
+ "tokens": {
1785
+ "backgroundColor": {
1786
+ "red": 0.99608,
1787
+ "green": 0.93333,
1788
+ "blue": 0.78039,
1789
+ "alpha": 1
1790
+ },
1791
+ "icon": "PaletteIconExclamationTriangle",
1792
+ "iconColor": {
1793
+ "red": 0.98431,
1794
+ "green": 0.68627,
1795
+ "blue": 0.20392,
1796
+ "alpha": 1
1797
+ }
1798
+ }
1799
+ },
1800
+ {
1801
+ "if": {
1802
+ "style": "error"
1803
+ },
1804
+ "tokens": {
1805
+ "backgroundColor": {
1806
+ "red": 0.97255,
1807
+ "green": 0.86667,
1808
+ "blue": 0.8902,
1809
+ "alpha": 1
1810
+ },
1811
+ "icon": "PaletteIconExclamationOctagon",
1812
+ "iconColor": {
1813
+ "red": 0.87451,
1814
+ "green": 0.23922,
1815
+ "blue": 0.04706,
1816
+ "alpha": 1
1817
+ }
1818
+ }
1819
+ }
1820
+ ],
1821
+ "tokens": {
1822
+ "backgroundColor": {
1823
+ "red": 0.93725,
1824
+ "green": 0.93725,
1825
+ "blue": 0.93725,
1826
+ "alpha": 1
1827
+ },
1828
+ "borderBottomWidth": 0,
1829
+ "borderColor": {
1830
+ "red": 0,
1831
+ "green": 0,
1832
+ "blue": 0,
1833
+ "alpha": 0
1834
+ },
1835
+ "borderLeftWidth": 0,
1836
+ "borderRadius": 0,
1837
+ "borderRightWidth": 0,
1838
+ "borderTopWidth": 0,
1839
+ "color": {
1840
+ "red": 0,
1841
+ "green": 0,
1842
+ "blue": 0,
1843
+ "alpha": 1
1844
+ },
1845
+ "dismissButtonGap": 16,
1846
+ "dismissIcon": "PaletteIconTimes",
1847
+ "dismissIconColor": {
1848
+ "red": 0,
1849
+ "green": 0,
1850
+ "blue": 0,
1851
+ "alpha": 1
1852
+ },
1853
+ "dismissIconSize": 16,
1854
+ "fontName": "StagSans",
1855
+ "fontSize": 16,
1856
+ "fontWeight": 400,
1857
+ "icon": null,
1858
+ "iconColor": {
1859
+ "red": 0,
1860
+ "green": 0,
1861
+ "blue": 0,
1862
+ "alpha": 0
1863
+ },
1864
+ "iconGap": 16,
1865
+ "iconSize": 24,
1866
+ "lineHeight": 1.5,
1867
+ "paddingBottom": 12,
1868
+ "paddingLeft": 12,
1869
+ "paddingRight": 12,
1870
+ "paddingTop": 12
1871
+ }
1872
+ },
1873
+ "Pagination": {
1874
+ "appearances": {
1875
+ "viewport": {
1876
+ "description": "The size label for the current screen viewport based on the current screen width",
1877
+ "values": ["xs", "sm", "md", "lg", "xl"],
1878
+ "type": "state"
1879
+ }
1880
+ },
1881
+ "rules": [
1882
+ {
1883
+ "if": {
1884
+ "viewport": ["md", "lg", "xl"]
1885
+ },
1886
+ "tokens": {
1887
+ "truncateAbove": 6
1888
+ }
1889
+ }
1890
+ ],
1891
+ "tokens": {
1892
+ "color": {
1893
+ "red": 0.4,
1894
+ "green": 0.4,
1895
+ "blue": 0.4,
1896
+ "alpha": 1
1897
+ },
1898
+ "fontName": "StagSans",
1899
+ "fontSize": 16,
1900
+ "fontWeight": 400,
1901
+ "gap": 2,
1902
+ "lineHeight": 1.5,
1903
+ "truncateAbove": 4
1904
+ }
1905
+ },
1906
+ "PaginationPageButton": {
1907
+ "appearances": {
1908
+ "pressed": {
1909
+ "description": "Applies while an interactive component is being physically pressed. Most visible on touchscreen taps; in React Native Web, this is visible on web mouse clicks only if the pressable is held down.",
1910
+ "values": [true],
1911
+ "type": "state"
1912
+ },
1913
+ "selected": {
1914
+ "description": "Applies while an interactive component is the currently selected one in a set of states or components, for example a button in a `ButtonGroup`.",
1915
+ "values": [true],
1916
+ "type": "state"
1917
+ }
1918
+ },
1919
+ "rules": [
1920
+ {
1921
+ "if": {
1922
+ "selected": true
1923
+ },
1924
+ "tokens": {
1925
+ "backgroundColor": {
1926
+ "red": 0.4,
1927
+ "green": 0.4,
1928
+ "blue": 0.4,
1929
+ "alpha": 1
1930
+ },
1931
+ "color": {
1932
+ "red": 1,
1933
+ "green": 1,
1934
+ "blue": 1,
1935
+ "alpha": 1
1936
+ },
1937
+ "textLine": "none"
1938
+ }
1939
+ },
1940
+ {
1941
+ "if": {
1942
+ "pressed": true
1943
+ },
1944
+ "tokens": {
1945
+ "backgroundColor": {
1946
+ "red": 0.4,
1947
+ "green": 0.4,
1948
+ "blue": 0.4,
1949
+ "alpha": 1
1950
+ },
1951
+ "color": {
1952
+ "red": 1,
1953
+ "green": 1,
1954
+ "blue": 1,
1955
+ "alpha": 1
1956
+ }
1957
+ }
1958
+ }
1959
+ ],
1960
+ "tokens": {
1961
+ "backgroundColor": {
1962
+ "red": 0,
1963
+ "green": 0,
1964
+ "blue": 0,
1965
+ "alpha": 0
1966
+ },
1967
+ "borderColor": {
1968
+ "red": 0,
1969
+ "green": 0,
1970
+ "blue": 0,
1971
+ "alpha": 0
1972
+ },
1973
+ "borderRadius": 32,
1974
+ "borderWidth": 1,
1975
+ "color": {
1976
+ "red": 0.4,
1977
+ "green": 0.4,
1978
+ "blue": 0.4,
1979
+ "alpha": 1
1980
+ },
1981
+ "fontName": "StagSans",
1982
+ "fontSize": 16,
1983
+ "fontWeight": 400,
1984
+ "lineHeight": 1.5,
1985
+ "outerBorderColor": {
1986
+ "red": 0,
1987
+ "green": 0,
1988
+ "blue": 0,
1989
+ "alpha": 0
1990
+ },
1991
+ "outerBorderGap": 4,
1992
+ "outerBorderWidth": 4,
1993
+ "paddingBottom": 4,
1994
+ "paddingLeft": 8,
1995
+ "paddingRight": 8,
1996
+ "paddingTop": 4,
1997
+ "textAlign": "center",
1998
+ "textLine": "underline",
1999
+ "width": 32
2000
+ }
2001
+ },
2002
+ "PaginationSideButton": {
2003
+ "appearances": {
2004
+ "compact": {
2005
+ "values": [true],
2006
+ "description": "Determines if the \"Next\" and \"Previous\" labels should be omitted",
2007
+ "type": "state"
2008
+ },
2009
+ "direction": {
2010
+ "values": ["previous", "next"],
2011
+ "description": "Determines which way does the button navigate in Pagination's context",
2012
+ "type": "state"
2013
+ },
2014
+ "pressed": {
2015
+ "description": "Applies while an interactive component is being physically pressed. Most visible on touchscreen taps; in React Native Web, this is visible on web mouse clicks only if the pressable is held down.",
2016
+ "values": [true],
2017
+ "type": "state"
2018
+ },
2019
+ "selected": {
2020
+ "description": "Applies while an interactive component is the currently selected one in a set of states or components, for example a button in a `ButtonGroup`.",
2021
+ "values": [true],
2022
+ "type": "state"
2023
+ },
2024
+ "viewport": {
2025
+ "description": "The size label for the current screen viewport based on the current screen width",
2026
+ "values": ["xs", "sm", "md", "lg", "xl"],
2027
+ "type": "state"
2028
+ }
2029
+ },
2030
+ "rules": [
2031
+ {
2032
+ "if": {
2033
+ "compact": true
2034
+ },
2035
+ "tokens": {
2036
+ "displayLabel": false
2037
+ }
2038
+ },
2039
+ {
2040
+ "if": {
2041
+ "viewport": ["xs", "sm"]
2042
+ },
2043
+ "tokens": {
2044
+ "borderRadius": 32,
2045
+ "displayLabel": false,
2046
+ "paddingBottom": 4,
2047
+ "paddingTop": 4,
2048
+ "width": 32
2049
+ }
2050
+ },
2051
+ {
2052
+ "if": {
2053
+ "selected": true
2054
+ },
2055
+ "tokens": {
2056
+ "backgroundColor": {
2057
+ "red": 0.4,
2058
+ "green": 0.4,
2059
+ "blue": 0.4,
2060
+ "alpha": 1
2061
+ },
2062
+ "color": {
2063
+ "red": 1,
2064
+ "green": 1,
2065
+ "blue": 1,
2066
+ "alpha": 1
2067
+ },
2068
+ "textLine": "none"
2069
+ }
2070
+ },
2071
+ {
2072
+ "if": {
2073
+ "pressed": true
2074
+ },
2075
+ "tokens": {
2076
+ "backgroundColor": {
2077
+ "red": 0.4,
2078
+ "green": 0.4,
2079
+ "blue": 0.4,
2080
+ "alpha": 1
2081
+ },
2082
+ "color": {
2083
+ "red": 1,
2084
+ "green": 1,
2085
+ "blue": 1,
2086
+ "alpha": 1
2087
+ }
2088
+ }
2089
+ },
2090
+ {
2091
+ "if": {
2092
+ "direction": "previous"
2093
+ },
2094
+ "tokens": {
2095
+ "icon": "PaletteIconChevronLeft"
2096
+ }
2097
+ },
2098
+ {
2099
+ "if": {
2100
+ "direction": "next"
2101
+ },
2102
+ "tokens": {
2103
+ "icon": "PaletteIconChevronRight"
2104
+ }
2105
+ }
2106
+ ],
2107
+ "tokens": {
2108
+ "backgroundColor": {
2109
+ "red": 0,
2110
+ "green": 0,
2111
+ "blue": 0,
2112
+ "alpha": 0
2113
+ },
2114
+ "borderColor": {
2115
+ "red": 0,
2116
+ "green": 0,
2117
+ "blue": 0,
2118
+ "alpha": 0
2119
+ },
2120
+ "borderRadius": 4,
2121
+ "borderWidth": 1,
2122
+ "color": {
2123
+ "red": 0.4,
2124
+ "green": 0.4,
2125
+ "blue": 0.4,
2126
+ "alpha": 1
2127
+ },
2128
+ "displayLabel": true,
2129
+ "fontName": "StagSans",
2130
+ "fontSize": 16,
2131
+ "fontWeight": 400,
2132
+ "icon": null,
2133
+ "iconDisplace": 0,
2134
+ "iconSize": 14,
2135
+ "lineHeight": 1.5,
2136
+ "outerBorderColor": {
2137
+ "red": 0,
2138
+ "green": 0,
2139
+ "blue": 0,
2140
+ "alpha": 0
2141
+ },
2142
+ "paddingBottom": 10,
2143
+ "paddingLeft": 8,
2144
+ "paddingRight": 8,
2145
+ "paddingTop": 10,
2146
+ "textAlign": "center",
2147
+ "textLine": "underline",
2148
+ "width": null
2149
+ }
2150
+ },
2151
+ "Progress": {
2152
+ "appearances": {
2153
+ "size": {
2154
+ "type": "variant",
2155
+ "values": ["mini"]
2156
+ }
2157
+ },
2158
+ "rules": [
2159
+ {
2160
+ "if": {
2161
+ "size": "mini"
2162
+ },
2163
+ "tokens": {
2164
+ "height": 8
2165
+ }
2166
+ }
2167
+ ],
2168
+ "tokens": {
2169
+ "backgroundColor": {
2170
+ "red": 1,
2171
+ "green": 1,
2172
+ "blue": 1,
2173
+ "alpha": 1
2174
+ },
2175
+ "borderColor": {
2176
+ "red": 0.00392,
2177
+ "green": 0.41961,
2178
+ "blue": 0.41569,
2179
+ "alpha": 1
2180
+ },
2181
+ "borderRadius": 12,
2182
+ "borderWidth": 1,
2183
+ "height": 16
2184
+ }
2185
+ },
2186
+ "ProgressBar": {
2187
+ "appearances": {
2188
+ "inactive": {
2189
+ "description": "Prevents an interactive component from being interacted with and applies accessibility attributes to indicate to the user that this component cannot be used.",
2190
+ "values": [true],
2191
+ "type": "state"
2192
+ },
2193
+ "negative": {
2194
+ "type": "variant",
2195
+ "values": [true]
2196
+ }
2197
+ },
2198
+ "rules": [
2199
+ {
2200
+ "if": {
2201
+ "inactive": true
2202
+ },
2203
+ "tokens": {
2204
+ "backgroundColor": {
2205
+ "red": 0.4,
2206
+ "green": 0.4,
2207
+ "blue": 0.4,
2208
+ "alpha": 1
2209
+ },
2210
+ "outlineColor": {
2211
+ "red": 0.4,
2212
+ "green": 0.4,
2213
+ "blue": 0.4,
2214
+ "alpha": 1
2215
+ }
2216
+ }
2217
+ },
2218
+ {
2219
+ "if": {
2220
+ "negative": true
2221
+ },
2222
+ "tokens": {
2223
+ "backgroundColor": {
2224
+ "red": 0.72157,
2225
+ "green": 0.21569,
2226
+ "blue": 0.24314,
2227
+ "alpha": 1
2228
+ },
2229
+ "outlineColor": {
2230
+ "red": 0.72157,
2231
+ "green": 0.21569,
2232
+ "blue": 0.24314,
2233
+ "alpha": 1
2234
+ }
2235
+ }
2236
+ }
2237
+ ],
2238
+ "tokens": {
2239
+ "backgroundColor": {
2240
+ "red": 0.00392,
2241
+ "green": 0.41961,
2242
+ "blue": 0.41569,
2243
+ "alpha": 1
2244
+ },
2245
+ "borderRadius": 12,
2246
+ "gradient": null,
2247
+ "outlineColor": {
2248
+ "red": 0.00392,
2249
+ "green": 0.28235,
2250
+ "blue": 0.27843,
2251
+ "alpha": 1
2252
+ },
2253
+ "outlineWidth": 1
2254
+ }
2255
+ },
2256
+ "QuickLinks": {
2257
+ "appearances": {
2258
+ "viewport": {
2259
+ "description": "The size label for the current screen viewport based on the current screen width",
2260
+ "values": ["xs", "sm", "md", "lg", "xl"],
2261
+ "type": "state"
2262
+ }
2263
+ },
2264
+ "rules": [
2265
+ {
2266
+ "if": {
2267
+ "viewport": ["md", "lg", "xl"]
2268
+ },
2269
+ "tokens": {
2270
+ "card": false,
2271
+ "dividers": true,
2272
+ "list": false
2273
+ }
2274
+ }
2275
+ ],
2276
+ "tokens": {
2277
+ "card": true,
2278
+ "dividers": true,
2279
+ "list": true,
2280
+ "stackGap": 2,
2281
+ "stackJustify": "center",
2282
+ "stackSpace": 4
2283
+ }
2284
+ },
2285
+ "QuickLinksButton": {
2286
+ "appearances": {
2287
+ "pressed": {
2288
+ "description": "Applies while an interactive component is being physically pressed. Most visible on touchscreen taps; in React Native Web, this is visible on web mouse clicks only if the pressable is held down.",
2289
+ "values": [true],
2290
+ "type": "state"
2291
+ }
2292
+ },
2293
+ "rules": [
2294
+ {
2295
+ "if": {
2296
+ "pressed": true
2297
+ },
2298
+ "tokens": {
2299
+ "backgroundColor": {
2300
+ "red": 0.00392,
2301
+ "green": 0.41961,
2302
+ "blue": 0.41569,
2303
+ "alpha": 1
2304
+ },
2305
+ "borderColor": {
2306
+ "red": 0.00392,
2307
+ "green": 0.41961,
2308
+ "blue": 0.41569,
2309
+ "alpha": 1
2310
+ },
2311
+ "color": {
2312
+ "red": 1,
2313
+ "green": 1,
2314
+ "blue": 1,
2315
+ "alpha": 1
2316
+ }
2317
+ }
2318
+ }
2319
+ ],
2320
+ "tokens": {
2321
+ "alignSelf": "flex-start",
2322
+ "backgroundColor": {
2323
+ "red": 0.00392,
2324
+ "green": 0.41961,
2325
+ "blue": 0.41569,
2326
+ "alpha": 1
2327
+ },
2328
+ "borderColor": {
2329
+ "red": 1,
2330
+ "green": 1,
2331
+ "blue": 1,
2332
+ "alpha": 1
2333
+ },
2334
+ "borderRadius": 4,
2335
+ "borderWidth": 0,
2336
+ "color": {
2337
+ "red": 1,
2338
+ "green": 1,
2339
+ "blue": 1,
2340
+ "alpha": 1
2341
+ },
2342
+ "fontName": "StagSans",
2343
+ "fontSize": 16,
2344
+ "fontWeight": 600,
2345
+ "icon": null,
2346
+ "iconColor": {
2347
+ "red": 1,
2348
+ "green": 1,
2349
+ "blue": 1,
2350
+ "alpha": 1
2351
+ },
2352
+ "iconSize": 24,
2353
+ "iconSpace": 2,
2354
+ "lineHeight": 1.5,
2355
+ "minWidth": 0,
2356
+ "opacity": 1,
2357
+ "outerBackgroundColor": {
2358
+ "red": 0,
2359
+ "green": 0,
2360
+ "blue": 0,
2361
+ "alpha": 0
2362
+ },
2363
+ "outerBorderColor": {
2364
+ "red": 1,
2365
+ "green": 1,
2366
+ "blue": 1,
2367
+ "alpha": 1
2368
+ },
2369
+ "outerBorderGap": 2,
2370
+ "outerBorderWidth": 2,
2371
+ "paddingBottom": 8,
2372
+ "paddingLeft": 24,
2373
+ "paddingRight": 24,
2374
+ "paddingTop": 8,
2375
+ "shadow": null,
2376
+ "textAlign": "center",
2377
+ "width": null
2378
+ }
2379
+ },
2380
+ "QuickLinksCard": {
2381
+ "appearances": {},
2382
+ "rules": [],
2383
+ "tokens": {
2384
+ "backgroundColor": {
2385
+ "red": 0.97647,
2386
+ "green": 0.96471,
2387
+ "blue": 0.64706,
2388
+ "alpha": 1
2389
+ },
2390
+ "borderColor": {
2391
+ "red": 0,
2392
+ "green": 0,
2393
+ "blue": 0,
2394
+ "alpha": 0
2395
+ },
2396
+ "borderRadius": 0,
2397
+ "borderWidth": 0,
2398
+ "flex": 1,
2399
+ "minWidth": null,
2400
+ "paddingBottom": 16,
2401
+ "paddingLeft": 16,
2402
+ "paddingRight": 16,
2403
+ "paddingTop": 16,
2404
+ "shadow": null
2405
+ }
2406
+ },
2407
+ "QuickLinksList": {
2408
+ "appearances": {
2409
+ "pressed": {
2410
+ "description": "Applies while an interactive component is being physically pressed. Most visible on touchscreen taps; in React Native Web, this is visible on web mouse clicks only if the pressable is held down.",
2411
+ "values": [true],
2412
+ "type": "state"
2413
+ }
2414
+ },
2415
+ "rules": [
2416
+ {
2417
+ "if": {
2418
+ "pressed": true
2419
+ },
2420
+ "tokens": {
2421
+ "backgroundColor": {
2422
+ "red": 0.00392,
2423
+ "green": 0.41961,
2424
+ "blue": 0.41569,
2425
+ "alpha": 1
2426
+ }
2427
+ }
2428
+ }
2429
+ ],
2430
+ "tokens": {
2431
+ "backgroundColor": {
2432
+ "red": 0,
2433
+ "green": 0,
2434
+ "blue": 0,
2435
+ "alpha": 0
2436
+ },
2437
+ "dividerColor": {
2438
+ "red": 0.78824,
2439
+ "green": 0.78431,
2440
+ "blue": 0.78431,
2441
+ "alpha": 1
2442
+ },
2443
+ "dividerSize": 1,
2444
+ "iconMarginTop": 4,
2445
+ "interItemMargin": null,
2446
+ "interItemMarginWithDivider": null,
2447
+ "itemBulletColor": {
2448
+ "red": 0.48627,
2449
+ "green": 0.07451,
2450
+ "blue": 0.4,
2451
+ "alpha": 1
2452
+ },
2453
+ "itemBulletContainerAlign": "center",
2454
+ "itemBulletContainerWidth": 16,
2455
+ "itemBulletHeight": 4,
2456
+ "itemBulletWidth": 4,
2457
+ "itemFontName": "StagSans",
2458
+ "itemFontSize": 16,
2459
+ "itemFontWeight": 600,
2460
+ "itemIconColor": {
2461
+ "red": 0.48627,
2462
+ "green": 0.07451,
2463
+ "blue": 0.4,
2464
+ "alpha": 1
2465
+ },
2466
+ "itemIconSize": 16,
2467
+ "itemLineHeight": 1.3,
2468
+ "listGutter": 10,
2469
+ "paddingBottom": 8,
2470
+ "paddingLeft": 12,
2471
+ "paddingRight": 12,
2472
+ "paddingTop": 8
2473
+ }
2474
+ },
2475
+ "Radio": {
2476
+ "appearances": {
2477
+ "checked": {
2478
+ "description": "Corresponds to a selected state for a checkbox or radio",
2479
+ "values": [true],
2480
+ "type": "state"
2481
+ },
2482
+ "error": {
2483
+ "values": [true],
2484
+ "type": "state"
2485
+ },
2486
+ "inactive": {
2487
+ "description": "Prevents an interactive component from being interacted with and applies accessibility attributes to indicate to the user that this component cannot be used.",
2488
+ "values": [true],
2489
+ "type": "state"
2490
+ }
2491
+ },
2492
+ "rules": [],
2493
+ "tokens": {
2494
+ "checkedBackgroundColor": {
2495
+ "red": 0.00392,
2496
+ "green": 0.41961,
2497
+ "blue": 0.41569,
2498
+ "alpha": 1
2499
+ },
2500
+ "checkedSize": 12,
2501
+ "containerBackgroundColor": {
2502
+ "red": 0,
2503
+ "green": 0,
2504
+ "blue": 0,
2505
+ "alpha": 0
2506
+ },
2507
+ "containerBorderRadius": 0,
2508
+ "containerOpacity": 1,
2509
+ "containerPaddingBottom": 0,
2510
+ "containerPaddingLeft": 0,
2511
+ "containerPaddingRight": 0,
2512
+ "containerPaddingTop": 0,
2513
+ "containerShadow": null,
2514
+ "descriptionFontSize": 14,
2515
+ "descriptionLineHeight": 1.4,
2516
+ "descriptionMarginLeft": null,
2517
+ "inputBackgroundColor": {
2518
+ "red": 1,
2519
+ "green": 1,
2520
+ "blue": 1,
2521
+ "alpha": 1
2522
+ },
2523
+ "inputBorderColor": {
2524
+ "red": 0.00392,
2525
+ "green": 0.41961,
2526
+ "blue": 0.41569,
2527
+ "alpha": 1
2528
+ },
2529
+ "inputBorderWidth": 2,
2530
+ "inputOutlineColor": {
2531
+ "red": 0,
2532
+ "green": 0,
2533
+ "blue": 0,
2534
+ "alpha": 0
2535
+ },
2536
+ "inputOutlineWidth": 0,
2537
+ "inputSize": 20,
2538
+ "labelColor": {
2539
+ "red": 0,
2540
+ "green": 0,
2541
+ "blue": 0,
2542
+ "alpha": 1
2543
+ },
2544
+ "labelFontName": "StagSans",
2545
+ "labelFontSize": 16,
2546
+ "labelFontWeight": 400,
2547
+ "labelLineHeight": 1.5,
2548
+ "labelMarginLeft": 8,
2549
+ "outerBorderColor": {
2550
+ "red": 0,
2551
+ "green": 0,
2552
+ "blue": 0,
2553
+ "alpha": 0
2554
+ },
2555
+ "outerBorderGap": 0,
2556
+ "outerBorderWidth": 0
2557
+ }
2558
+ },
2559
+ "RadioCard": {
2560
+ "appearances": {
2561
+ "checked": {
2562
+ "description": "Corresponds to a selected state for a checkbox or radio",
2563
+ "values": [true],
2564
+ "type": "state"
2565
+ },
2566
+ "error": {
2567
+ "values": [true],
2568
+ "type": "state"
2569
+ },
2570
+ "inactive": {
2571
+ "description": "Prevents an interactive component from being interacted with and applies accessibility attributes to indicate to the user that this component cannot be used.",
2572
+ "values": [true],
2573
+ "type": "state"
2574
+ },
2575
+ "pressed": {
2576
+ "description": "Applies while an interactive component is being physically pressed. Most visible on touchscreen taps; in React Native Web, this is visible on web mouse clicks only if the pressable is held down.",
2577
+ "values": [true],
2578
+ "type": "state"
2579
+ },
2580
+ "viewport": {
2581
+ "description": "The size label for the current screen viewport based on the current screen width",
2582
+ "values": ["xs", "sm", "md", "lg", "xl"],
2583
+ "type": "state"
2584
+ }
2585
+ },
2586
+ "rules": [
2587
+ {
2588
+ "if": {
2589
+ "viewport": ["lg", "xl"]
2590
+ },
2591
+ "tokens": {
2592
+ "fontSize": 24,
2593
+ "lineHeight": 1.3,
2594
+ "paddingBottom": 24,
2595
+ "paddingLeft": 16,
2596
+ "paddingRight": 24,
2597
+ "paddingTop": 16
2598
+ }
2599
+ },
2600
+ {
2601
+ "description": "Pressed state matches hover state plus light grey background",
2602
+ "if": {
2603
+ "pressed": true
2604
+ },
2605
+ "tokens": {
2606
+ "backgroundColor": {
2607
+ "red": 0.93725,
2608
+ "green": 0.93725,
2609
+ "blue": 0.93725,
2610
+ "alpha": 1
2611
+ },
2612
+ "outerBorderColor": {
2613
+ "red": 0.93725,
2614
+ "green": 0.93725,
2615
+ "blue": 0.93725,
2616
+ "alpha": 1
2617
+ },
2618
+ "outerBorderWidth": 2,
2619
+ "radioInputBorderColor": {
2620
+ "red": 0.00392,
2621
+ "green": 0.28235,
2622
+ "blue": 0.27843,
2623
+ "alpha": 1
2624
+ }
2625
+ }
2626
+ },
2627
+ {
2628
+ "if": {
2629
+ "inactive": true
2630
+ },
2631
+ "tokens": {
2632
+ "backgroundColor": {
2633
+ "red": 0.93725,
2634
+ "green": 0.93725,
2635
+ "blue": 0.93725,
2636
+ "alpha": 1
2637
+ },
2638
+ "borderColor": {
2639
+ "red": 0,
2640
+ "green": 0,
2641
+ "blue": 0,
2642
+ "alpha": 0
2643
+ },
2644
+ "color": {
2645
+ "red": 0.4,
2646
+ "green": 0.4,
2647
+ "blue": 0.4,
2648
+ "alpha": 1
2649
+ },
2650
+ "radioInputBackgroundColor": {
2651
+ "red": 0.93725,
2652
+ "green": 0.93725,
2653
+ "blue": 0.93725,
2654
+ "alpha": 1
2655
+ },
2656
+ "radioInputBorderColor": {
2657
+ "red": 0.78824,
2658
+ "green": 0.78431,
2659
+ "blue": 0.78431,
2660
+ "alpha": 1
2661
+ }
2662
+ }
2663
+ },
2664
+ {
2665
+ "if": {
2666
+ "error": true
2667
+ },
2668
+ "tokens": {
2669
+ "borderColor": {
2670
+ "red": 0.87451,
2671
+ "green": 0.23922,
2672
+ "blue": 0.04706,
2673
+ "alpha": 1
2674
+ },
2675
+ "color": {
2676
+ "red": 0.87451,
2677
+ "green": 0.23922,
2678
+ "blue": 0.04706,
2679
+ "alpha": 1
2680
+ },
2681
+ "radioInputBorderColor": {
2682
+ "red": 0.87451,
2683
+ "green": 0.23922,
2684
+ "blue": 0.04706,
2685
+ "alpha": 1
2686
+ }
2687
+ }
2688
+ }
2689
+ ],
2690
+ "tokens": {
2691
+ "backgroundColor": {
2692
+ "red": 1,
2693
+ "green": 1,
2694
+ "blue": 1,
2695
+ "alpha": 1
2696
+ },
2697
+ "borderColor": {
2698
+ "red": 0,
2699
+ "green": 0,
2700
+ "blue": 0,
2701
+ "alpha": 1
2702
+ },
2703
+ "borderRadius": 4,
2704
+ "borderWidth": 1,
2705
+ "color": {
2706
+ "red": 0,
2707
+ "green": 0,
2708
+ "blue": 0,
2709
+ "alpha": 1
2710
+ },
2711
+ "contentSpace": 2,
2712
+ "flex": 1,
2713
+ "fontName": "StagSans",
2714
+ "fontSize": 20,
2715
+ "fontWeight": 700,
2716
+ "letterSpacing": 0,
2717
+ "lineHeight": 1.4,
2718
+ "minWidth": 120,
2719
+ "outerBorderColor": {
2720
+ "red": 0,
2721
+ "green": 0,
2722
+ "blue": 0,
2723
+ "alpha": 0
2724
+ },
2725
+ "outerBorderGap": 0,
2726
+ "outerBorderWidth": 0,
2727
+ "paddingBottom": 16,
2728
+ "paddingLeft": 10,
2729
+ "paddingRight": 16,
2730
+ "paddingTop": 16,
2731
+ "radioCheckedBackgroundColor": {
2732
+ "red": 0.00392,
2733
+ "green": 0.41961,
2734
+ "blue": 0.41569,
2735
+ "alpha": 1
2736
+ },
2737
+ "radioCheckedSize": 12,
2738
+ "radioInputBackgroundColor": {
2739
+ "red": 1,
2740
+ "green": 1,
2741
+ "blue": 1,
2742
+ "alpha": 1
2743
+ },
2744
+ "radioInputBorderColor": {
2745
+ "red": 0.00392,
2746
+ "green": 0.41961,
2747
+ "blue": 0.41569,
2748
+ "alpha": 1
2749
+ },
2750
+ "radioInputBorderWidth": 2,
2751
+ "radioInputOutlineColor": {
2752
+ "red": 0,
2753
+ "green": 0,
2754
+ "blue": 0,
2755
+ "alpha": 0
2756
+ },
2757
+ "radioInputOutlineWidth": 0,
2758
+ "radioInputSize": 20,
2759
+ "radioOuterBorderColor": {
2760
+ "red": 0,
2761
+ "green": 0,
2762
+ "blue": 0,
2763
+ "alpha": 0
2764
+ },
2765
+ "radioOuterBorderGap": 0,
2766
+ "radioOuterBorderWidth": 0,
2767
+ "radioSpace": 2,
2768
+ "shadow": null,
2769
+ "textTransform": "none"
2770
+ }
2771
+ },
2772
+ "RadioCardGroup": {
2773
+ "appearances": {
2774
+ "viewport": {
2775
+ "description": "The size label for the current screen viewport based on the current screen width",
2776
+ "values": ["xs", "sm", "md", "lg", "xl"],
2777
+ "type": "state"
2778
+ }
2779
+ },
2780
+ "rules": [
2781
+ {
2782
+ "if": {
2783
+ "viewport": ["lg", "xl"]
2784
+ },
2785
+ "tokens": {
2786
+ "direction": "column"
2787
+ }
2788
+ }
2789
+ ],
2790
+ "tokens": {
2791
+ "direction": "row",
2792
+ "fieldSpace": 2,
2793
+ "space": 2
2794
+ }
2795
+ },
2796
+ "RadioGroup": {
2797
+ "appearances": {},
2798
+ "rules": [],
2799
+ "tokens": {
2800
+ "fieldSpace": 2,
2801
+ "space": 2
2802
+ }
2803
+ },
2804
+ "Search": {
2805
+ "appearances": {
2806
+ "focus": {
2807
+ "description": "Focus states for some input elements are well supported across web, RN, ios and android",
2808
+ "values": [true],
2809
+ "type": "state"
2810
+ },
2811
+ "inactive": {
2812
+ "description": "Prevents an interactive component from being interacted with and applies accessibility attributes to indicate to the user that this component cannot be used.",
2813
+ "values": [true],
2814
+ "type": "state"
2815
+ }
2816
+ },
2817
+ "rules": [
2818
+ {
2819
+ "if": {
2820
+ "focus": true,
2821
+ "inactive": null
2822
+ },
2823
+ "tokens": {
2824
+ "borderColor": {
2825
+ "red": 0.00392,
2826
+ "green": 0.41961,
2827
+ "blue": 0.41569,
2828
+ "alpha": 1
2829
+ },
2830
+ "borderWidth": 2
2831
+ }
2832
+ },
2833
+ {
2834
+ "if": {
2835
+ "inactive": true
2836
+ },
2837
+ "tokens": {
2838
+ "backgroundColor": {
2839
+ "red": 0.93725,
2840
+ "green": 0.93725,
2841
+ "blue": 0.93725,
2842
+ "alpha": 1
2843
+ },
2844
+ "borderColor": {
2845
+ "red": 0.93725,
2846
+ "green": 0.93725,
2847
+ "blue": 0.93725,
2848
+ "alpha": 1
2849
+ }
2850
+ }
2851
+ }
2852
+ ],
2853
+ "tokens": {
2854
+ "backgroundColor": {
2855
+ "red": 1,
2856
+ "green": 1,
2857
+ "blue": 1,
2858
+ "alpha": 1
2859
+ },
2860
+ "borderColor": {
2861
+ "red": 0.78824,
2862
+ "green": 0.78431,
2863
+ "blue": 0.78431,
2864
+ "alpha": 1
2865
+ },
2866
+ "borderRadius": 32,
2867
+ "borderWidth": 1,
2868
+ "buttonsGap": 1,
2869
+ "clearButtonIcon": "PaletteIconTimes",
2870
+ "color": {
2871
+ "red": 0.4,
2872
+ "green": 0.4,
2873
+ "blue": 0.4,
2874
+ "alpha": 1
2875
+ },
2876
+ "fontName": "StagSans",
2877
+ "fontSize": 16,
2878
+ "fontWeight": 400,
2879
+ "lineHeight": 1.5,
2880
+ "outerBackgroundColor": {
2881
+ "red": 0,
2882
+ "green": 0,
2883
+ "blue": 0,
2884
+ "alpha": 0
2885
+ },
2886
+ "outerBorderColor": {
2887
+ "red": 0,
2888
+ "green": 0,
2889
+ "blue": 0,
2890
+ "alpha": 0
2891
+ },
2892
+ "outerBorderRadius": 32,
2893
+ "outerBorderWidth": 2,
2894
+ "paddingBottom": 10,
2895
+ "paddingLeft": 24,
2896
+ "paddingRight": 4,
2897
+ "paddingTop": 10,
2898
+ "placeholderColor": {
2899
+ "red": 0.4,
2900
+ "green": 0.4,
2901
+ "blue": 0.4,
2902
+ "alpha": 1
2903
+ },
2904
+ "submitButtonIcon": "PaletteIconSpyglass"
2905
+ }
2906
+ },
2907
+ "SearchButton": {
2908
+ "appearances": {
2909
+ "inactive": {
2910
+ "description": "Prevents an interactive component from being interacted with and applies accessibility attributes to indicate to the user that this component cannot be used.",
2911
+ "values": [true],
2912
+ "type": "state"
2913
+ },
2914
+ "pressed": {
2915
+ "description": "Applies while an interactive component is being physically pressed. Most visible on touchscreen taps; in React Native Web, this is visible on web mouse clicks only if the pressable is held down.",
2916
+ "values": [true],
2917
+ "type": "state"
2918
+ },
2919
+ "priority": {
2920
+ "description": "",
2921
+ "type": "variant",
2922
+ "values": ["high"]
2923
+ }
2924
+ },
2925
+ "rules": [
2926
+ {
2927
+ "if": {
2928
+ "priority": "high"
2929
+ },
2930
+ "tokens": {
2931
+ "backgroundColor": {
2932
+ "red": 0.00392,
2933
+ "green": 0.41961,
2934
+ "blue": 0.41569,
2935
+ "alpha": 1
2936
+ },
2937
+ "iconColor": {
2938
+ "red": 1,
2939
+ "green": 1,
2940
+ "blue": 1,
2941
+ "alpha": 1
2942
+ }
2943
+ }
2944
+ },
2945
+ {
2946
+ "if": {
2947
+ "pressed": true
2948
+ },
2949
+ "tokens": {
2950
+ "backgroundColor": {
2951
+ "red": 0.00392,
2952
+ "green": 0.41961,
2953
+ "blue": 0.41569,
2954
+ "alpha": 1
2955
+ },
2956
+ "borderColor": {
2957
+ "red": 0,
2958
+ "green": 0,
2959
+ "blue": 0,
2960
+ "alpha": 0
2961
+ },
2962
+ "borderWidth": 0,
2963
+ "iconColor": {
2964
+ "red": 1,
2965
+ "green": 1,
2966
+ "blue": 1,
2967
+ "alpha": 1
2968
+ }
2969
+ }
2970
+ },
2971
+ {
2972
+ "if": {
2973
+ "inactive": true
2974
+ },
2975
+ "tokens": {
2976
+ "opacity": 0.3
2977
+ }
2978
+ }
2979
+ ],
2980
+ "tokens": {
2981
+ "backgroundColor": {
2982
+ "red": 0,
2983
+ "green": 0,
2984
+ "blue": 0,
2985
+ "alpha": 0
2986
+ },
2987
+ "borderColor": {
2988
+ "red": 0,
2989
+ "green": 0,
2990
+ "blue": 0,
2991
+ "alpha": 0
2992
+ },
2993
+ "borderRadius": 32,
2994
+ "borderWidth": 0,
2995
+ "iconColor": {
2996
+ "red": 0.4,
2997
+ "green": 0.4,
2998
+ "blue": 0.4,
2999
+ "alpha": 1
3000
+ },
3001
+ "iconSize": 20,
3002
+ "opacity": 1,
3003
+ "paddingBottom": 8,
3004
+ "paddingLeft": 8,
3005
+ "paddingRight": 8,
3006
+ "paddingTop": 8,
3007
+ "shadow": null
3008
+ }
3009
+ },
3010
+ "Select": {
3011
+ "appearances": {
3012
+ "focus": {
3013
+ "description": "Focus states for some input elements are well supported across web, RN, ios and android",
3014
+ "values": [true],
3015
+ "type": "state"
3016
+ },
3017
+ "inactive": {
3018
+ "description": "Prevents an interactive component from being interacted with and applies accessibility attributes to indicate to the user that this component cannot be used.",
3019
+ "values": [true],
3020
+ "type": "state"
3021
+ },
3022
+ "validation": {
3023
+ "description": "Validation states for form inputs",
3024
+ "values": ["error", "success"],
3025
+ "type": "state"
3026
+ }
3027
+ },
3028
+ "rules": [
3029
+ {
3030
+ "if": {
3031
+ "validation": "success"
3032
+ },
3033
+ "tokens": {
3034
+ "borderColor": {
3035
+ "red": 0.1451,
3036
+ "green": 0.5451,
3037
+ "blue": 0.04314,
3038
+ "alpha": 1
3039
+ },
3040
+ "validationIcon": "PaletteIconCheckCircledFilled",
3041
+ "validationIconColor": {
3042
+ "red": 0.1451,
3043
+ "green": 0.5451,
3044
+ "blue": 0.04314,
3045
+ "alpha": 1
3046
+ }
3047
+ }
3048
+ },
3049
+ {
3050
+ "if": {
3051
+ "validation": "error"
3052
+ },
3053
+ "tokens": {
3054
+ "borderColor": {
3055
+ "red": 0.87451,
3056
+ "green": 0.23922,
3057
+ "blue": 0.04706,
3058
+ "alpha": 1
3059
+ },
3060
+ "validationIcon": "PaletteIconTimes",
3061
+ "validationIconColor": {
3062
+ "red": 0.87451,
3063
+ "green": 0.23922,
3064
+ "blue": 0.04706,
3065
+ "alpha": 1
3066
+ }
3067
+ }
3068
+ },
3069
+ {
3070
+ "if": {
3071
+ "focus": true
3072
+ },
3073
+ "tokens": {
3074
+ "borderColor": {
3075
+ "red": 0.00392,
3076
+ "green": 0.41961,
3077
+ "blue": 0.41569,
3078
+ "alpha": 1
3079
+ },
3080
+ "borderWidth": 2,
3081
+ "icon": null
3082
+ }
3083
+ },
3084
+ {
3085
+ "if": {
3086
+ "inactive": true
3087
+ },
3088
+ "tokens": {
3089
+ "backgroundColor": {
3090
+ "red": 0.93725,
3091
+ "green": 0.93725,
3092
+ "blue": 0.93725,
3093
+ "alpha": 1
3094
+ },
3095
+ "borderColor": {
3096
+ "red": 0.93725,
3097
+ "green": 0.93725,
3098
+ "blue": 0.93725,
3099
+ "alpha": 1
3100
+ }
3101
+ }
3102
+ }
3103
+ ],
3104
+ "tokens": {
3105
+ "backgroundColor": {
3106
+ "red": 1,
3107
+ "green": 1,
3108
+ "blue": 1,
3109
+ "alpha": 1
3110
+ },
3111
+ "borderColor": {
3112
+ "red": 0,
3113
+ "green": 0,
3114
+ "blue": 0,
3115
+ "alpha": 1
3116
+ },
3117
+ "borderRadius": 4,
3118
+ "borderWidth": 1,
3119
+ "color": {
3120
+ "red": 0,
3121
+ "green": 0,
3122
+ "blue": 0,
3123
+ "alpha": 1
3124
+ },
3125
+ "fontName": "StagSans",
3126
+ "fontSize": 16,
3127
+ "fontWeight": 400,
3128
+ "height": 48,
3129
+ "icon": "PaletteIconChevronDown",
3130
+ "iconColor": {
3131
+ "red": 0,
3132
+ "green": 0,
3133
+ "blue": 0,
3134
+ "alpha": 1
3135
+ },
3136
+ "iconSize": 24,
3137
+ "outerBackgroundColor": {
3138
+ "red": 0,
3139
+ "green": 0,
3140
+ "blue": 0,
3141
+ "alpha": 0
3142
+ },
3143
+ "outerBorderColor": {
3144
+ "red": 0,
3145
+ "green": 0,
3146
+ "blue": 0,
3147
+ "alpha": 0
3148
+ },
3149
+ "outerBorderWidth": 2,
3150
+ "paddingBottom": 10,
3151
+ "paddingLeft": 16,
3152
+ "paddingRight": 16,
3153
+ "paddingTop": 10,
3154
+ "validationIcon": null,
3155
+ "validationIconColor": {
3156
+ "red": 0,
3157
+ "green": 0,
3158
+ "blue": 0,
3159
+ "alpha": 0
3160
+ },
3161
+ "validationIconSize": 24
3162
+ }
3163
+ },
3164
+ "SideNav": {
3165
+ "appearances": {},
3166
+ "rules": [],
3167
+ "tokens": {
3168
+ "borderColor": {
3169
+ "red": 0.78824,
3170
+ "green": 0.78431,
3171
+ "blue": 0.78431,
3172
+ "alpha": 1
3173
+ },
3174
+ "borderStyle": "solid",
3175
+ "borderWidth": 1
3176
+ }
3177
+ },
3178
+ "SideNavItem": {
3179
+ "appearances": {
3180
+ "active": {
3181
+ "description": "Used to mark currently active Item or and ItemGroup containing the currently active Item",
3182
+ "values": [true, false],
3183
+ "type": "state"
3184
+ },
3185
+ "expanded": {
3186
+ "description": "Applies when an ExpandCollapse panel is open and the content inside is visible",
3187
+ "values": [true],
3188
+ "type": "state"
3189
+ },
3190
+ "type": {
3191
+ "description": "`parent` being the toggle button for an ItemsGroup, and `child` an element of the ItemGroup",
3192
+ "values": ["child", "parent"],
3193
+ "type": "state"
3194
+ }
3195
+ },
3196
+ "rules": [
3197
+ {
3198
+ "if": {
3199
+ "active": true
3200
+ },
3201
+ "tokens": {
3202
+ "accentBackgroundColor": {
3203
+ "red": 0.00392,
3204
+ "green": 0.41961,
3205
+ "blue": 0.41569,
3206
+ "alpha": 1
3207
+ },
3208
+ "backgroundColor": {
3209
+ "red": 0.75686,
3210
+ "green": 0.94902,
3211
+ "blue": 0.9098,
3212
+ "alpha": 1
3213
+ },
3214
+ "color": {
3215
+ "red": 0.00392,
3216
+ "green": 0.41961,
3217
+ "blue": 0.41569,
3218
+ "alpha": 1
3219
+ },
3220
+ "paddingLeft": 10
3221
+ }
3222
+ },
3223
+ {
3224
+ "if": {
3225
+ "type": "child"
3226
+ },
3227
+ "tokens": {
3228
+ "accentBackgroundColor": {
3229
+ "red": 0.75686,
3230
+ "green": 0.94902,
3231
+ "blue": 0.9098,
3232
+ "alpha": 1
3233
+ },
3234
+ "accentOffset": 16,
3235
+ "borderWidth": 0,
3236
+ "paddingLeft": 36
3237
+ }
3238
+ },
3239
+ {
3240
+ "if": {
3241
+ "active": true,
3242
+ "type": "parent"
3243
+ },
3244
+ "tokens": {
3245
+ "paddingLeft": 10
3246
+ }
3247
+ },
3248
+ {
3249
+ "if": {
3250
+ "active": true,
3251
+ "expanded": true,
3252
+ "type": "parent"
3253
+ },
3254
+ "tokens": {
3255
+ "accentBackgroundColor": {
3256
+ "red": 0,
3257
+ "green": 0,
3258
+ "blue": 0,
3259
+ "alpha": 0
3260
+ },
3261
+ "backgroundColor": {
3262
+ "red": 0,
3263
+ "green": 0,
3264
+ "blue": 0,
3265
+ "alpha": 0
3266
+ },
3267
+ "color": {
3268
+ "red": 0.4,
3269
+ "green": 0.4,
3270
+ "blue": 0.4,
3271
+ "alpha": 1
3272
+ },
3273
+ "paddingLeft": 16
3274
+ }
3275
+ },
3276
+ {
3277
+ "if": {
3278
+ "active": true,
3279
+ "type": "child"
3280
+ },
3281
+ "tokens": {
3282
+ "accentBackgroundColor": {
3283
+ "red": 0.00392,
3284
+ "green": 0.41961,
3285
+ "blue": 0.41569,
3286
+ "alpha": 1
3287
+ },
3288
+ "accentPadding": 16,
3289
+ "backgroundColor": {
3290
+ "red": 0.75686,
3291
+ "green": 0.94902,
3292
+ "blue": 0.9098,
3293
+ "alpha": 1
3294
+ },
3295
+ "color": {
3296
+ "red": 0.00392,
3297
+ "green": 0.41961,
3298
+ "blue": 0.41569,
3299
+ "alpha": 1
3300
+ }
3301
+ }
3302
+ }
3303
+ ],
3304
+ "tokens": {
3305
+ "accentBackgroundColor": {
3306
+ "red": 0,
3307
+ "green": 0,
3308
+ "blue": 0,
3309
+ "alpha": 0
3310
+ },
3311
+ "accentOffset": 0,
3312
+ "accentPadding": 0,
3313
+ "accentWidth": 4,
3314
+ "backgroundColor": {
3315
+ "red": 0,
3316
+ "green": 0,
3317
+ "blue": 0,
3318
+ "alpha": 0
3319
+ },
3320
+ "borderColor": {
3321
+ "red": 0.78824,
3322
+ "green": 0.78431,
3323
+ "blue": 0.78431,
3324
+ "alpha": 1
3325
+ },
3326
+ "borderStyle": "solid",
3327
+ "borderWidth": 1,
3328
+ "color": {
3329
+ "red": 0.4,
3330
+ "green": 0.4,
3331
+ "blue": 0.4,
3332
+ "alpha": 1
3333
+ },
3334
+ "fontName": "StagSans",
3335
+ "fontSize": 16,
3336
+ "fontWeight": 400,
3337
+ "justifyContent": "space-between",
3338
+ "lineHeight": 1.5,
3339
+ "paddingBottom": 16,
3340
+ "paddingLeft": 16,
3341
+ "paddingRight": 16,
3342
+ "paddingTop": 16
3343
+ }
3344
+ },
3345
+ "SideNavItemsGroup": {
3346
+ "appearances": {},
3347
+ "rules": [],
3348
+ "tokens": {
3349
+ "collapseDuration": 250,
3350
+ "contentPaddingBottom": 0,
3351
+ "contentPaddingLeft": 0,
3352
+ "contentPaddingRight": 0,
3353
+ "contentPaddingTop": 0,
3354
+ "expandDuration": 300,
3355
+ "icon": null,
3356
+ "iconColor": {
3357
+ "red": 0,
3358
+ "green": 0,
3359
+ "blue": 0,
3360
+ "alpha": 0
3361
+ },
3362
+ "iconGap": 8,
3363
+ "iconPosition": "right",
3364
+ "iconSize": 10,
3365
+ "justifyContent": "space-between",
3366
+ "verticalAlign": "middle"
3367
+ }
3368
+ },
3369
+ "Skeleton": {
3370
+ "appearances": {},
3371
+ "rules": [],
3372
+ "tokens": {
3373
+ "baseWidth": 40,
3374
+ "characters": 10,
3375
+ "color": {
3376
+ "red": 0.4,
3377
+ "green": 0.4,
3378
+ "blue": 0.4,
3379
+ "alpha": 1
3380
+ },
3381
+ "radius": 99999999999999,
3382
+ "size": 2,
3383
+ "spaceBetweenLines": 4,
3384
+ "squareRadius": 4
3385
+ }
3386
+ },
3387
+ "SkipLink": {
3388
+ "appearances": {},
3389
+ "rules": [],
3390
+ "tokens": {
3391
+ "backgroundColor": {
3392
+ "red": 0.00392,
3393
+ "green": 0.28235,
3394
+ "blue": 0.27843,
3395
+ "alpha": 1
3396
+ },
3397
+ "borderRadius": 12,
3398
+ "color": {
3399
+ "red": 1,
3400
+ "green": 1,
3401
+ "blue": 1,
3402
+ "alpha": 1
3403
+ },
3404
+ "outlineColor": {
3405
+ "red": 0.00392,
3406
+ "green": 0.41961,
3407
+ "blue": 0.41569,
3408
+ "alpha": 1
3409
+ },
3410
+ "outlineOffset": 0,
3411
+ "outlineStyle": "solid",
3412
+ "outlineWidth": 2,
3413
+ "paddingHorizontal": 8,
3414
+ "paddingVertical": 8
3415
+ }
3416
+ },
3417
+ "StackView": {
3418
+ "appearances": {},
3419
+ "rules": [],
3420
+ "tokens": {
3421
+ "alignItems": "stretch",
3422
+ "flexGrow": 0,
3423
+ "flexShrink": 0,
3424
+ "justifyContent": "flex-start"
3425
+ }
3426
+ },
3427
+ "StepTracker": {
3428
+ "appearances": {
3429
+ "viewport": {
3430
+ "description": "The size label for the current screen viewport based on the current screen width",
3431
+ "values": ["xs", "sm", "md", "lg", "xl"],
3432
+ "type": "state"
3433
+ }
3434
+ },
3435
+ "rules": [
3436
+ {
3437
+ "if": {
3438
+ "viewport": ["lg", "xl"]
3439
+ },
3440
+ "tokens": {
3441
+ "showStepLabel": true,
3442
+ "showStepTrackerLabel": false
3443
+ }
3444
+ }
3445
+ ],
3446
+ "tokens": {
3447
+ "completedIcon": "PaletteIconCheck",
3448
+ "completedIconColor": {
3449
+ "red": 1,
3450
+ "green": 1,
3451
+ "blue": 1,
3452
+ "alpha": 1
3453
+ },
3454
+ "completedIconSize": 10,
3455
+ "connectorColor": {
3456
+ "red": 0.00392,
3457
+ "green": 0.41961,
3458
+ "blue": 0.41569,
3459
+ "alpha": 1
3460
+ },
3461
+ "connectorCompletedColor": {
3462
+ "red": 0.00392,
3463
+ "green": 0.41961,
3464
+ "blue": 0.41569,
3465
+ "alpha": 1
3466
+ },
3467
+ "connectorCompletedHeight": 1,
3468
+ "connectorHeight": 1,
3469
+ "connectorMinWidth": 16,
3470
+ "containerPaddingBottom": null,
3471
+ "containerPaddingLeft": null,
3472
+ "containerPaddingRight": null,
3473
+ "containerPaddingTop": null,
3474
+ "knobBackgroundColor": {
3475
+ "red": 0,
3476
+ "green": 0,
3477
+ "blue": 0,
3478
+ "alpha": 0
3479
+ },
3480
+ "knobBorderColor": {
3481
+ "red": 0.00392,
3482
+ "green": 0.41961,
3483
+ "blue": 0.41569,
3484
+ "alpha": 1
3485
+ },
3486
+ "knobBorderWidth": 1,
3487
+ "knobCompletedBackgroundColor": {
3488
+ "red": 0.00392,
3489
+ "green": 0.41961,
3490
+ "blue": 0.41569,
3491
+ "alpha": 1
3492
+ },
3493
+ "knobCompletedBorderColor": {
3494
+ "red": 0.00392,
3495
+ "green": 0.41961,
3496
+ "blue": 0.41569,
3497
+ "alpha": 1
3498
+ },
3499
+ "knobCompletedPaddingLeft": 2,
3500
+ "knobCompletedPaddingTop": 2,
3501
+ "knobCurrentBackgroundColor": {
3502
+ "red": 0.00392,
3503
+ "green": 0.41961,
3504
+ "blue": 0.41569,
3505
+ "alpha": 1
3506
+ },
3507
+ "knobCurrentBorderColor": {
3508
+ "red": 0.00392,
3509
+ "green": 0.41961,
3510
+ "blue": 0.41569,
3511
+ "alpha": 1
3512
+ },
3513
+ "knobCurrentBorderWidth": 1,
3514
+ "knobCurrentInnerColor": {
3515
+ "red": 0,
3516
+ "green": 0,
3517
+ "blue": 0,
3518
+ "alpha": 0
3519
+ },
3520
+ "knobCurrentInnerSize": null,
3521
+ "knobCurrentPaddingLeft": null,
3522
+ "knobCurrentPaddingTop": null,
3523
+ "knobSize": 15,
3524
+ "labelColor": {
3525
+ "red": 0.00392,
3526
+ "green": 0.41961,
3527
+ "blue": 0.41569,
3528
+ "alpha": 1
3529
+ },
3530
+ "labelCurrentColor": {
3531
+ "red": 0.00392,
3532
+ "green": 0.41961,
3533
+ "blue": 0.41569,
3534
+ "alpha": 1
3535
+ },
3536
+ "labelCurrentFontName": "StagSans",
3537
+ "labelCurrentFontWeight": 700,
3538
+ "labelDirection": "row",
3539
+ "labelFontName": "StagSans",
3540
+ "labelFontSize": 16,
3541
+ "labelFontWeight": 400,
3542
+ "labelGap": 4,
3543
+ "labelLineHeight": 1.5,
3544
+ "labelMarginTop": 10,
3545
+ "labelPaddingLeft": 16,
3546
+ "labelPaddingRight": 16,
3547
+ "showStepLabel": false,
3548
+ "showStepName": true,
3549
+ "showStepTrackerLabel": true
3550
+ }
3551
+ },
3552
+ "Tabs": {
3553
+ "appearances": {},
3554
+ "rules": [],
3555
+ "tokens": {
3556
+ "borderBottomColor": {
3557
+ "red": 0,
3558
+ "green": 0,
3559
+ "blue": 0,
3560
+ "alpha": 0
3561
+ },
3562
+ "borderBottomWidth": 0,
3563
+ "buttonClearance": 32,
3564
+ "gutter": 16,
3565
+ "nextIcon": "PaletteIconChevronRight",
3566
+ "previousIcon": "PaletteIconChevronLeft",
3567
+ "space": 0
3568
+ }
3569
+ },
3570
+ "TabsItem": {
3571
+ "appearances": {
3572
+ "selected": {
3573
+ "description": "Applies while an interactive component is being physically pressed. Most visible on touchscreen taps; in React Native Web, this is visible on web mouse clicks only if the pressable is held down.",
3574
+ "values": [true],
3575
+ "type": "state"
3576
+ }
3577
+ },
3578
+ "rules": [
3579
+ {
3580
+ "if": {
3581
+ "selected": true
3582
+ },
3583
+ "tokens": {
3584
+ "backgroundColor": {
3585
+ "red": 0.00392,
3586
+ "green": 0.41961,
3587
+ "blue": 0.41569,
3588
+ "alpha": 1
3589
+ },
3590
+ "borderWidth": 0,
3591
+ "color": {
3592
+ "red": 1,
3593
+ "green": 1,
3594
+ "blue": 1,
3595
+ "alpha": 1
3596
+ },
3597
+ "highlightColor": {
3598
+ "red": 0.00392,
3599
+ "green": 0.41961,
3600
+ "blue": 0.41569,
3601
+ "alpha": 1
3602
+ },
3603
+ "highlightTriangleSize": 8
3604
+ }
3605
+ }
3606
+ ],
3607
+ "tokens": {
3608
+ "backgroundColor": {
3609
+ "red": 0.93725,
3610
+ "green": 0.93725,
3611
+ "blue": 0.93725,
3612
+ "alpha": 1
3613
+ },
3614
+ "borderColor": {
3615
+ "red": 0.78824,
3616
+ "green": 0.78431,
3617
+ "blue": 0.78431,
3618
+ "alpha": 1
3619
+ },
3620
+ "borderRadius": 0,
3621
+ "borderWidth": 1,
3622
+ "color": {
3623
+ "red": 0,
3624
+ "green": 0,
3625
+ "blue": 0,
3626
+ "alpha": 1
3627
+ },
3628
+ "fontName": "StagSans",
3629
+ "fontScaleCap": 64,
3630
+ "fontSize": 16,
3631
+ "fontWeight": 700,
3632
+ "highlightBarBorderRadius": 0,
3633
+ "highlightBarBorderWidth": 0,
3634
+ "highlightBarHeight": 0,
3635
+ "highlightColor": {
3636
+ "red": 0,
3637
+ "green": 0,
3638
+ "blue": 0,
3639
+ "alpha": 0
3640
+ },
3641
+ "highlightTriangleSize": 0,
3642
+ "letterSpacing": 0,
3643
+ "lineHeight": 1.1,
3644
+ "maxWidth": null,
3645
+ "paddingHorizontal": 16,
3646
+ "paddingVertical": 16,
3647
+ "space": 0,
3648
+ "textAlign": "center",
3649
+ "textTransform": "none"
3650
+ }
3651
+ },
3652
+ "Tags": {
3653
+ "appearances": {},
3654
+ "rules": [],
3655
+ "tokens": {
3656
+ "alignItems": "center",
3657
+ "direction": "row",
3658
+ "flexGrow": 0,
3659
+ "flexShrink": 0,
3660
+ "justifyContent": "flex-start",
3661
+ "space": 3
3662
+ }
3663
+ },
3664
+ "TagsItem": {
3665
+ "appearances": {
3666
+ "inactive": {
3667
+ "description": "Prevents an interactive component from being interacted with and applies accessibility attributes to indicate to the user that this component cannot be used.",
3668
+ "values": [true],
3669
+ "type": "state"
3670
+ },
3671
+ "pressed": {
3672
+ "description": "Applies while an interactive component is being physically pressed. Most visible on touchscreen taps; in React Native Web, this is visible on web mouse clicks only if the pressable is held down.",
3673
+ "values": [true],
3674
+ "type": "state"
3675
+ },
3676
+ "selected": {
3677
+ "description": "Applies while an interactive component is the currently selected one in a set of states or components, for example a button in a `ButtonGroup`.",
3678
+ "values": [true],
3679
+ "type": "state"
3680
+ }
3681
+ },
3682
+ "rules": [
3683
+ {
3684
+ "if": {
3685
+ "pressed": true
3686
+ },
3687
+ "tokens": {
3688
+ "backgroundColor": {
3689
+ "red": 0.00392,
3690
+ "green": 0.41961,
3691
+ "blue": 0.41569,
3692
+ "alpha": 1
3693
+ },
3694
+ "borderColor": {
3695
+ "red": 0.00392,
3696
+ "green": 0.41961,
3697
+ "blue": 0.41569,
3698
+ "alpha": 1
3699
+ },
3700
+ "color": {
3701
+ "red": 1,
3702
+ "green": 1,
3703
+ "blue": 1,
3704
+ "alpha": 1
3705
+ }
3706
+ }
3707
+ },
3708
+ {
3709
+ "if": {
3710
+ "selected": true
3711
+ },
3712
+ "tokens": {
3713
+ "icon": "PaletteIconCheckCircledFilled",
3714
+ "opacity": 0.8,
3715
+ "outerBorderColor": {
3716
+ "red": 0.00392,
3717
+ "green": 0.41961,
3718
+ "blue": 0.41569,
3719
+ "alpha": 1
3720
+ },
3721
+ "outerBorderGap": 1,
3722
+ "outerBorderWidth": 4
3723
+ }
3724
+ },
3725
+ {
3726
+ "if": {
3727
+ "inactive": true
3728
+ },
3729
+ "tokens": {
3730
+ "backgroundColor": {
3731
+ "red": 0.4,
3732
+ "green": 0.4,
3733
+ "blue": 0.4,
3734
+ "alpha": 1
3735
+ },
3736
+ "borderWidth": 0,
3737
+ "color": {
3738
+ "red": 1,
3739
+ "green": 1,
3740
+ "blue": 1,
3741
+ "alpha": 1
3742
+ },
3743
+ "iconColor": {
3744
+ "red": 0.4,
3745
+ "green": 0.4,
3746
+ "blue": 0.4,
3747
+ "alpha": 1
3748
+ }
3749
+ }
3750
+ },
3751
+ {
3752
+ "if": {
3753
+ "selected": true
3754
+ },
3755
+ "tokens": {
3756
+ "opacity": 0.8,
3757
+ "outerBorderColor": {
3758
+ "red": 0.00392,
3759
+ "green": 0.41961,
3760
+ "blue": 0.41569,
3761
+ "alpha": 1
3762
+ },
3763
+ "outerBorderGap": 1,
3764
+ "outerBorderWidth": 4
3765
+ }
3766
+ }
3767
+ ],
3768
+ "tokens": {
3769
+ "alignSelf": "center",
3770
+ "backgroundColor": {
3771
+ "red": 0.00392,
3772
+ "green": 0.41961,
3773
+ "blue": 0.41569,
3774
+ "alpha": 1
3775
+ },
3776
+ "borderColor": {
3777
+ "red": 0.00392,
3778
+ "green": 0.28235,
3779
+ "blue": 0.27843,
3780
+ "alpha": 1
3781
+ },
3782
+ "borderRadius": 4,
3783
+ "borderWidth": 0,
3784
+ "color": {
3785
+ "red": 1,
3786
+ "green": 1,
3787
+ "blue": 1,
3788
+ "alpha": 1
3789
+ },
3790
+ "fontName": "StagSans",
3791
+ "fontSize": 14,
3792
+ "fontWeight": 600,
3793
+ "icon": "PaletteIconCheckCircledNotFilled",
3794
+ "iconAlignSelf": "center",
3795
+ "iconBackground": {
3796
+ "red": 1,
3797
+ "green": 1,
3798
+ "blue": 1,
3799
+ "alpha": 1
3800
+ },
3801
+ "iconBorderRadius": 32,
3802
+ "iconColor": {
3803
+ "red": 0.00392,
3804
+ "green": 0.41961,
3805
+ "blue": 0.41569,
3806
+ "alpha": 1
3807
+ },
3808
+ "iconPadding": 4,
3809
+ "iconPosition": "right",
3810
+ "iconSize": 20,
3811
+ "iconSpace": 3,
3812
+ "iconTranslateX": 0,
3813
+ "iconTranslateY": 0,
3814
+ "lineHeight": 1.5,
3815
+ "minWidth": 0,
3816
+ "opacity": 1,
3817
+ "outerBackgroundColor": {
3818
+ "red": 0,
3819
+ "green": 0,
3820
+ "blue": 0,
3821
+ "alpha": 0
3822
+ },
3823
+ "outerBorderColor": {
3824
+ "red": 0,
3825
+ "green": 0,
3826
+ "blue": 0,
3827
+ "alpha": 0
3828
+ },
3829
+ "outerBorderGap": 2,
3830
+ "outerBorderWidth": 2,
3831
+ "paddingBottom": 8,
3832
+ "paddingLeft": 24,
3833
+ "paddingRight": 16,
3834
+ "paddingTop": 8,
3835
+ "shadow": null,
3836
+ "textAlign": "center",
3837
+ "width": null
3838
+ }
3839
+ },
3840
+ "TextArea": {
3841
+ "appearances": {},
3842
+ "rules": [],
3843
+ "tokens": {
3844
+ "maxLines": 4,
3845
+ "minLines": 2
3846
+ }
3847
+ },
3848
+ "TextInput": {
3849
+ "appearances": {
3850
+ "focus": {
3851
+ "description": "Focus states for some input elements are well supported across web, RN, ios and android",
3852
+ "values": [true],
3853
+ "type": "state"
3854
+ },
3855
+ "inactive": {
3856
+ "description": "Prevents an interactive component from being interacted with and applies accessibility attributes to indicate to the user that this component cannot be used.",
3857
+ "values": [true],
3858
+ "type": "state"
3859
+ },
3860
+ "validation": {
3861
+ "description": "Validation states for form inputs",
3862
+ "values": ["error", "success"],
3863
+ "type": "state"
3864
+ }
3865
+ },
3866
+ "rules": [
3867
+ {
3868
+ "if": {
3869
+ "validation": "success"
3870
+ },
3871
+ "tokens": {
3872
+ "borderColor": {
3873
+ "red": 0.1451,
3874
+ "green": 0.5451,
3875
+ "blue": 0.04314,
3876
+ "alpha": 1
3877
+ },
3878
+ "icon": "PaletteIconCheckCircledFilled",
3879
+ "iconColor": {
3880
+ "red": 0.1451,
3881
+ "green": 0.5451,
3882
+ "blue": 0.04314,
3883
+ "alpha": 1
3884
+ }
3885
+ }
3886
+ },
3887
+ {
3888
+ "if": {
3889
+ "validation": "error"
3890
+ },
3891
+ "tokens": {
3892
+ "borderColor": {
3893
+ "red": 0.87451,
3894
+ "green": 0.23922,
3895
+ "blue": 0.04706,
3896
+ "alpha": 1
3897
+ },
3898
+ "icon": "PaletteIconTimes",
3899
+ "iconColor": {
3900
+ "red": 0.87451,
3901
+ "green": 0.23922,
3902
+ "blue": 0.04706,
3903
+ "alpha": 1
3904
+ }
3905
+ }
3906
+ },
3907
+ {
3908
+ "if": {
3909
+ "focus": true,
3910
+ "inactive": null
3911
+ },
3912
+ "tokens": {
3913
+ "borderColor": {
3914
+ "red": 0.00392,
3915
+ "green": 0.41961,
3916
+ "blue": 0.41569,
3917
+ "alpha": 1
3918
+ },
3919
+ "borderWidth": 2,
3920
+ "icon": null
3921
+ }
3922
+ },
3923
+ {
3924
+ "if": {
3925
+ "inactive": true
3926
+ },
3927
+ "tokens": {
3928
+ "backgroundColor": {
3929
+ "red": 0.93725,
3930
+ "green": 0.93725,
3931
+ "blue": 0.93725,
3932
+ "alpha": 1
3933
+ },
3934
+ "borderColor": {
3935
+ "red": 0.93725,
3936
+ "green": 0.93725,
3937
+ "blue": 0.93725,
3938
+ "alpha": 1
3939
+ }
3940
+ }
3941
+ }
3942
+ ],
3943
+ "tokens": {
3944
+ "backgroundColor": {
3945
+ "red": 1,
3946
+ "green": 1,
3947
+ "blue": 1,
3948
+ "alpha": 1
3949
+ },
3950
+ "borderColor": {
3951
+ "red": 0,
3952
+ "green": 0,
3953
+ "blue": 0,
3954
+ "alpha": 1
3955
+ },
3956
+ "borderRadius": 4,
3957
+ "borderWidth": 1,
3958
+ "buttonSize": 32,
3959
+ "buttonsGap": 1,
3960
+ "buttonsPaddingRight": 8,
3961
+ "clearButtonIcon": "PaletteIconTimes",
3962
+ "color": {
3963
+ "red": 0.4,
3964
+ "green": 0.4,
3965
+ "blue": 0.4,
3966
+ "alpha": 1
3967
+ },
3968
+ "fontName": "StagSans",
3969
+ "fontSize": 16,
3970
+ "fontWeight": 400,
3971
+ "icon": null,
3972
+ "iconColor": {
3973
+ "red": 0,
3974
+ "green": 0,
3975
+ "blue": 0,
3976
+ "alpha": 0
3977
+ },
3978
+ "iconSize": 24,
3979
+ "lineHeight": 1.5,
3980
+ "outerBackgroundColor": {
3981
+ "red": 0,
3982
+ "green": 0,
3983
+ "blue": 0,
3984
+ "alpha": 0
3985
+ },
3986
+ "outerBorderColor": {
3987
+ "red": 0,
3988
+ "green": 0,
3989
+ "blue": 0,
3990
+ "alpha": 0
3991
+ },
3992
+ "outerBorderWidth": 2,
3993
+ "paddingBottom": 10,
3994
+ "paddingLeft": 16,
3995
+ "paddingRight": 16,
3996
+ "paddingTop": 10
3997
+ }
3998
+ },
3999
+ "Timeline": {
4000
+ "appearances": {
4001
+ "horizontal": {
4002
+ "description": "Use horizontal to display timeline horizontally.",
4003
+ "type": "variant",
4004
+ "values": [true]
4005
+ },
4006
+ "viewport": {
4007
+ "description": "The size label for the current screen viewport based on the current screen width",
4008
+ "values": ["xs", "sm", "md", "lg", "xl"],
4009
+ "type": "state"
4010
+ }
4011
+ },
4012
+ "rules": [
4013
+ {
4014
+ "if": {
4015
+ "horizontal": true,
4016
+ "viewport": ["lg", "xl"]
4017
+ },
4018
+ "tokens": {
4019
+ "connectorHeight": 2,
4020
+ "connectorWidth": "100%",
4021
+ "itemContentMarginBottom": 0,
4022
+ "itemContentMarginRight": 32,
4023
+ "lineItemContainerDirection": "column",
4024
+ "lineItemDirection": "row",
4025
+ "lineItemMarginBottom": 24,
4026
+ "lineItemMarginRight": 0,
4027
+ "timelineContainerDirection": "row"
4028
+ }
4029
+ }
4030
+ ],
4031
+ "tokens": {
4032
+ "connectorHeight": "100%",
4033
+ "connectorWidth": 2,
4034
+ "dotBorderWidth": 3,
4035
+ "dotColor": {
4036
+ "red": 1,
4037
+ "green": 1,
4038
+ "blue": 1,
4039
+ "alpha": 1
4040
+ },
4041
+ "dotWidth": 16,
4042
+ "itemContentFlexSize": 1,
4043
+ "itemContentMarginBottom": 32,
4044
+ "itemContentMarginRight": 0,
4045
+ "lineContainerFlexSize": 1,
4046
+ "lineItemAlign": "center",
4047
+ "lineItemContainerDirection": "row",
4048
+ "lineItemDirection": "column",
4049
+ "lineItemMarginBottom": 0,
4050
+ "lineItemMarginRight": 24,
4051
+ "timelineColor": {
4052
+ "red": 0.00392,
4053
+ "green": 0.41961,
4054
+ "blue": 0.41569,
4055
+ "alpha": 1
4056
+ },
4057
+ "timelineContainerDirection": "column"
4058
+ }
4059
+ },
4060
+ "ToggleSwitch": {
4061
+ "appearances": {
4062
+ "inactive": {
4063
+ "description": "Prevents an interactive component from being interacted with and applies accessibility attributes to indicate to the user that this component cannot be used.",
4064
+ "values": [true],
4065
+ "type": "state"
4066
+ },
4067
+ "pressed": {
4068
+ "description": "Applies while an interactive component is being physically pressed. Most visible on touchscreen taps; in React Native Web, this is visible on web mouse clicks only if the pressable is held down.",
4069
+ "values": [true],
4070
+ "type": "state"
4071
+ },
4072
+ "selected": {
4073
+ "description": "Applies while an interactive component is the currently selected one in a set of states or components, for example a button in a `ButtonGroup`.",
4074
+ "values": [true],
4075
+ "type": "state"
4076
+ }
4077
+ },
4078
+ "rules": [
4079
+ {
4080
+ "if": {
4081
+ "pressed": true
4082
+ },
4083
+ "tokens": {
4084
+ "backgroundColor": {
4085
+ "red": 0.76471,
4086
+ "green": 0.93725,
4087
+ "blue": 1,
4088
+ "alpha": 1
4089
+ }
4090
+ }
4091
+ },
4092
+ {
4093
+ "if": {
4094
+ "selected": true
4095
+ },
4096
+ "tokens": {
4097
+ "backgroundColor": {
4098
+ "red": 0,
4099
+ "green": 0.63137,
4100
+ "blue": 0.85882,
4101
+ "alpha": 1
4102
+ }
4103
+ }
4104
+ },
4105
+ {
4106
+ "if": {
4107
+ "pressed": true,
4108
+ "selected": true
4109
+ },
4110
+ "tokens": {
4111
+ "backgroundColor": {
4112
+ "red": 0.76471,
4113
+ "green": 0.93725,
4114
+ "blue": 1,
4115
+ "alpha": 1
4116
+ }
4117
+ }
4118
+ },
4119
+ {
4120
+ "if": {
4121
+ "inactive": true
4122
+ },
4123
+ "tokens": {
4124
+ "opacity": 0.5
4125
+ }
4126
+ }
4127
+ ],
4128
+ "tokens": {
4129
+ "alignSelf": "flex-start",
4130
+ "backgroundColor": {
4131
+ "red": 0.00392,
4132
+ "green": 0.41961,
4133
+ "blue": 0.41569,
4134
+ "alpha": 1
4135
+ },
4136
+ "borderColor": {
4137
+ "red": 0,
4138
+ "green": 0,
4139
+ "blue": 0,
4140
+ "alpha": 0
4141
+ },
4142
+ "borderRadius": 4,
4143
+ "borderWidth": 0,
4144
+ "icon": null,
4145
+ "iconColor": {
4146
+ "red": 0,
4147
+ "green": 0,
4148
+ "blue": 0,
4149
+ "alpha": 0
4150
+ },
4151
+ "iconSize": 16,
4152
+ "labelColor": {
4153
+ "red": 0,
4154
+ "green": 0,
4155
+ "blue": 0,
4156
+ "alpha": 1
4157
+ },
4158
+ "labelFontName": "StagSans",
4159
+ "labelFontSize": 16,
4160
+ "labelFontWeight": 400,
4161
+ "labelLineHeight": 1.5,
4162
+ "labelMarginLeft": 8,
4163
+ "opacity": 1,
4164
+ "outerBackgroundColor": {
4165
+ "red": 0,
4166
+ "green": 0,
4167
+ "blue": 0,
4168
+ "alpha": 0
4169
+ },
4170
+ "outerBorderColor": {
4171
+ "red": 0,
4172
+ "green": 0,
4173
+ "blue": 0,
4174
+ "alpha": 0
4175
+ },
4176
+ "outerBorderGap": 2,
4177
+ "outerBorderWidth": 2,
4178
+ "paddingBottom": 4,
4179
+ "paddingLeft": 8,
4180
+ "paddingRight": 8,
4181
+ "paddingTop": 4,
4182
+ "shadow": null,
4183
+ "switchBorderColor": {
4184
+ "red": 0,
4185
+ "green": 0,
4186
+ "blue": 0,
4187
+ "alpha": 0
4188
+ },
4189
+ "switchBorderRadius": 32,
4190
+ "switchBorderWidth": 0,
4191
+ "switchColor": {
4192
+ "red": 1,
4193
+ "green": 1,
4194
+ "blue": 1,
4195
+ "alpha": 1
4196
+ },
4197
+ "switchShadow": null,
4198
+ "switchSize": 24,
4199
+ "trackBorderColor": {
4200
+ "red": 0,
4201
+ "green": 0,
4202
+ "blue": 0,
4203
+ "alpha": 0
4204
+ },
4205
+ "trackBorderRadius": 0,
4206
+ "trackBorderWidth": 0,
4207
+ "width": 64
4208
+ }
4209
+ },
4210
+ "ToggleSwitchGroup": {
4211
+ "appearances": {},
4212
+ "rules": [],
4213
+ "tokens": {
4214
+ "alignItems": "flex-start",
4215
+ "direction": "column",
4216
+ "fieldSpace": 2,
4217
+ "flexGrow": 0,
4218
+ "flexShrink": 0,
4219
+ "justifyContent": "flex-start",
4220
+ "space": 3
4221
+ }
4222
+ },
4223
+ "Tooltip": {
4224
+ "appearances": {},
4225
+ "rules": [],
4226
+ "tokens": {
4227
+ "arrowBorderRadius": 0,
4228
+ "arrowOffset": 4,
4229
+ "arrowWidth": 8,
4230
+ "backgroundColor": {
4231
+ "red": 0.00392,
4232
+ "green": 0.28235,
4233
+ "blue": 0.27843,
4234
+ "alpha": 1
4235
+ },
4236
+ "borderRadius": 4,
4237
+ "color": {
4238
+ "red": 1,
4239
+ "green": 1,
4240
+ "blue": 1,
4241
+ "alpha": 1
4242
+ },
4243
+ "fontName": "StagSans",
4244
+ "fontSize": 14,
4245
+ "fontWeight": 400,
4246
+ "lineHeight": 1.4,
4247
+ "paddingBottom": 8,
4248
+ "paddingLeft": 16,
4249
+ "paddingRight": 16,
4250
+ "paddingTop": 8,
4251
+ "shadow": {
4252
+ "inset": false,
4253
+ "offsetX": 0,
4254
+ "offsetY": 0,
4255
+ "blur": 0,
4256
+ "spread": 0,
4257
+ "color": {
4258
+ "red": 0,
4259
+ "green": 0,
4260
+ "blue": 0,
4261
+ "alpha": 0
4262
+ }
4263
+ }
4264
+ }
4265
+ },
4266
+ "TooltipButton": {
4267
+ "appearances": {
4268
+ "pressed": {
4269
+ "description": "Applies while an interactive component is being physically pressed. Most visible on touchscreen taps; in React Native Web, this is visible on web mouse clicks only if the pressable is held down.",
4270
+ "values": [true],
4271
+ "type": "state"
4272
+ }
4273
+ },
4274
+ "rules": [
4275
+ {
4276
+ "if": {
4277
+ "pressed": true
4278
+ },
4279
+ "tokens": {
4280
+ "iconColor": {
4281
+ "red": 0.00392,
4282
+ "green": 0.28235,
4283
+ "blue": 0.27843,
4284
+ "alpha": 1
4285
+ }
4286
+ }
4287
+ }
4288
+ ],
4289
+ "tokens": {
4290
+ "borderRadius": 32,
4291
+ "icon": "PaletteIconInfo",
4292
+ "iconColor": {
4293
+ "red": 0.93333,
4294
+ "green": 0.17255,
4295
+ "blue": 0.4549,
4296
+ "alpha": 1
4297
+ },
4298
+ "iconScale": 1,
4299
+ "iconSize": 16,
4300
+ "outerBorderColor": {
4301
+ "red": 0,
4302
+ "green": 0,
4303
+ "blue": 0,
4304
+ "alpha": 0
4305
+ },
4306
+ "outerBorderGap": 4,
4307
+ "outerBorderWidth": 1,
4308
+ "width": 16
4309
+ }
4310
+ },
4311
+ "Typography": {
4312
+ "appearances": {
4313
+ "colour": {
4314
+ "type": "variant",
4315
+ "values": ["red"]
4316
+ },
4317
+ "inverse": {
4318
+ "description": "Styles the link white for use on dark backgrounds.",
4319
+ "type": "variant",
4320
+ "values": [true]
4321
+ },
4322
+ "size": {
4323
+ "type": "variant",
4324
+ "values": ["small", "large", "h1", "h2", "h3", "h4", "display"]
4325
+ },
4326
+ "viewport": {
4327
+ "description": "The size label for the current screen viewport based on the current screen width",
4328
+ "values": ["xs", "sm", "md", "lg", "xl"],
4329
+ "type": "state"
4330
+ },
4331
+ "weight": {
4332
+ "description": "Sets the font weight, default is regular 400 weight. Does not change accessibility properties.",
4333
+ "type": "variant",
4334
+ "values": ["semibold", "bold"]
4335
+ }
4336
+ },
4337
+ "rules": [
4338
+ {
4339
+ "if": {
4340
+ "weight": "semibold"
4341
+ },
4342
+ "tokens": {
4343
+ "fontName": "StagSans",
4344
+ "fontWeight": 600
4345
+ }
4346
+ },
4347
+ {
4348
+ "if": {
4349
+ "weight": "bold"
4350
+ },
4351
+ "tokens": {
4352
+ "fontName": "StagSans",
4353
+ "fontWeight": 700
4354
+ }
4355
+ },
4356
+ {
4357
+ "if": {
4358
+ "size": "large"
4359
+ },
4360
+ "tokens": {
4361
+ "fontSize": 20,
4362
+ "lineHeight": 1.6
4363
+ }
4364
+ },
4365
+ {
4366
+ "if": {
4367
+ "size": "small"
4368
+ },
4369
+ "tokens": {
4370
+ "fontSize": 14,
4371
+ "lineHeight": 1.4
4372
+ }
4373
+ },
4374
+ {
4375
+ "if": {
4376
+ "size": "display"
4377
+ },
4378
+ "tokens": {
4379
+ "fontName": "StagSans",
4380
+ "fontSize": 48,
4381
+ "fontWeight": 700,
4382
+ "lineHeight": 1.2
4383
+ }
4384
+ },
4385
+ {
4386
+ "if": {
4387
+ "size": "display",
4388
+ "viewport": ["lg", "xl"]
4389
+ },
4390
+ "tokens": {
4391
+ "fontSize": 64,
4392
+ "lineHeight": 1.1
4393
+ }
4394
+ },
4395
+ {
4396
+ "if": {
4397
+ "size": "h1"
4398
+ },
4399
+ "tokens": {
4400
+ "fontName": "StagSans",
4401
+ "fontSize": 44,
4402
+ "fontWeight": 700,
4403
+ "lineHeight": 1.2
4404
+ }
4405
+ },
4406
+ {
4407
+ "if": {
4408
+ "size": "h1",
4409
+ "viewport": ["lg", "xl"]
4410
+ },
4411
+ "tokens": {
4412
+ "fontSize": 40,
4413
+ "lineHeight": 1.1
4414
+ }
4415
+ },
4416
+ {
4417
+ "if": {
4418
+ "size": "h2"
4419
+ },
4420
+ "tokens": {
4421
+ "color": {
4422
+ "red": 0,
4423
+ "green": 0,
4424
+ "blue": 0,
4425
+ "alpha": 1
4426
+ },
4427
+ "fontName": "StagSans",
4428
+ "fontSize": 28,
4429
+ "fontWeight": 700,
4430
+ "lineHeight": 1.3
4431
+ }
4432
+ },
4433
+ {
4434
+ "if": {
4435
+ "size": "h2",
4436
+ "viewport": ["lg", "xl"]
4437
+ },
4438
+ "tokens": {
4439
+ "fontSize": 28
4440
+ }
4441
+ },
4442
+ {
4443
+ "if": {
4444
+ "size": "h3"
4445
+ },
4446
+ "tokens": {
4447
+ "fontName": "StagSans",
4448
+ "fontSize": 20,
4449
+ "fontWeight": 700,
4450
+ "lineHeight": 1.4
4451
+ }
4452
+ },
4453
+ {
4454
+ "if": {
4455
+ "size": "h3",
4456
+ "viewport": ["lg", "xl"]
4457
+ },
4458
+ "tokens": {
4459
+ "fontSize": 24,
4460
+ "lineHeight": 1.3
4461
+ }
4462
+ },
4463
+ {
4464
+ "if": {
4465
+ "size": "h4"
4466
+ },
4467
+ "tokens": {
4468
+ "fontName": "StagSans",
4469
+ "fontSize": 16,
4470
+ "fontWeight": 700,
4471
+ "lineHeight": 1.5
4472
+ }
4473
+ },
4474
+ {
4475
+ "if": {
4476
+ "inverse": true
4477
+ },
4478
+ "tokens": {
4479
+ "color": {
4480
+ "red": 1,
4481
+ "green": 1,
4482
+ "blue": 1,
4483
+ "alpha": 1
4484
+ }
4485
+ }
4486
+ },
4487
+ {
4488
+ "if": {
4489
+ "colour": "red"
4490
+ },
4491
+ "tokens": {
4492
+ "color": {
4493
+ "red": 0.87451,
4494
+ "green": 0.23922,
4495
+ "blue": 0.04706,
4496
+ "alpha": 1
4497
+ }
4498
+ }
4499
+ }
4500
+ ],
4501
+ "tokens": {
4502
+ "color": {
4503
+ "red": 0,
4504
+ "green": 0,
4505
+ "blue": 0,
4506
+ "alpha": 1
4507
+ },
4508
+ "fontName": "StagSans",
4509
+ "fontScaleCap": 64,
4510
+ "fontSize": 16,
4511
+ "fontWeight": 400,
4512
+ "letterSpacing": 0,
4513
+ "lineHeight": 1.5,
4514
+ "textTransform": "none"
4515
+ }
4516
+ },
4517
+ "spacingScale": {
4518
+ "appearances": {
4519
+ "space": {
4520
+ "description": "Index of the intended position on the spacing scale",
4521
+ "values": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11],
4522
+ "type": "state"
4523
+ },
4524
+ "viewport": {
4525
+ "description": "The size label for the current screen viewport based on the current screen width",
4526
+ "values": ["xs", "sm", "md", "lg", "xl"],
4527
+ "type": "state"
4528
+ }
4529
+ },
4530
+ "rules": [
4531
+ {
4532
+ "if": {
4533
+ "viewport": ["lg", "xl"]
4534
+ },
4535
+ "tokens": {
4536
+ "size": 120
4537
+ }
4538
+ },
4539
+ {
4540
+ "if": {
4541
+ "space": 10
4542
+ },
4543
+ "tokens": {
4544
+ "size": 80
4545
+ }
4546
+ },
4547
+ {
4548
+ "if": {
4549
+ "space": 9
4550
+ },
4551
+ "tokens": {
4552
+ "size": 64
4553
+ }
4554
+ },
4555
+ {
4556
+ "if": {
4557
+ "space": 8
4558
+ },
4559
+ "tokens": {
4560
+ "size": 48
4561
+ }
4562
+ },
4563
+ {
4564
+ "if": {
4565
+ "space": 7
4566
+ },
4567
+ "tokens": {
4568
+ "size": 40
4569
+ }
4570
+ },
4571
+ {
4572
+ "if": {
4573
+ "space": 6
4574
+ },
4575
+ "tokens": {
4576
+ "size": 36
4577
+ }
4578
+ },
4579
+ {
4580
+ "if": {
4581
+ "space": 5
4582
+ },
4583
+ "tokens": {
4584
+ "size": 32
4585
+ }
4586
+ },
4587
+ {
4588
+ "if": {
4589
+ "space": 4
4590
+ },
4591
+ "tokens": {
4592
+ "size": 24
4593
+ }
4594
+ },
4595
+ {
4596
+ "if": {
4597
+ "space": 3
4598
+ },
4599
+ "tokens": {
4600
+ "size": 16
4601
+ }
4602
+ },
4603
+ {
4604
+ "if": {
4605
+ "space": 2
4606
+ },
4607
+ "tokens": {
4608
+ "size": 8
4609
+ }
4610
+ },
4611
+ {
4612
+ "if": {
4613
+ "space": 1
4614
+ },
4615
+ "tokens": {
4616
+ "size": 4
4617
+ }
4618
+ },
4619
+ {
4620
+ "if": {
4621
+ "space": 10,
4622
+ "viewport": ["lg", "xl"]
4623
+ },
4624
+ "tokens": {
4625
+ "size": 120
4626
+ }
4627
+ },
4628
+ {
4629
+ "if": {
4630
+ "space": 9,
4631
+ "viewport": ["lg", "xl"]
4632
+ },
4633
+ "tokens": {
4634
+ "size": 96
4635
+ }
4636
+ },
4637
+ {
4638
+ "if": {
4639
+ "space": 8,
4640
+ "viewport": ["lg", "xl"]
4641
+ },
4642
+ "tokens": {
4643
+ "size": 72
4644
+ }
4645
+ },
4646
+ {
4647
+ "if": {
4648
+ "space": 7,
4649
+ "viewport": ["lg", "xl"]
4650
+ },
4651
+ "tokens": {
4652
+ "size": 64
4653
+ }
4654
+ },
4655
+ {
4656
+ "if": {
4657
+ "space": 0
4658
+ },
4659
+ "tokens": {
4660
+ "size": 0
4661
+ }
4662
+ }
4663
+ ],
4664
+ "tokens": {
4665
+ "size": 96
4666
+ }
4667
+ }
4668
+ },
4669
+ "metadata": {
4670
+ "themeTokensVersion": "2.8.0",
4671
+ "name": "theme-koodo"
4672
+ }
4673
+ }