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