@telus-uds/theme-koodo 0.0.2-prerelease.0 → 0.1.0-prerelease.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.
package/theme.json ADDED
@@ -0,0 +1,2737 @@
1
+ {
2
+ "metadata": {
3
+ "name": "koodo",
4
+ "package": "@telus-uds/theme-koodo"
5
+ },
6
+ "components": {
7
+ "ActivityIndicator": {
8
+ "appearances": {},
9
+ "tokens": {
10
+ "size": "{palette.size.size40}",
11
+ "thickness": "{palette.border.border4}",
12
+ "color": "{palette.color.darkMosque}"
13
+ },
14
+ "rules": []
15
+ },
16
+ "Box": {
17
+ "appearances": {
18
+ "background": {
19
+ "description": "Background colour of box. Transparent if not specified.",
20
+ "values": ["light", "lightest"]
21
+ }
22
+ },
23
+ "tokens": {
24
+ "backgroundColor": "{system.color.none}"
25
+ },
26
+ "rules": [
27
+ {
28
+ "if": {
29
+ "background": "lightest"
30
+ },
31
+ "tokens": {
32
+ "backgroundColor": "{palette.color.white}"
33
+ }
34
+ },
35
+ {
36
+ "if": {
37
+ "background": "light"
38
+ },
39
+ "tokens": {
40
+ "backgroundColor": "{palette.color.gallery}"
41
+ }
42
+ }
43
+ ]
44
+ },
45
+ "Button": {
46
+ "appearances": {
47
+ "rank": {
48
+ "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.",
49
+ "values": ["secondary"],
50
+ "type": "variant"
51
+ },
52
+ "rounded": {
53
+ "description": "Gives a button \"pill-style\" rounded sides",
54
+ "values": [true],
55
+ "type": "variant"
56
+ },
57
+ "clear": {
58
+ "description": "Gives a button borders and a transparent background",
59
+ "values": [true],
60
+ "type": "variant"
61
+ },
62
+ "hover": "{appearances.Button.hover}",
63
+ "focus": "{appearances.Button.focus}",
64
+ "pressed": "{appearances.Button.pressed}",
65
+ "selected": "{appearances.Button.selected}",
66
+ "inactive": "{appearances.Button.inactive}"
67
+ },
68
+ "tokens": {
69
+ "borderColor": "{palette.color.white}",
70
+ "borderWidth": "{palette.border.none}",
71
+ "borderRadius": "{palette.radius.radius4}",
72
+ "shadow": "{system.shadow.none}",
73
+ "fontSize": "{palette.fontSize.size16}",
74
+ "fontName": "{palette.fontName.StagSans}",
75
+ "fontWeight": "{palette.fontWeight.weight600}",
76
+ "color": "{palette.color.white}",
77
+ "lineHeight": "{palette.lineHeight.multiply150}",
78
+ "textAlign": "{system.flexJustifyContent.center}",
79
+ "alignSelf": "{system.flexAlign.flexStart}",
80
+ "backgroundColor": "{palette.color.mosque}",
81
+ "opacity": "{system.opacity.opaque}",
82
+ "paddingLeft": "{palette.size.size24}",
83
+ "paddingRight": "{palette.size.size24}",
84
+ "paddingTop": "{palette.size.size8}",
85
+ "paddingBottom": "{palette.size.size8}",
86
+ "width": "{system.size.none}",
87
+ "minWidth": "{system.size.zero}",
88
+ "outerBorderColor": "{palette.color.white}",
89
+ "outerBorderWidth": "{palette.border.border2}",
90
+ "outerBorderGap": "{palette.border.border2}",
91
+ "outerBackgroundColor": "{palette.color.transparent}"
92
+ },
93
+ "rules": [
94
+ {
95
+ "if": {
96
+ "rounded": true
97
+ },
98
+ "tokens": {
99
+ "borderRadius": "{palette.radius.pill32}"
100
+ }
101
+ },
102
+ {
103
+ "if": {
104
+ "clear": true
105
+ },
106
+ "tokens": {
107
+ "borderWidth": "{palette.border.border2}",
108
+ "borderColor": "{palette.color.mosque}",
109
+ "color": "{palette.color.mosque}",
110
+ "backgroundColor": "{system.color.none}"
111
+ }
112
+ },
113
+ {
114
+ "if": {
115
+ "hover": true
116
+ },
117
+ "tokens": {
118
+ "color": "{palette.color.white}",
119
+ "borderColor": "{palette.color.darkMosque}",
120
+ "backgroundColor": "{palette.color.darkMosque}"
121
+ }
122
+ },
123
+ {
124
+ "if": {
125
+ "clear": true,
126
+ "hover": true
127
+ },
128
+ "tokens": {
129
+ "borderWidth": "{palette.border.none}",
130
+ "backgroundColor": "{palette.color.mosque}"
131
+ }
132
+ },
133
+ {
134
+ "if": {
135
+ "pressed": true
136
+ },
137
+ "tokens": {
138
+ "color": "{palette.color.white}",
139
+ "borderColor": "{palette.color.mosque}",
140
+ "backgroundColor": "{palette.color.mosque}"
141
+ }
142
+ },
143
+ {
144
+ "if": {
145
+ "focus": true
146
+ },
147
+ "tokens": {
148
+ "outerBorderColor": "{palette.color.mosque}"
149
+ }
150
+ },
151
+ {
152
+ "if": {
153
+ "rank": "secondary"
154
+ },
155
+ "tokens": {
156
+ "backgroundColor": "{palette.color.blue}",
157
+ "borderColor": "{palette.color.blue}",
158
+ "color": "{palette.color.white}"
159
+ }
160
+ },
161
+ {
162
+ "if": {
163
+ "rank": "secondary",
164
+ "clear": true
165
+ },
166
+ "tokens": {
167
+ "backgroundColor": "{palette.color.white}",
168
+ "borderColor": "{palette.color.blue}",
169
+ "color": "{palette.color.blue}"
170
+ }
171
+ },
172
+ {
173
+ "if": {
174
+ "rank": "secondary",
175
+ "hover": true
176
+ },
177
+ "tokens": {
178
+ "backgroundColor": "{palette.color.darkBlue}",
179
+ "borderColor": "{palette.color.darkBlue}",
180
+ "color": "{palette.color.white}"
181
+ }
182
+ },
183
+ {
184
+ "if": {
185
+ "rank": "secondary",
186
+ "pressed": true
187
+ },
188
+ "tokens": {
189
+ "backgroundColor": "{palette.color.onahau}",
190
+ "borderColor": "{palette.color.onahau}",
191
+ "color": "{palette.color.white}"
192
+ }
193
+ },
194
+ {
195
+ "if": {
196
+ "rank": "secondary",
197
+ "focus": true
198
+ },
199
+ "tokens": {
200
+ "outerBorderColor": "{palette.color.blue}"
201
+ }
202
+ },
203
+ {
204
+ "if": {
205
+ "rank": "secondary",
206
+ "pressed": true,
207
+ "focus": true
208
+ },
209
+ "tokens": {
210
+ "outerBorderColor": "{palette.color.onahau}"
211
+ }
212
+ },
213
+ {
214
+ "if": {
215
+ "inactive": true
216
+ },
217
+ "tokens": {
218
+ "opacity": "{palette.opacity.opacity3}"
219
+ }
220
+ },
221
+ {
222
+ "if": {
223
+ "selected": true
224
+ },
225
+ "tokens": {
226
+ "opacity": "{palette.opacity.opacity8}",
227
+ "outerBorderColor": "{palette.color.mosque}",
228
+ "outerBorderGap": "{palette.border.border1}",
229
+ "outerBorderWidth": "{palette.border.border4}"
230
+ }
231
+ },
232
+ {
233
+ "if": {
234
+ "selected": true,
235
+ "focus": true
236
+ },
237
+ "tokens": {
238
+ "outerBorderGap": "{palette.border.border2}"
239
+ }
240
+ }
241
+ ]
242
+ },
243
+ "ButtonGroup": {
244
+ "appearances": {},
245
+ "tokens": {
246
+ "space": "{system.integer.3}",
247
+ "direction": "{system.direction.row}",
248
+ "alignItems": "{system.flexAlign.center}",
249
+ "justifyContent": "{system.flexJustifyContent.flexStart}",
250
+ "flexGrow": "{system.integer.0}",
251
+ "flexShrink": "{system.integer.0}"
252
+ },
253
+ "rules": []
254
+ },
255
+ "ButtonGroupItem": {
256
+ "appearances": {
257
+ "hover": "{appearances.ButtonGroupItem.hover}",
258
+ "focus": "{appearances.ButtonGroupItem.focus}",
259
+ "pressed": "{appearances.ButtonGroupItem.pressed}",
260
+ "selected": "{appearances.ButtonGroupItem.selected}",
261
+ "inactive": "{appearances.ButtonGroupItem.inactive}"
262
+ },
263
+ "tokens": {
264
+ "borderColor": "{palette.color.darkMosque}",
265
+ "borderWidth": "{palette.border.none}",
266
+ "borderRadius": "{palette.radius.radius4}",
267
+ "shadow": "{system.shadow.none}",
268
+ "fontSize": "{palette.fontSize.size14}",
269
+ "color": "{palette.color.white}",
270
+ "lineHeight": "{palette.lineHeight.multiply150}",
271
+ "fontName": "{palette.fontName.StagSans}",
272
+ "fontWeight": "{palette.fontWeight.weight600}",
273
+ "textAlign": "{system.flexJustifyContent.center}",
274
+ "alignSelf": "{system.flexAlign.flexStart}",
275
+ "backgroundColor": "{palette.color.mosque}",
276
+ "opacity": "{system.opacity.opaque}",
277
+ "paddingLeft": "{palette.size.size24}",
278
+ "paddingRight": "{palette.size.size24}",
279
+ "paddingTop": "{palette.size.size8}",
280
+ "paddingBottom": "{palette.size.size8}",
281
+ "width": "{system.size.none}",
282
+ "minWidth": "{system.size.zero}",
283
+ "outerBorderColor": "{palette.color.transparent}",
284
+ "outerBorderWidth": "{palette.border.border2}",
285
+ "outerBorderGap": "{palette.border.border2}",
286
+ "outerBackgroundColor": "{palette.color.transparent}"
287
+ },
288
+ "rules": [
289
+ {
290
+ "if": {
291
+ "pressed": true
292
+ },
293
+ "tokens": {
294
+ "color": "{palette.color.white}",
295
+ "borderColor": "{palette.color.mosque}",
296
+ "backgroundColor": "{palette.color.mosque}"
297
+ }
298
+ },
299
+ {
300
+ "if": {
301
+ "focus": true
302
+ },
303
+ "tokens": {
304
+ "outerBorderColor": "{palette.color.mosque}"
305
+ }
306
+ },
307
+ {
308
+ "if": {
309
+ "hover": true
310
+ },
311
+ "tokens": {
312
+ "backgroundColor": "{palette.color.darkMosque}"
313
+ }
314
+ },
315
+ {
316
+ "if": {
317
+ "selected": true
318
+ },
319
+ "tokens": {
320
+ "opacity": "{palette.opacity.opacity8}",
321
+ "outerBorderColor": "{palette.color.mosque}",
322
+ "outerBorderGap": "{palette.border.border1}",
323
+ "outerBorderWidth": "{palette.border.border4}"
324
+ }
325
+ },
326
+ {
327
+ "if": {
328
+ "focus": true,
329
+ "pressed": true
330
+ },
331
+ "tokens": {
332
+ "outerBorderColor": "{palette.color.bilbao}"
333
+ }
334
+ },
335
+ {
336
+ "if": {
337
+ "inactive": true
338
+ },
339
+ "tokens": {
340
+ "backgroundColor": "{palette.color.dove}",
341
+ "color": "{palette.color.white}",
342
+ "borderWidth": "{system.border.zero}"
343
+ }
344
+ },
345
+ {
346
+ "if": {
347
+ "selected": true
348
+ },
349
+ "tokens": {
350
+ "opacity": "{palette.opacity.opacity8}",
351
+ "outerBorderColor": "{palette.color.mosque}",
352
+ "outerBorderGap": "{palette.border.border1}",
353
+ "outerBorderWidth": "{palette.border.border4}"
354
+ }
355
+ },
356
+ {
357
+ "if": {
358
+ "selected": true,
359
+ "focus": true
360
+ },
361
+ "tokens": {
362
+ "outerBorderColor": "{palette.color.darkMosque}"
363
+ }
364
+ }
365
+ ]
366
+ },
367
+ "Card": {
368
+ "appearances": {},
369
+ "tokens": {
370
+ "flex": "{system.integer.1}",
371
+ "backgroundColor": "{palette.color.texas}",
372
+ "borderColor": "{system.color.none}",
373
+ "borderRadius": "{palette.radius.none}",
374
+ "borderWidth": "{palette.border.none}",
375
+ "paddingBottom": "{palette.size.size16}",
376
+ "paddingLeft": "{palette.size.size16}",
377
+ "paddingRight": "{palette.size.size16}",
378
+ "paddingTop": "{palette.size.size16}",
379
+ "minWidth": "{system.size.none}",
380
+ "shadow": "{system.shadow.none}"
381
+ },
382
+ "rules": []
383
+ },
384
+ "Checkbox": {
385
+ "appearances": {
386
+ "checked": "{appearances.Checkbox.checked}",
387
+ "error": "{appearances.Checkbox.error}",
388
+ "focus": "{appearances.Checkbox.focus}",
389
+ "hover": "{appearances.Checkbox.hover}",
390
+ "inactive": "{appearances.Checkbox.inactive}"
391
+ },
392
+ "tokens": {
393
+ "containerBackgroundColor": "{palette.color.transparent}",
394
+ "feedbackMarginBottom": "{system.size.zero}",
395
+ "feedbackMarginTop": "{system.size.zero}",
396
+ "feedbackPosition": "{system.position.bottom}",
397
+ "icon": "{palette.icon.Check}",
398
+ "iconBackgroundColor": "{palette.color.white}",
399
+ "iconColor": "{palette.color.mosque}",
400
+ "iconSize": "{palette.size.size16}",
401
+ "inputBackgroundColor": "{palette.color.white}",
402
+ "inputBorderColor": "{palette.color.mosque}",
403
+ "inputBorderRadius": "{palette.radius.none}",
404
+ "inputBorderWidth": "{palette.border.border2}",
405
+ "inputHeight": "{palette.size.size20}",
406
+ "inputOutlineColor": "{system.color.none}",
407
+ "inputOutlineWidth": "{palette.border.none}",
408
+ "inputShadow": "{system.shadow.none}",
409
+ "inputWidth": "{palette.size.size20}",
410
+ "labelColor": "{palette.color.black}",
411
+ "labelFontName": "{palette.fontName.StagSans}",
412
+ "labelFontWeight": "{palette.fontWeight.weight400}",
413
+ "labelFontSize": "{palette.fontSize.size16}",
414
+ "labelLineHeight": "{palette.lineHeight.multiply150}",
415
+ "labelMarginLeft": "{palette.size.size8}"
416
+ },
417
+ "rules": [
418
+ {
419
+ "if": {
420
+ "focus": true
421
+ },
422
+ "tokens": {
423
+ "inputOutlineColor": "{palette.color.silver}",
424
+ "inputOutlineWidth": "{palette.border.border2}"
425
+ }
426
+ }
427
+ ]
428
+ },
429
+ "CheckboxGroup": {
430
+ "appearances": {},
431
+ "tokens": {
432
+ "space": "{system.integer.2}",
433
+ "fieldSpace": "{system.integer.2}"
434
+ },
435
+ "rules": []
436
+ },
437
+ "ChevronLink": {
438
+ "appearances": {},
439
+ "tokens": {
440
+ "leftIcon": "{palette.icon.ChevronLeft}",
441
+ "rightIcon": "{palette.icon.ChevronRight}",
442
+ "iconDisplace": "{palette.size.size4}",
443
+ "iconSize": "{palette.size.size24}",
444
+ "iconSpace": "{system.integer.0}"
445
+ },
446
+ "rules": []
447
+ },
448
+ "Divider": {
449
+ "appearances": {},
450
+ "tokens": {
451
+ "width": "{palette.border.border1}",
452
+ "color": "{palette.color.silver}"
453
+ },
454
+ "rules": []
455
+ },
456
+ "ExpandCollapse": {
457
+ "appearances": {},
458
+ "tokens": {
459
+ "borderColor": "{palette.color.transparent}",
460
+ "borderWidth": "{palette.border.none}",
461
+ "borderStyle": "{system.borderStyle.solid}"
462
+ },
463
+ "rules": []
464
+ },
465
+ "ExpandCollapseControl": {
466
+ "appearances": {
467
+ "expanded": "{appearances.ExpandCollapseControl.expanded}"
468
+ },
469
+ "tokens": {
470
+ "icon": "{palette.icon.ChevronUp}",
471
+ "iconColor": "{palette.color.mosque}",
472
+ "iconSize": "{palette.size.size16}",
473
+ "iconGap": "{palette.size.size16}",
474
+ "iconPosition": "{system.position.left}",
475
+ "verticalAlign": "{system.verticalAlign.middle}",
476
+ "justifyContent": "{system.flexJustifyContent.flexStart}",
477
+ "paddingLeft": "{palette.size.size16}",
478
+ "paddingRight": "{palette.size.size16}",
479
+ "paddingTop": "{palette.size.size16}",
480
+ "paddingBottom": "{palette.size.size16}",
481
+ "borderWidth": "{system.border.zero}",
482
+ "borderColor": "{palette.color.transparent}",
483
+ "backgroundColor": "{palette.color.transparent}"
484
+ },
485
+ "rules": [
486
+ {
487
+ "if": {
488
+ "expanded": true
489
+ },
490
+ "tokens": {
491
+ "icon": "{palette.icon.ChevronDown}"
492
+ }
493
+ }
494
+ ]
495
+ },
496
+ "ExpandCollapsePanel": {
497
+ "appearances": {},
498
+ "tokens": {
499
+ "expandDuration": "{palette.duration.duration300}",
500
+ "collapseDuration": "{palette.duration.duration250}",
501
+ "contentPaddingLeft": "{palette.size.size48}",
502
+ "contentPaddingRight": "{palette.size.size16}",
503
+ "contentPaddingTop": "{palette.size.size0}",
504
+ "contentPaddingBottom": "{palette.size.size16}"
505
+ },
506
+ "rules": []
507
+ },
508
+ "Feedback": {
509
+ "appearances": {
510
+ "validation": "{appearances.Feedback.validation}",
511
+ "icon": {
512
+ "values": [true],
513
+ "type": "variant"
514
+ }
515
+ },
516
+ "tokens": {
517
+ "backgroundColor": "{palette.color.gallery}",
518
+ "borderColor": "{palette.color.silver}",
519
+ "borderWidth": "{palette.border.border1}",
520
+ "borderRadius": "{palette.radius.radius4}",
521
+ "paddingTop": "{palette.size.size10}",
522
+ "paddingBottom": "{palette.size.size10}",
523
+ "paddingLeft": "{palette.size.size16}",
524
+ "paddingRight": "{palette.size.size16}",
525
+ "space": "{system.integer.2}",
526
+ "color": "{palette.color.mortar}",
527
+ "fontName": "{palette.fontName.StagSans}",
528
+ "fontWeight": "{palette.fontWeight.weight400}",
529
+ "lineHeight": "{palette.lineHeight.multiply150}",
530
+ "titleFontSize": "{palette.fontSize.size16}",
531
+ "contentFontSize": "{palette.fontSize.size14}",
532
+ "icon": "{system.icon.none}",
533
+ "iconSize": "{palette.fontSize.size24}",
534
+ "iconColor": "{palette.color.transparent}",
535
+ "iconGap": "{palette.size.size8}"
536
+ },
537
+ "rules": [
538
+ {
539
+ "if": {
540
+ "validation": "success"
541
+ },
542
+ "tokens": {
543
+ "backgroundColor": "{palette.color.mintTulip}",
544
+ "borderColor": "{palette.color.mintTulip}",
545
+ "color": "{palette.color.bilbao}"
546
+ }
547
+ },
548
+ {
549
+ "if": {
550
+ "validation": "error"
551
+ },
552
+ "tokens": {
553
+ "backgroundColor": "{palette.color.carouselPink}",
554
+ "borderColor": "{palette.color.carouselPink}",
555
+ "color": "{palette.color.trinidad}"
556
+ }
557
+ },
558
+ {
559
+ "if": {
560
+ "validation": "success",
561
+ "icon": true
562
+ },
563
+ "tokens": {
564
+ "icon": "{palette.icon.CheckCircledFilled}",
565
+ "iconColor": "{palette.color.bilbao}"
566
+ }
567
+ },
568
+ {
569
+ "if": {
570
+ "validation": "error",
571
+ "icon": true
572
+ },
573
+ "tokens": {
574
+ "icon": "{palette.icon.ExclamationTriangle}",
575
+ "iconColor": "{palette.color.trinidad}"
576
+ }
577
+ }
578
+ ]
579
+ },
580
+ "HorizontalScrollButton": {
581
+ "appearances": {
582
+ "hover": "{appearances.HorizontalScrollButton.hover}",
583
+ "focus": "{appearances.HorizontalScrollButton.focus}",
584
+ "pressed": "{appearances.HorizontalScrollButton.pressed}"
585
+ },
586
+ "tokens": {
587
+ "borderRadius": "{palette.radius.pill32}",
588
+ "backgroundColor": "{palette.color.white}",
589
+ "borderColor": "{palette.color.silver}",
590
+ "borderWidth": "{palette.border.border1}",
591
+ "padding": "{palette.size.size8}",
592
+ "shadow": "{system.shadow.none}",
593
+ "iconSize": "{palette.size.size16}",
594
+ "iconColor": "{palette.color.mosque}"
595
+ },
596
+ "rules": [
597
+ {
598
+ "if": {
599
+ "hover": true
600
+ },
601
+ "tokens": {
602
+ "borderColor": "{palette.color.darkMosque}",
603
+ "iconColor": "{palette.color.darkMosque}",
604
+ "backgroundColor": "{palette.color.texas}"
605
+ }
606
+ },
607
+ {
608
+ "if": {
609
+ "pressed": true
610
+ },
611
+ "tokens": {
612
+ "backgroundColor": "{palette.color.mosque}",
613
+ "borderColor": "{palette.color.mosque}",
614
+ "iconColor": "{palette.color.white}"
615
+ }
616
+ }
617
+ ]
618
+ },
619
+ "Icon": {
620
+ "appearances": {
621
+ "size": {
622
+ "values": ["small"],
623
+ "type": "variant"
624
+ },
625
+ "colour": {
626
+ "values": ["primary", "secondary", "black", "white"],
627
+ "type": "variant"
628
+ },
629
+ "status": {
630
+ "description": "Uses icon colour to communicate meaning to the user",
631
+ "values": ["success", "error"],
632
+ "type": "variant"
633
+ }
634
+ },
635
+ "tokens": {
636
+ "size": "{palette.size.size24}",
637
+ "color": "{palette.color.dove}",
638
+ "translateX": "{system.size.zero}",
639
+ "translateY": "{system.size.zero}",
640
+ "scale": "{system.integer.1}"
641
+ },
642
+ "rules": [
643
+ {
644
+ "if": {
645
+ "size": "small"
646
+ },
647
+ "tokens": {
648
+ "size": "{palette.size.size20}"
649
+ }
650
+ },
651
+ {
652
+ "if": {
653
+ "colour": "primary"
654
+ },
655
+ "tokens": {
656
+ "color": "{palette.color.black}"
657
+ }
658
+ },
659
+ {
660
+ "if": {
661
+ "colour": "secondary"
662
+ },
663
+ "tokens": {
664
+ "color": "{palette.color.blue}"
665
+ }
666
+ },
667
+ {
668
+ "if": {
669
+ "colour": "black"
670
+ },
671
+ "tokens": {
672
+ "color": "{palette.color.black}"
673
+ }
674
+ },
675
+ {
676
+ "if": {
677
+ "colour": "white"
678
+ },
679
+ "tokens": {
680
+ "color": "{palette.color.white}"
681
+ }
682
+ },
683
+ {
684
+ "if": {
685
+ "status": "success"
686
+ },
687
+ "tokens": {
688
+ "color": "{palette.color.mosque}"
689
+ }
690
+ },
691
+ {
692
+ "if": {
693
+ "status": "error"
694
+ },
695
+ "tokens": {
696
+ "color": "{palette.color.amaranth}"
697
+ }
698
+ }
699
+ ]
700
+ },
701
+ "IconButton": {
702
+ "appearances": {
703
+ "hover": "{appearances.Button.hover}",
704
+ "focus": "{appearances.Button.focus}",
705
+ "pressed": "{appearances.Button.pressed}",
706
+ "inactive": "{appearances.Button.inactive}"
707
+ },
708
+ "tokens": {
709
+ "backgroundColor": "{system.color.transparent}",
710
+ "outerBorderWidth": "{system.border.zero}",
711
+ "outerBorderColor": "{system.color.transparent}",
712
+ "outerBorderGap": "{system.size.zero}",
713
+ "shadow": "{system.shadow.none}",
714
+ "padding": "{palette.size.size4}",
715
+ "borderRadius": "{system.radius.round}",
716
+ "borderWidth": "{palette.border.border1}",
717
+ "borderColor": "{palette.color.mosque}",
718
+ "iconColor": "{palette.color.mosque}",
719
+ "iconSize": "{palette.size.size24}",
720
+ "iconScale": "{system.iconScale.scale1}",
721
+ "iconTranslateX": "{system.size.zero}",
722
+ "iconTranslateY": "{system.size.zero}"
723
+ },
724
+ "rules": []
725
+ },
726
+ "InputLabel": {
727
+ "appearances": {},
728
+ "tokens": {
729
+ "gap": "{palette.size.size8}",
730
+ "color": "{palette.color.dove}",
731
+ "fontName": "{palette.fontName.StagSans}",
732
+ "fontWeight": "{palette.fontWeight.weight500}",
733
+ "fontSize": "{palette.fontSize.size16}",
734
+ "lineHeight": "{palette.lineHeight.multiply140}",
735
+ "hintColor": "{palette.color.dove}",
736
+ "hintFontName": "{palette.fontName.StagSans}",
737
+ "hintFontWeight": "{palette.fontWeight.weight400}",
738
+ "hintFontSize": "{palette.fontSize.size14}",
739
+ "hintLineHeight": "{palette.lineHeight.multiply140}"
740
+ },
741
+ "rules": []
742
+ },
743
+ "InputSupports": {
744
+ "appearances": {},
745
+ "tokens": {
746
+ "space": "{system.integer.1}"
747
+ },
748
+ "rules": []
749
+ },
750
+ "Link": {
751
+ "appearances": {
752
+ "rank": {
753
+ "description": "Prominence of the link.",
754
+ "values": ["secondary"],
755
+ "type": "variant"
756
+ },
757
+ "iconPosition": "{appearances.Link.iconPosition}",
758
+ "hover": "{appearances.Link.hover}"
759
+ },
760
+ "tokens": {
761
+ "color": "{palette.color.mosque}",
762
+ "textLine": "{system.textLine.underline}",
763
+ "textLineStyle": "{system.textLineStyle.solid}",
764
+ "outerBorderColor": "{palette.color.transparent}",
765
+ "outerBorderWidth": "{palette.border.none}",
766
+ "outerBorderGap": "{palette.border.none}",
767
+ "borderRadius": "{palette.radius.radius4}",
768
+ "outerBorderOutline": "{system.borderStyle.none}",
769
+ "blockFontSize": "{palette.fontSize.size16}",
770
+ "blockLineHeight": "{palette.lineHeight.multiply150}",
771
+ "blockFontWeight": "{palette.fontWeight.weight600}",
772
+ "blockFontName": "{palette.fontName.StagSans}",
773
+ "alignSelf": "{system.flexAlign.flexStart}",
774
+ "icon": "{system.icon.none}",
775
+ "iconSize": "{palette.fontSize.size24}",
776
+ "iconSpace": "{system.integer.1}",
777
+ "iconTranslateX": "{system.size.zero}",
778
+ "iconTranslateY": "{system.size.zero}"
779
+ },
780
+ "rules": [
781
+ {
782
+ "if": {
783
+ "iconPosition": "left"
784
+ },
785
+ "tokens": {
786
+ "iconSpace": "{system.integer.2}"
787
+ }
788
+ },
789
+ {
790
+ "if": {
791
+ "hover": true
792
+ },
793
+ "tokens": {
794
+ "color": "{palette.color.darkMosque}",
795
+ "textLine": "{system.textLine.none}"
796
+ }
797
+ },
798
+ {
799
+ "if": {
800
+ "rank": "secondary"
801
+ },
802
+ "tokens": {
803
+ "color": "{palette.color.blue}"
804
+ }
805
+ },
806
+ {
807
+ "if": {
808
+ "rank": "secondary",
809
+ "hover": true
810
+ },
811
+ "tokens": {
812
+ "color": "{palette.color.darkBlue}"
813
+ }
814
+ }
815
+ ]
816
+ },
817
+ "List": {
818
+ "appearances": {
819
+ "size": {
820
+ "description": "Text sizes for block links; similar but not always identical to Typography sizes.",
821
+ "values": ["large", "small"],
822
+ "type": "variant"
823
+ },
824
+ "compact": {
825
+ "description": "Reduces line height on some body text styles. For data-rich content, not for flow content",
826
+ "values": [true],
827
+ "type": "variant"
828
+ }
829
+ },
830
+ "tokens": {
831
+ "itemFontSize": "{palette.fontSize.size16}",
832
+ "itemLineHeight": "{palette.lineHeight.multiply130}",
833
+ "itemFontName": "{palette.fontName.StagSans}",
834
+ "itemFontWeight": "{palette.fontWeight.weight600}",
835
+ "interItemMargin": "{palette.size.size8}",
836
+ "interItemMarginWithDivider": "{palette.size.size16}",
837
+ "dividerColor": "{palette.color.silver}",
838
+ "dividerSize": "{palette.border.border1}",
839
+ "itemBulletContainerWidth": "{palette.size.size16}",
840
+ "itemBulletContainerAlign": "{system.textAlign.center}",
841
+ "itemBulletWidth": "{palette.size.size4}",
842
+ "itemBulletHeight": "{palette.size.size4}",
843
+ "itemBulletColor": "{palette.color.flirt}",
844
+ "itemIconSize": "{palette.size.size16}",
845
+ "itemIconColor": "{palette.color.flirt}",
846
+ "listGutter": "{palette.size.size10}"
847
+ },
848
+ "rules": [
849
+ {
850
+ "if": {
851
+ "size": "large"
852
+ },
853
+ "tokens": {
854
+ "itemFontSize": "{palette.fontSize.size20}",
855
+ "itemLineHeight": "{palette.lineHeight.multiply140}",
856
+ "listGutter": "{palette.size.size16}"
857
+ }
858
+ },
859
+ {
860
+ "if": {
861
+ "size": "small"
862
+ },
863
+ "tokens": {
864
+ "itemFontSize": "{palette.fontSize.size14}",
865
+ "listGutter": "{palette.size.size10}"
866
+ }
867
+ },
868
+ {
869
+ "if": {
870
+ "compact": true
871
+ },
872
+ "tokens": {
873
+ "itemLineHeight": "{palette.lineHeight.multiply120}"
874
+ }
875
+ },
876
+ {
877
+ "if": {
878
+ "compact": true,
879
+ "size": "small"
880
+ },
881
+ "tokens": {
882
+ "itemLineHeight": "{palette.lineHeight.multiply110}"
883
+ }
884
+ },
885
+ {
886
+ "if": {
887
+ "compact": true,
888
+ "size": "large"
889
+ },
890
+ "tokens": {
891
+ "itemLineHeight": "{palette.lineHeight.multiply130}"
892
+ }
893
+ }
894
+ ]
895
+ },
896
+ "Modal": {
897
+ "appearances": {
898
+ "maxWidth": "{appearances.Modal.maxWidth}",
899
+ "viewport": "{appearances.system.viewport}"
900
+ },
901
+ "tokens": {
902
+ "backdropColor": "{palette.color.black}",
903
+ "backdropOpacity": "{palette.opacity.opacity5}",
904
+ "height": "{system.size.none}",
905
+ "maxWidth": "{system.size.full}",
906
+ "containerPaddingLeft": "{system.size.zero}",
907
+ "containerPaddingRight": "{system.size.zero}",
908
+ "containerPaddingTop": "{system.size.zero}",
909
+ "containerPaddingBottom": "{system.size.zero}",
910
+ "backgroundColor": "{palette.color.white}",
911
+ "borderRadius": "{palette.radius.radius4}",
912
+ "shadow": "{palette.shadow.none}",
913
+ "paddingLeft": "{palette.size.size16}",
914
+ "paddingRight": "{palette.size.size16}",
915
+ "paddingTop": "{palette.size.size16}",
916
+ "paddingBottom": "{palette.size.size16}",
917
+ "closeIcon": "{palette.icon.Times}",
918
+ "closeIconSize": "{palette.size.size24}",
919
+ "closeIconColor": "{palette.color.black}"
920
+ },
921
+ "rules": [
922
+ {
923
+ "if": {
924
+ "viewport": ["xs", "sm"]
925
+ },
926
+ "tokens": {
927
+ "height": "{system.size.full}"
928
+ }
929
+ },
930
+ {
931
+ "if": {
932
+ "viewport": ["md", "lg", "xl"]
933
+ },
934
+ "tokens": {
935
+ "maxWidth": "{system.integer.576}",
936
+ "containerPaddingTop": "{palette.size.size32}",
937
+ "containerPaddingBottom": "{palette.size.size32}"
938
+ }
939
+ },
940
+ {
941
+ "if": {
942
+ "viewport": ["md", "lg", "xl"],
943
+ "maxWidth": true
944
+ },
945
+ "tokens": {
946
+ "maxWidth": "{system.size.twoThirds}",
947
+ "containerPaddingLeft": "{palette.size.size16}",
948
+ "containerPaddingRight": "{palette.size.size16}"
949
+ }
950
+ }
951
+ ]
952
+ },
953
+ "Notification": {
954
+ "appearances": {
955
+ "system": "{appearances.Notification.system}",
956
+ "style": "{appearances.Notification.style}"
957
+ },
958
+ "tokens": {
959
+ "backgroundColor": "{palette.color.gallery}",
960
+ "borderBottomWidth": "{palette.border.border1}",
961
+ "borderTopWidth": "{palette.border.border1}",
962
+ "borderLeftWidth": "{palette.border.border1}",
963
+ "borderRightWidth": "{palette.border.border1}",
964
+ "borderColor": "{palette.color.mortar}",
965
+ "borderRadius": "{palette.radius.radius4}",
966
+ "paddingTop": "{palette.size.size12}",
967
+ "paddingBottom": "{palette.size.size12}",
968
+ "paddingLeft": "{palette.size.size12}",
969
+ "paddingRight": "{palette.size.size12}",
970
+ "color": "{palette.color.dove}",
971
+ "fontSize": "{palette.fontSize.size16}",
972
+ "lineHeight": "{palette.lineHeight.multiply150}",
973
+ "fontName": "{palette.fontName.StagSans}",
974
+ "fontWeight": "{palette.fontWeight.weight400}",
975
+ "icon": "{system.icon.none}",
976
+ "iconColor": "{system.color.none}",
977
+ "iconSize": "{palette.size.size24}",
978
+ "iconGap": "{palette.size.size16}",
979
+ "dismissIcon": "{palette.icon.Times}",
980
+ "dismissIconColor": "{palette.color.dove}",
981
+ "dismissIconSize": "{palette.size.size16}",
982
+ "dismissButtonGap": "{palette.size.size16}"
983
+ },
984
+ "rules": [
985
+ {
986
+ "if": {
987
+ "system": true
988
+ },
989
+ "tokens": {
990
+ "borderTopWidth": "{system.border.zero}",
991
+ "borderLeftWidth": "{system.border.zero}",
992
+ "borderRightWidth": "{system.border.zero}",
993
+ "borderRadius": "{system.radius.zero}",
994
+ "paddingTop": "{palette.size.size16}",
995
+ "paddingBottom": "{palette.size.size16}",
996
+ "paddingLeft": "{palette.size.size16}",
997
+ "paddingRight": "{palette.size.size16}",
998
+ "iconGap": "{palette.size.size12}"
999
+ }
1000
+ },
1001
+ {
1002
+ "if": {
1003
+ "style": "success"
1004
+ },
1005
+ "tokens": {
1006
+ "backgroundColor": "{palette.color.mintTulip}",
1007
+ "borderColor": "{palette.color.bilbao}",
1008
+ "icon": "{palette.icon.CheckCircledFilled}",
1009
+ "iconColor": "{palette.color.bilbao}"
1010
+ }
1011
+ },
1012
+ {
1013
+ "if": {
1014
+ "style": "warning"
1015
+ },
1016
+ "tokens": {
1017
+ "backgroundColor": "{palette.color.beeswax}",
1018
+ "borderColor": "{palette.color.seaBuckthorn}",
1019
+ "icon": "{palette.icon.ExclamationTriangle}",
1020
+ "iconColor": "{palette.color.seaBuckthorn}"
1021
+ }
1022
+ },
1023
+ {
1024
+ "if": {
1025
+ "style": "error"
1026
+ },
1027
+ "tokens": {
1028
+ "backgroundColor": "{palette.color.carouselPink}",
1029
+ "borderColor": "{palette.color.trinidad}",
1030
+ "icon": "{palette.icon.ExclamationOctagon}",
1031
+ "iconColor": "{palette.color.trinidad}"
1032
+ }
1033
+ }
1034
+ ]
1035
+ },
1036
+ "Pagination": {
1037
+ "appearances": {
1038
+ "viewport": "{appearances.system.viewport}"
1039
+ },
1040
+ "tokens": {
1041
+ "gap": "{system.integer.2}",
1042
+ "truncateAbove": "{system.integer.4}",
1043
+ "color": "{palette.color.dove}",
1044
+ "fontName": "{palette.fontName.StagSans}",
1045
+ "fontWeight": "{palette.fontWeight.weight400}",
1046
+ "fontSize": "{palette.fontSize.size16}",
1047
+ "lineHeight": "{palette.lineHeight.multiply150}"
1048
+ },
1049
+ "rules": [
1050
+ {
1051
+ "if": {
1052
+ "viewport": ["md", "lg", "xl"]
1053
+ },
1054
+ "tokens": {
1055
+ "truncateAbove": "{system.integer.6}"
1056
+ }
1057
+ }
1058
+ ]
1059
+ },
1060
+ "PaginationPageButton": {
1061
+ "appearances": {
1062
+ "focus": "{appearances.PaginationPageButton.focus}",
1063
+ "hover": "{appearances.PaginationPageButton.hover}",
1064
+ "pressed": "{appearances.PaginationPageButton.pressed}",
1065
+ "selected": "{appearances.PaginationPageButton.selected}"
1066
+ },
1067
+ "tokens": {
1068
+ "borderColor": "{palette.color.transparent}",
1069
+ "borderWidth": "{palette.border.border1}",
1070
+ "borderRadius": "{palette.radius.pill32}",
1071
+ "backgroundColor": "{palette.color.transparent}",
1072
+ "paddingLeft": "{palette.size.size8}",
1073
+ "paddingRight": "{palette.size.size8}",
1074
+ "paddingTop": "{palette.size.size4}",
1075
+ "paddingBottom": "{palette.size.size4}",
1076
+ "width": "{palette.size.size32}",
1077
+ "outerBorderColor": "{palette.color.transparent}",
1078
+ "outerBorderWidth": "{palette.border.border4}",
1079
+ "outerBorderGap": "{palette.border.border4}",
1080
+ "color": "{palette.color.dove}",
1081
+ "fontName": "{palette.fontName.StagSans}",
1082
+ "fontWeight": "{palette.fontWeight.weight400}",
1083
+ "fontSize": "{palette.fontSize.size16}",
1084
+ "lineHeight": "{palette.lineHeight.multiply150}",
1085
+ "textLine": "{system.textLine.underline}",
1086
+ "textAlign": "{system.flexJustifyContent.center}"
1087
+ },
1088
+ "rules": [
1089
+ {
1090
+ "if": {
1091
+ "hover": true
1092
+ },
1093
+ "tokens": {
1094
+ "borderColor": "{palette.color.dove}",
1095
+ "textLine": "{system.textLine.none}"
1096
+ }
1097
+ },
1098
+ {
1099
+ "if": {
1100
+ "focus": true
1101
+ },
1102
+ "tokens": {
1103
+ "borderColor": "{palette.color.dove}",
1104
+ "borderWidth": "{palette.border.border2}"
1105
+ }
1106
+ },
1107
+ {
1108
+ "if": {
1109
+ "selected": true
1110
+ },
1111
+ "tokens": {
1112
+ "backgroundColor": "{palette.color.dove}",
1113
+ "color": "{palette.color.white}",
1114
+ "textLine": "{system.textLine.none}"
1115
+ }
1116
+ },
1117
+ {
1118
+ "if": {
1119
+ "pressed": true
1120
+ },
1121
+ "tokens": {
1122
+ "backgroundColor": "{palette.color.dove}",
1123
+ "color": "{palette.color.white}"
1124
+ }
1125
+ }
1126
+ ]
1127
+ },
1128
+ "PaginationSideButton": {
1129
+ "appearances": {
1130
+ "viewport": "{appearances.system.viewport}",
1131
+ "focus": "{appearances.PaginationSideButton.focus}",
1132
+ "hover": "{appearances.PaginationSideButton.hover}",
1133
+ "pressed": "{appearances.PaginationSideButton.pressed}",
1134
+ "selected": "{appearances.PaginationSideButton.selected}",
1135
+ "direction": "{appearances.PaginationSideButton.direction}"
1136
+ },
1137
+ "tokens": {
1138
+ "borderColor": "{palette.color.transparent}",
1139
+ "borderWidth": "{palette.border.border1}",
1140
+ "borderRadius": "{palette.radius.radius4}",
1141
+ "backgroundColor": "{palette.color.transparent}",
1142
+ "paddingLeft": "{palette.size.size8}",
1143
+ "paddingRight": "{palette.size.size8}",
1144
+ "paddingTop": "{palette.size.size10}",
1145
+ "paddingBottom": "{palette.size.size10}",
1146
+ "outerBorderColor": "{system.color.transparent}",
1147
+ "color": "{palette.color.dove}",
1148
+ "fontName": "{palette.fontName.StagSans}",
1149
+ "fontWeight": "{palette.fontWeight.weight400}",
1150
+ "fontSize": "{palette.fontSize.size16}",
1151
+ "lineHeight": "{palette.lineHeight.multiply150}",
1152
+ "textLine": "{system.textLine.underline}",
1153
+ "icon": "{system.icon.none}",
1154
+ "iconSize": "{palette.fontSize.size14}",
1155
+ "iconDisplace": "{palette.size.size0}",
1156
+ "width": "{system.size.none}",
1157
+ "textAlign": "{system.flexJustifyContent.center}"
1158
+ },
1159
+ "rules": [
1160
+ {
1161
+ "if": {
1162
+ "viewport": ["xs", "sm"]
1163
+ },
1164
+ "tokens": {
1165
+ "borderRadius": "{palette.radius.pill32}",
1166
+ "paddingTop": "{palette.size.size4}",
1167
+ "paddingBottom": "{palette.size.size4}",
1168
+ "width": "{palette.size.size32}"
1169
+ }
1170
+ },
1171
+ {
1172
+ "if": {
1173
+ "hover": true
1174
+ },
1175
+ "tokens": {
1176
+ "borderColor": "{palette.color.dove}",
1177
+ "textLine": "{system.textLine.none}",
1178
+ "iconDisplace": "{palette.size.size4}"
1179
+ }
1180
+ },
1181
+ {
1182
+ "if": {
1183
+ "focus": true
1184
+ },
1185
+ "tokens": {
1186
+ "borderColor": "{palette.color.dove}",
1187
+ "borderWidth": "{palette.border.border3}"
1188
+ }
1189
+ },
1190
+ {
1191
+ "if": {
1192
+ "selected": true
1193
+ },
1194
+ "tokens": {
1195
+ "backgroundColor": "{palette.color.dove}",
1196
+ "color": "{palette.color.white}",
1197
+ "textLine": "{system.textLine.none}"
1198
+ }
1199
+ },
1200
+ {
1201
+ "if": {
1202
+ "pressed": true
1203
+ },
1204
+ "tokens": {
1205
+ "backgroundColor": "{palette.color.dove}",
1206
+ "color": "{palette.color.white}"
1207
+ }
1208
+ },
1209
+ {
1210
+ "if": {
1211
+ "direction": "previous"
1212
+ },
1213
+ "tokens": {
1214
+ "icon": "{palette.icon.ChevronLeft}"
1215
+ }
1216
+ },
1217
+ {
1218
+ "if": {
1219
+ "direction": "next"
1220
+ },
1221
+ "tokens": {
1222
+ "icon": "{palette.icon.ChevronRight}"
1223
+ }
1224
+ }
1225
+ ]
1226
+ },
1227
+ "Progress": {
1228
+ "appearances": {
1229
+ "size": {
1230
+ "values": ["mini"],
1231
+ "type": "variant"
1232
+ }
1233
+ },
1234
+ "tokens": {
1235
+ "backgroundColor": "{palette.color.white}",
1236
+ "borderRadius": "{palette.radius.radius12}",
1237
+ "borderWidth": "{palette.border.border1}",
1238
+ "borderColor": "{palette.color.mosque}",
1239
+ "height": "{palette.size.size16}"
1240
+ },
1241
+ "rules": [
1242
+ {
1243
+ "if": {
1244
+ "size": "mini"
1245
+ },
1246
+ "tokens": {
1247
+ "height": "{palette.size.size8}"
1248
+ }
1249
+ }
1250
+ ]
1251
+ },
1252
+ "ProgressBar": {
1253
+ "appearances": {
1254
+ "inactive": "{appearances.ProgressBar.inactive}",
1255
+ "negative": {
1256
+ "values": [true],
1257
+ "type": "variant"
1258
+ }
1259
+ },
1260
+ "tokens": {
1261
+ "backgroundColor": "{palette.color.mosque}",
1262
+ "borderRadius": "{palette.radius.radius12}",
1263
+ "gradient": "{system.gradient.none}",
1264
+ "outlineColor": "{palette.color.darkMosque}",
1265
+ "outlineWidth": "{palette.border.border1}"
1266
+ },
1267
+ "rules": [
1268
+ {
1269
+ "if": {
1270
+ "inactive": true
1271
+ },
1272
+ "tokens": {
1273
+ "backgroundColor": "{palette.color.dove}",
1274
+ "outlineColor": "{palette.color.dove}"
1275
+ }
1276
+ },
1277
+ {
1278
+ "if": {
1279
+ "negative": true
1280
+ },
1281
+ "tokens": {
1282
+ "backgroundColor": "{palette.color.wellRead}",
1283
+ "outlineColor": "{palette.color.wellRead}"
1284
+ }
1285
+ }
1286
+ ]
1287
+ },
1288
+ "Radio": {
1289
+ "appearances": {
1290
+ "checked": "{appearances.Radio.checked}",
1291
+ "error": "{appearances.Radio.error}",
1292
+ "focus": "{appearances.Radio.focus}",
1293
+ "hover": "{appearances.Radio.hover}",
1294
+ "inactive": "{appearances.Radio.inactive}"
1295
+ },
1296
+ "tokens": {
1297
+ "checkedBackgroundColor": "{palette.color.mosque}",
1298
+ "checkedSize": "{palette.size.size12}",
1299
+ "containerBackgroundColor": "{palette.color.transparent}",
1300
+ "containerBorderRadius": "{palette.radius.none}",
1301
+ "containerOpacity": "{system.opacity.opaque}",
1302
+ "containerPaddingBottom": "{palette.size.size0}",
1303
+ "containerPaddingLeft": "{palette.size.size0}",
1304
+ "containerPaddingRight": "{palette.size.size0}",
1305
+ "containerPaddingTop": "{palette.size.size0}",
1306
+ "containerShadow": "{system.shadow.none}",
1307
+ "descriptionFontSize": "{palette.fontSize.size14}",
1308
+ "descriptionLineHeight": "{palette.lineHeight.multiply140}",
1309
+ "descriptionMarginLeft": "{system.size.none}",
1310
+ "inputBackgroundColor": "{palette.color.white}",
1311
+ "inputBorderColor": "{palette.color.mosque}",
1312
+ "inputBorderWidth": "{palette.border.border2}",
1313
+ "inputOutlineColor": "{palette.color.transparent}",
1314
+ "inputOutlineWidth": "{palette.border.none}",
1315
+ "inputSize": "{palette.size.size20}",
1316
+ "outerBorderWidth": "{system.border.zero}",
1317
+ "outerBorderColor": "{system.color.transparent}",
1318
+ "outerBorderGap": "{system.size.zero}",
1319
+ "labelColor": "{palette.color.black}",
1320
+ "labelFontName": "{palette.fontName.StagSans}",
1321
+ "labelFontWeight": "{palette.fontWeight.weight400}",
1322
+ "labelFontSize": "{palette.fontSize.size16}",
1323
+ "labelLineHeight": "{palette.lineHeight.multiply150}",
1324
+ "labelMarginLeft": "{palette.size.size8}"
1325
+ },
1326
+ "rules": [
1327
+ {
1328
+ "if": {
1329
+ "focus": true
1330
+ },
1331
+ "tokens": {
1332
+ "inputOutlineColor": "{palette.color.silver}",
1333
+ "inputOutlineWidth": "{palette.border.border2}"
1334
+ }
1335
+ }
1336
+ ]
1337
+ },
1338
+ "RadioCard": {
1339
+ "appearances": {
1340
+ "pressed": "{appearances.RadioCard.pressed}",
1341
+ "hover": "{appearances.RadioCard.hover}",
1342
+ "focus": "{appearances.RadioCard.focus}",
1343
+ "checked": "{appearances.RadioCard.checked}",
1344
+ "inactive": "{appearances.RadioCard.inactive}",
1345
+ "error": "{appearances.RadioCard.error}",
1346
+ "viewport": "{appearances.system.viewport}"
1347
+ },
1348
+ "tokens": {
1349
+ "outerBorderColor": "{system.color.transparent}",
1350
+ "outerBorderWidth": "{system.border.zero}",
1351
+ "outerBorderGap": "{system.size.zero}",
1352
+ "flex": "{system.integer.1}",
1353
+ "backgroundColor": "{palette.color.white}",
1354
+ "borderColor": "{palette.color.silver}",
1355
+ "borderRadius": "{palette.radius.radius4}",
1356
+ "borderWidth": "{palette.border.border1}",
1357
+ "paddingBottom": "{palette.size.size16}",
1358
+ "paddingLeft": "{palette.size.size10}",
1359
+ "paddingRight": "{palette.size.size16}",
1360
+ "paddingTop": "{palette.size.size16}",
1361
+ "minWidth": "{palette.size.size120}",
1362
+ "shadow": "{system.shadow.none}",
1363
+ "radioCheckedBackgroundColor": "{palette.color.mosque}",
1364
+ "radioCheckedSize": "{palette.size.size12}",
1365
+ "radioInputBackgroundColor": "{palette.color.white}",
1366
+ "radioInputBorderColor": "{palette.color.mosque}",
1367
+ "radioInputBorderWidth": "{palette.border.border2}",
1368
+ "radioInputOutlineColor": "{palette.color.transparent}",
1369
+ "radioInputOutlineWidth": "{palette.border.none}",
1370
+ "radioInputSize": "{palette.size.size20}",
1371
+ "radioOuterBorderColor": "{system.color.transparent}",
1372
+ "radioOuterBorderWidth": "{system.border.zero}",
1373
+ "radioOuterBorderGap": "{system.size.zero}",
1374
+ "fontSize": "{palette.fontSize.size20}",
1375
+ "lineHeight": "{palette.lineHeight.multiply140}",
1376
+ "color": "{palette.color.black}",
1377
+ "letterSpacing": "{system.letterSpacing.none}",
1378
+ "textTransform": "{system.textTransform.none}",
1379
+ "fontName": "{palette.fontName.StagSans}",
1380
+ "fontWeight": "{palette.fontWeight.weight700}",
1381
+ "radioSpace": "{system.integer.2}",
1382
+ "contentSpace": "{system.integer.2}"
1383
+ },
1384
+ "rules": [
1385
+ {
1386
+ "if": {
1387
+ "viewport": ["lg", "xl"]
1388
+ },
1389
+ "tokens": {
1390
+ "paddingBottom": "{palette.size.size24}",
1391
+ "paddingLeft": "{palette.size.size16}",
1392
+ "paddingRight": "{palette.size.size24}",
1393
+ "paddingTop": "{palette.size.size16}",
1394
+ "fontSize": "{palette.fontSize.size24}",
1395
+ "lineHeight": "{palette.lineHeight.multiply130}"
1396
+ }
1397
+ },
1398
+ {
1399
+ "if": {
1400
+ "hover": true
1401
+ },
1402
+ "tokens": {
1403
+ "borderColor": "{palette.color.dove}",
1404
+ "outerBorderColor": "{palette.color.gallery}",
1405
+ "outerBorderWidth": "{palette.border.border2}",
1406
+ "radioInputBorderColor": "{palette.color.darkMosque}"
1407
+ }
1408
+ },
1409
+ {
1410
+ "if": {
1411
+ "pressed": true
1412
+ },
1413
+ "description": "Pressed state matches hover state plus light grey background",
1414
+ "tokens": {
1415
+ "backgroundColor": "{palette.color.gallery}",
1416
+ "borderColor": "{palette.color.dove}",
1417
+ "outerBorderColor": "{palette.color.gallery}",
1418
+ "outerBorderWidth": "{palette.border.border2}",
1419
+ "radioInputBorderColor": "{palette.color.darkMosque}"
1420
+ }
1421
+ },
1422
+ {
1423
+ "if": {
1424
+ "focus": true
1425
+ },
1426
+ "tokens": {
1427
+ "outerBorderColor": "{palette.color.dove}",
1428
+ "outerBorderWidth": "{palette.border.border2}",
1429
+ "outerBorderGap": "{palette.size.size4}",
1430
+ "radioInputBorderColor": "{palette.color.darkMosque}"
1431
+ }
1432
+ },
1433
+ {
1434
+ "if": {
1435
+ "inactive": true
1436
+ },
1437
+ "tokens": {
1438
+ "backgroundColor": "{palette.color.gallery}",
1439
+ "borderColor": "{system.color.transparent}",
1440
+ "radioInputBorderColor": "{palette.color.silver}",
1441
+ "radioInputBackgroundColor": "{palette.color.gallery}",
1442
+ "color": "{palette.color.dove}"
1443
+ }
1444
+ },
1445
+ {
1446
+ "if": {
1447
+ "error": true
1448
+ },
1449
+ "tokens": {
1450
+ "borderColor": "{palette.color.trinidad}",
1451
+ "radioInputBorderColor": "{palette.color.trinidad}",
1452
+ "color": "{palette.color.trinidad}"
1453
+ }
1454
+ }
1455
+ ]
1456
+ },
1457
+ "RadioCardGroup": {
1458
+ "appearances": {
1459
+ "viewport": "{appearances.system.viewport}"
1460
+ },
1461
+ "tokens": {
1462
+ "direction": "{system.direction.row}",
1463
+ "fieldSpace": "{system.integer.2}",
1464
+ "space": "{system.integer.2}"
1465
+ },
1466
+ "rules": [
1467
+ {
1468
+ "if": {
1469
+ "viewport": ["lg", "xl"]
1470
+ },
1471
+ "tokens": {
1472
+ "direction": "{system.direction.column}"
1473
+ }
1474
+ }
1475
+ ]
1476
+ },
1477
+ "RadioGroup": {
1478
+ "appearances": {},
1479
+ "tokens": {
1480
+ "space": "{system.integer.2}",
1481
+ "fieldSpace": "{system.integer.2}"
1482
+ },
1483
+ "rules": []
1484
+ },
1485
+ "Search": {
1486
+ "appearances": {
1487
+ "hover": "{appearances.Search.hover}",
1488
+ "focus": "{appearances.Search.focus}",
1489
+ "inactive": "{appearances.Search.inactive}"
1490
+ },
1491
+ "tokens": {
1492
+ "backgroundColor": "{palette.color.white}",
1493
+ "color": "{palette.color.dove}",
1494
+ "borderWidth": "{palette.border.border1}",
1495
+ "borderColor": "{palette.color.silver}",
1496
+ "borderRadius": "{palette.radius.pill32}",
1497
+ "paddingTop": "{palette.size.size10}",
1498
+ "paddingBottom": "{palette.size.size10}",
1499
+ "paddingLeft": "{palette.size.size24}",
1500
+ "paddingRight": "{palette.size.size4}",
1501
+ "outerBackgroundColor": "{palette.color.transparent}",
1502
+ "outerBorderWidth": "{palette.border.border2}",
1503
+ "outerBorderColor": "{palette.color.transparent}",
1504
+ "outerBorderRadius": "{palette.radius.pill32}",
1505
+ "fontName": "{palette.fontName.StagSans}",
1506
+ "fontWeight": "{palette.fontWeight.weight400}",
1507
+ "fontSize": "{palette.fontSize.size16}",
1508
+ "lineHeight": "{palette.lineHeight.multiply150}",
1509
+ "placeholderColor": "{palette.color.dove}",
1510
+ "buttonsGap": "{system.integer.1}",
1511
+ "clearButtonIcon": "{palette.icon.Times}",
1512
+ "submitButtonIcon": "{palette.icon.Spyglass}"
1513
+ },
1514
+ "rules": [
1515
+ {
1516
+ "if": {
1517
+ "hover": true,
1518
+ "inactive": null
1519
+ },
1520
+ "tokens": {
1521
+ "outerBorderColor": "{palette.color.gallery}",
1522
+ "outerBackgroundColor": "{palette.color.gallery}"
1523
+ }
1524
+ },
1525
+ {
1526
+ "if": {
1527
+ "focus": true,
1528
+ "inactive": null
1529
+ },
1530
+ "tokens": {
1531
+ "borderColor": "{palette.color.mosque}",
1532
+ "borderWidth": "{palette.border.border2}"
1533
+ }
1534
+ },
1535
+ {
1536
+ "if": {
1537
+ "inactive": true
1538
+ },
1539
+ "tokens": {
1540
+ "backgroundColor": "{palette.color.gallery}",
1541
+ "borderColor": "{palette.color.gallery}"
1542
+ }
1543
+ }
1544
+ ]
1545
+ },
1546
+ "SearchButton": {
1547
+ "appearances": {
1548
+ "hover": "{appearances.SearchButton.hover}",
1549
+ "focus": "{appearances.SearchButton.focus}",
1550
+ "inactive": "{appearances.SearchButton.inactive}",
1551
+ "pressed": "{appearances.SearchButton.pressed}",
1552
+ "priority": {
1553
+ "description": "",
1554
+ "values": ["high"],
1555
+ "type": "variant"
1556
+ }
1557
+ },
1558
+ "tokens": {
1559
+ "borderColor": "{system.color.none}",
1560
+ "borderWidth": "{system.border.zero}",
1561
+ "borderRadius": "{palette.radius.pill32}",
1562
+ "backgroundColor": "{system.color.none}",
1563
+ "paddingLeft": "{palette.size.size8}",
1564
+ "paddingRight": "{palette.size.size8}",
1565
+ "paddingBottom": "{palette.size.size8}",
1566
+ "paddingTop": "{palette.size.size8}",
1567
+ "opacity": "{system.opacity.opaque}",
1568
+ "shadow": "{system.shadow.none}",
1569
+ "iconSize": "{palette.size.size20}",
1570
+ "iconColor": "{palette.color.dove}"
1571
+ },
1572
+ "rules": [
1573
+ {
1574
+ "if": {
1575
+ "priority": "high"
1576
+ },
1577
+ "tokens": {
1578
+ "backgroundColor": "{palette.color.mosque}",
1579
+ "iconColor": "{palette.color.white}"
1580
+ }
1581
+ },
1582
+ {
1583
+ "if": {
1584
+ "hover": true
1585
+ },
1586
+ "tokens": {
1587
+ "borderColor": "{palette.color.darkMosque}",
1588
+ "backgroundColor": "{palette.color.darkMosque}",
1589
+ "iconColor": "{palette.color.white}"
1590
+ }
1591
+ },
1592
+ {
1593
+ "if": {
1594
+ "focus": true
1595
+ },
1596
+ "tokens": {
1597
+ "borderColor": "{palette.color.mosque}",
1598
+ "borderWidth": "{palette.border.border2}",
1599
+ "iconColor": "{palette.color.mosque}",
1600
+ "backgroundColor": "{system.color.transparent}"
1601
+ }
1602
+ },
1603
+ {
1604
+ "if": {
1605
+ "pressed": true
1606
+ },
1607
+ "tokens": {
1608
+ "iconColor": "{palette.color.white}",
1609
+ "borderColor": "{system.color.none}",
1610
+ "backgroundColor": "{palette.color.mosque}",
1611
+ "borderWidth": "{system.border.zero}"
1612
+ }
1613
+ },
1614
+ {
1615
+ "if": {
1616
+ "inactive": true
1617
+ },
1618
+ "tokens": {
1619
+ "opacity": "{palette.opacity.opacity3}"
1620
+ }
1621
+ }
1622
+ ]
1623
+ },
1624
+ "Select": {
1625
+ "appearances": {
1626
+ "validation": "{appearances.Select.validation}",
1627
+ "hover": "{appearances.Select.hover}",
1628
+ "focus": "{appearances.Select.focus}",
1629
+ "inactive": "{appearances.Select.inactive}"
1630
+ },
1631
+ "tokens": {
1632
+ "backgroundColor": "{palette.color.white}",
1633
+ "color": "{palette.color.dove}",
1634
+ "borderWidth": "{palette.border.border1}",
1635
+ "borderColor": "{palette.color.silver}",
1636
+ "borderRadius": "{palette.radius.radius4}",
1637
+ "paddingTop": "{palette.size.size10}",
1638
+ "paddingBottom": "{palette.size.size10}",
1639
+ "paddingLeft": "{palette.size.size16}",
1640
+ "paddingRight": "{palette.size.size16}",
1641
+ "height": "{palette.size.size48}",
1642
+ "outerBackgroundColor": "{palette.color.transparent}",
1643
+ "outerBorderWidth": "{palette.border.border2}",
1644
+ "outerBorderColor": "{palette.color.transparent}",
1645
+ "fontName": "{palette.fontName.StagSans}",
1646
+ "fontWeight": "{palette.fontWeight.weight400}",
1647
+ "fontSize": "{palette.fontSize.size16}",
1648
+ "icon": "{palette.icon.ChevronDown}",
1649
+ "iconSize": "{palette.fontSize.size24}",
1650
+ "iconColor": "{palette.color.dove}",
1651
+ "validationIcon": "{system.icon.none}",
1652
+ "validationIconSize": "{palette.fontSize.size24}",
1653
+ "validationIconColor": "{palette.color.transparent}"
1654
+ },
1655
+ "rules": [
1656
+ {
1657
+ "if": {
1658
+ "hover": true,
1659
+ "inactive": null
1660
+ },
1661
+ "tokens": {
1662
+ "outerBorderColor": "{palette.color.gallery}",
1663
+ "outerBackgroundColor": "{palette.color.gallery}"
1664
+ }
1665
+ },
1666
+ {
1667
+ "if": {
1668
+ "validation": "success"
1669
+ },
1670
+ "tokens": {
1671
+ "borderColor": "{palette.color.bilbao}",
1672
+ "validationIcon": "{palette.icon.CheckCircledFilled}",
1673
+ "validationIconColor": "{palette.color.bilbao}"
1674
+ }
1675
+ },
1676
+ {
1677
+ "if": {
1678
+ "validation": "error"
1679
+ },
1680
+ "tokens": {
1681
+ "borderColor": "{palette.color.trinidad}",
1682
+ "validationIcon": "{palette.icon.Times}",
1683
+ "validationIconColor": "{palette.color.trinidad}"
1684
+ }
1685
+ },
1686
+ {
1687
+ "if": {
1688
+ "focus": true
1689
+ },
1690
+ "tokens": {
1691
+ "borderColor": "{palette.color.mosque}",
1692
+ "borderWidth": "{palette.border.border2}",
1693
+ "icon": "{system.icon.none}"
1694
+ }
1695
+ },
1696
+ {
1697
+ "if": {
1698
+ "inactive": true
1699
+ },
1700
+ "tokens": {
1701
+ "backgroundColor": "{palette.color.gallery}",
1702
+ "borderColor": "{palette.color.gallery}"
1703
+ }
1704
+ }
1705
+ ]
1706
+ },
1707
+ "SideNav": {
1708
+ "appearances": {},
1709
+ "tokens": {
1710
+ "borderColor": "{palette.color.silver}",
1711
+ "borderWidth": "{palette.border.border1}",
1712
+ "borderStyle": "{system.borderStyle.solid}"
1713
+ },
1714
+ "rules": []
1715
+ },
1716
+ "SideNavItem": {
1717
+ "appearances": {
1718
+ "active": "{appearances.SideNavItem.active}",
1719
+ "type": "{appearances.SideNavItem.type}",
1720
+ "expanded": "{appearances.SideNavItem.expanded}",
1721
+ "hover": "{appearances.SideNavItem.hover}"
1722
+ },
1723
+ "tokens": {
1724
+ "borderColor": "{palette.color.silver}",
1725
+ "borderWidth": "{palette.border.border1}",
1726
+ "borderStyle": "{system.borderStyle.solid}",
1727
+ "paddingLeft": "{palette.size.size16}",
1728
+ "paddingRight": "{palette.size.size16}",
1729
+ "paddingTop": "{palette.size.size16}",
1730
+ "paddingBottom": "{palette.size.size16}",
1731
+ "justifyContent": "{system.flexJustifyContent.spaceBetween}",
1732
+ "color": "{palette.color.dove}",
1733
+ "accentOffset": "{system.size.zero}",
1734
+ "accentPadding": "{system.size.zero}",
1735
+ "accentWidth": "{palette.size.size4}",
1736
+ "accentBackgroundColor": "{palette.color.transparent}",
1737
+ "fontSize": "{palette.fontSize.size16}",
1738
+ "fontWeight": "{palette.fontWeight.weight400}",
1739
+ "fontName": "{palette.fontName.StagSans}",
1740
+ "lineHeight": "{palette.lineHeight.multiply150}",
1741
+ "backgroundColor": "{system.color.transparent}"
1742
+ },
1743
+ "rules": [
1744
+ {
1745
+ "if": {
1746
+ "active": true
1747
+ },
1748
+ "tokens": {
1749
+ "paddingLeft": "{palette.size.size10}",
1750
+ "backgroundColor": "{palette.color.mintTulip}",
1751
+ "accentBackgroundColor": "{palette.color.mosque}",
1752
+ "color": "{palette.color.mosque}"
1753
+ }
1754
+ },
1755
+ {
1756
+ "if": {
1757
+ "type": "child"
1758
+ },
1759
+ "tokens": {
1760
+ "paddingLeft": "{palette.size.size36}",
1761
+ "borderWidth": "{palette.border.none}",
1762
+ "accentBackgroundColor": "{palette.color.mintTulip}",
1763
+ "accentOffset": "{palette.size.size16}"
1764
+ }
1765
+ },
1766
+ {
1767
+ "if": {
1768
+ "type": "parent",
1769
+ "active": true
1770
+ },
1771
+ "tokens": {
1772
+ "paddingLeft": "{palette.size.size10}"
1773
+ }
1774
+ },
1775
+ {
1776
+ "if": {
1777
+ "type": "parent",
1778
+ "active": true,
1779
+ "expanded": true
1780
+ },
1781
+ "tokens": {
1782
+ "paddingLeft": "{palette.size.size16}",
1783
+ "backgroundColor": "{palette.color.transparent}",
1784
+ "accentBackgroundColor": "{palette.color.transparent}",
1785
+ "color": "{palette.color.dove}"
1786
+ }
1787
+ },
1788
+ {
1789
+ "if": {
1790
+ "hover": true
1791
+ },
1792
+ "tokens": {
1793
+ "backgroundColor": "{palette.color.mintTulip}",
1794
+ "color": "{palette.color.mosque}"
1795
+ }
1796
+ },
1797
+ {
1798
+ "if": {
1799
+ "type": "child",
1800
+ "active": true
1801
+ },
1802
+ "tokens": {
1803
+ "backgroundColor": "{palette.color.mintTulip}",
1804
+ "color": "{palette.color.mosque}",
1805
+ "accentPadding": "{palette.size.size16}",
1806
+ "accentBackgroundColor": "{palette.color.mosque}"
1807
+ }
1808
+ },
1809
+ {
1810
+ "if": {
1811
+ "type": "child",
1812
+ "active": false,
1813
+ "hover": true
1814
+ },
1815
+ "tokens": {
1816
+ "accentBackgroundColor": "{palette.color.white}",
1817
+ "color": "{palette.color.dove}",
1818
+ "accentOffset": "{system.size.zero}",
1819
+ "accentWidth": "{palette.size.size16}"
1820
+ }
1821
+ }
1822
+ ]
1823
+ },
1824
+ "SideNavItemsGroup": {
1825
+ "appearances": {},
1826
+ "tokens": {
1827
+ "expandDuration": "{palette.duration.duration300}",
1828
+ "collapseDuration": "{palette.duration.duration250}",
1829
+ "icon": "{system.icon.none}",
1830
+ "iconColor": "{system.color.none}",
1831
+ "iconGap": "{palette.size.size8}",
1832
+ "iconSize": "{palette.size.size10}",
1833
+ "contentPaddingLeft": "{palette.size.size0}",
1834
+ "contentPaddingRight": "{palette.size.size0}",
1835
+ "contentPaddingTop": "{palette.size.size0}",
1836
+ "contentPaddingBottom": "{palette.size.size0}",
1837
+ "iconPosition": "{system.position.right}",
1838
+ "verticalAlign": "{system.verticalAlign.middle}",
1839
+ "justifyContent": "{system.flexJustifyContent.spaceBetween}"
1840
+ },
1841
+ "rules": []
1842
+ },
1843
+ "Skeleton": {
1844
+ "appearances": {},
1845
+ "tokens": {
1846
+ "color": "{palette.color.dove}",
1847
+ "size": "{palette.border.border2}",
1848
+ "radius": "{palette.size.size120}",
1849
+ "baseWidth": "{palette.size.size40}",
1850
+ "characters": "{palette.size.size10}",
1851
+ "spaceBetweenLines": "{palette.size.size4}",
1852
+ "squareRadius": "{palette.size.size4}"
1853
+ },
1854
+ "rules": []
1855
+ },
1856
+ "StackView": {
1857
+ "appearances": {},
1858
+ "tokens": {
1859
+ "alignItems": "{system.flexAlign.stretch}",
1860
+ "justifyContent": "{system.flexJustifyContent.flexStart}",
1861
+ "flexGrow": "{system.integer.0}",
1862
+ "flexShrink": "{system.integer.0}"
1863
+ },
1864
+ "rules": []
1865
+ },
1866
+ "StepTracker": {
1867
+ "appearances": {
1868
+ "viewport": "{appearances.system.viewport}"
1869
+ },
1870
+ "tokens": {
1871
+ "completedIcon": "{palette.icon.Check}",
1872
+ "completedIconColor": "{palette.color.white}",
1873
+ "completedIconSize": "{palette.size.size10}",
1874
+ "connectorColor": "{palette.color.mosque}",
1875
+ "connectorHeight": "{palette.border.border1}",
1876
+ "connectorMinWidth": "{palette.size.size16}",
1877
+ "connectorCompletedHeight": "{palette.border.border1}",
1878
+ "connectorCompletedColor": "{palette.color.mosque}",
1879
+ "containerPaddingBottom": "{system.size.none}",
1880
+ "containerPaddingLeft": "{system.size.none}",
1881
+ "containerPaddingRight": "{system.size.none}",
1882
+ "containerPaddingTop": "{system.size.none}",
1883
+ "knobBackgroundColor": "{palette.color.transparent}",
1884
+ "knobBorderWidth": "{palette.border.border1}",
1885
+ "knobBorderColor": "{palette.color.mosque}",
1886
+ "knobCompletedBackgroundColor": "{palette.color.mosque}",
1887
+ "knobCompletedBorderColor": "{palette.color.mosque}",
1888
+ "knobCompletedPaddingLeft": "{palette.size.size2}",
1889
+ "knobCompletedPaddingTop": "{palette.size.size2}",
1890
+ "knobCurrentBackgroundColor": "{palette.color.mosque}",
1891
+ "knobCurrentBorderColor": "{palette.color.mosque}",
1892
+ "knobCurrentBorderWidth": "{palette.border.border1}",
1893
+ "knobCurrentInnerColor": "{system.color.none}",
1894
+ "knobCurrentInnerSize": "{system.size.none}",
1895
+ "knobCurrentPaddingLeft": "{system.size.none}",
1896
+ "knobCurrentPaddingTop": "{system.size.none}",
1897
+ "knobSize": "{palette.size.size16}",
1898
+ "labelColor": "{palette.color.mosque}",
1899
+ "labelCurrentFontWeight": "{palette.fontWeight.weight600}",
1900
+ "labelCurrentFontName": "{palette.fontName.StagSans}",
1901
+ "labelCurrentColor": "{palette.color.mosque}",
1902
+ "labelDirection": "{system.direction.row}",
1903
+ "labelFontSize": "{palette.fontSize.size16}",
1904
+ "labelFontWeight": "{palette.fontWeight.weight400}",
1905
+ "labelFontName": "{palette.fontName.StagSans}",
1906
+ "labelGap": "{palette.size.size4}",
1907
+ "labelLineHeight": "{palette.lineHeight.multiply150}",
1908
+ "labelMarginTop": "{palette.size.size8}",
1909
+ "labelPaddingLeft": "{palette.size.size16}",
1910
+ "labelPaddingRight": "{palette.size.size16}",
1911
+ "showStepLabel": "{system.show.false}",
1912
+ "showStepTrackerLabel": "{system.show.true}",
1913
+ "showStepName": "{system.show.true}"
1914
+ },
1915
+ "rules": [
1916
+ {
1917
+ "if": {
1918
+ "viewport": ["lg", "xl"]
1919
+ },
1920
+ "tokens": {
1921
+ "showStepLabel": "{system.show.true}",
1922
+ "showStepTrackerLabel": "{system.show.false}"
1923
+ }
1924
+ }
1925
+ ]
1926
+ },
1927
+ "Tabs": {
1928
+ "appearances": {},
1929
+ "tokens": {
1930
+ "nextIcon": "{palette.icon.ChevronRight}",
1931
+ "previousIcon": "{palette.icon.ChevronLeft}",
1932
+ "gutter": "{palette.size.size16}",
1933
+ "buttonClearance": "{palette.size.size32}",
1934
+ "space": "{system.integer.0}",
1935
+ "borderBottomColor": "{system.color.transparent}",
1936
+ "borderBottomWidth": "{system.border.zero}"
1937
+ },
1938
+ "rules": []
1939
+ },
1940
+ "TabsItem": {
1941
+ "appearances": {
1942
+ "selected": "{appearances.TabsItem.pressed}",
1943
+ "hover": "{appearances.TabsItem.hover}",
1944
+ "focus": "{appearances.TabsItem.focus}"
1945
+ },
1946
+ "tokens": {
1947
+ "highlightColor": "{system.color.transparent}",
1948
+ "highlightBarHeight": "{system.size.zero}",
1949
+ "highlightBarBorderRadius": "{system.radius.zero}",
1950
+ "highlightBarBorderWidth": "{system.border.zero}",
1951
+ "highlightTriangleSize": "{system.size.zero}",
1952
+ "backgroundColor": "{palette.color.gallery}",
1953
+ "borderColor": "{palette.color.silver}",
1954
+ "borderWidth": "{palette.border.border1}",
1955
+ "borderRadius": "{system.radius.zero}",
1956
+ "maxWidth": "{system.size.none}",
1957
+ "space": "{system.integer.0}",
1958
+ "paddingHorizontal": "{palette.size.size16}",
1959
+ "paddingVertical": "{palette.size.size16}",
1960
+ "textAlign": "{system.textAlign.center}",
1961
+ "fontSize": "{palette.fontSize.size16}",
1962
+ "color": "{palette.color.black}",
1963
+ "lineHeight": "{palette.lineHeight.multiply110}",
1964
+ "letterSpacing": "{system.letterSpacing.none}",
1965
+ "textTransform": "{system.textTransform.none}",
1966
+ "fontScaleCap": "{palette.fontSize.size64}",
1967
+ "fontWeight": "{palette.fontWeight.weight700}",
1968
+ "fontName": "{palette.fontName.StagSans}"
1969
+ },
1970
+ "rules": [
1971
+ {
1972
+ "if": {
1973
+ "focus": true
1974
+ },
1975
+ "tokens": {
1976
+ "borderWidth": "{palette.border.border4}"
1977
+ }
1978
+ },
1979
+ {
1980
+ "if": {
1981
+ "hover": true
1982
+ },
1983
+ "tokens": {
1984
+ "backgroundColor": "{palette.color.texas}"
1985
+ }
1986
+ },
1987
+ {
1988
+ "if": {
1989
+ "selected": true
1990
+ },
1991
+ "tokens": {
1992
+ "color": "{palette.color.white}",
1993
+ "backgroundColor": "{palette.color.mosque}",
1994
+ "borderWidth": "{system.border.zero}",
1995
+ "highlightTriangleSize": "{palette.size.size8}",
1996
+ "highlightColor": "{palette.color.mosque}"
1997
+ }
1998
+ }
1999
+ ]
2000
+ },
2001
+ "Tags": {
2002
+ "appearances": {},
2003
+ "tokens": {
2004
+ "space": "{system.integer.3}",
2005
+ "direction": "{system.direction.row}",
2006
+ "alignItems": "{system.flexAlign.center}",
2007
+ "justifyContent": "{system.flexJustifyContent.flexStart}",
2008
+ "flexGrow": "{system.integer.0}",
2009
+ "flexShrink": "{system.integer.0}"
2010
+ },
2011
+ "rules": []
2012
+ },
2013
+ "TagsItem": {
2014
+ "appearances": {
2015
+ "hover": "{appearances.TagsItem.hover}",
2016
+ "focus": "{appearances.TagsItem.focus}",
2017
+ "pressed": "{appearances.TagsItem.pressed}",
2018
+ "selected": "{appearances.TagsItem.selected}",
2019
+ "inactive": "{appearances.TagsItem.inactive}"
2020
+ },
2021
+ "tokens": {
2022
+ "iconSize": "{palette.size.size20}",
2023
+ "iconColor": "{palette.color.mosque}",
2024
+ "iconTranslateX": "{system.integer.0}",
2025
+ "iconTranslateY": "{system.integer.0}",
2026
+ "icon": "{palette.icon.CheckCircledNotFilled}",
2027
+ "iconPosition": "{system.position.right}",
2028
+ "iconSpace": "{system.integer.3}",
2029
+ "iconBackground": "{palette.color.white}",
2030
+ "iconBorderRadius": "{palette.radius.pill32}",
2031
+ "iconAlignSelf": "{system.flexAlign.center}",
2032
+ "iconPadding": "{palette.size.size4}",
2033
+ "borderColor": "{palette.color.darkMosque}",
2034
+ "borderWidth": "{palette.border.none}",
2035
+ "borderRadius": "{palette.radius.radius4}",
2036
+ "shadow": "{system.shadow.none}",
2037
+ "fontSize": "{palette.fontSize.size14}",
2038
+ "color": "{palette.color.white}",
2039
+ "lineHeight": "{palette.lineHeight.multiply150}",
2040
+ "fontName": "{palette.fontName.StagSans}",
2041
+ "fontWeight": "{palette.fontWeight.weight600}",
2042
+ "textAlign": "{system.flexJustifyContent.center}",
2043
+ "alignSelf": "{system.flexAlign.center}",
2044
+ "backgroundColor": "{palette.color.mosque}",
2045
+ "opacity": "{system.opacity.opaque}",
2046
+ "paddingLeft": "{palette.size.size24}",
2047
+ "paddingRight": "{palette.size.size16}",
2048
+ "paddingTop": "{palette.size.size8}",
2049
+ "paddingBottom": "{palette.size.size8}",
2050
+ "width": "{system.size.none}",
2051
+ "minWidth": "{system.size.zero}",
2052
+ "outerBorderColor": "{palette.color.transparent}",
2053
+ "outerBorderWidth": "{palette.border.border2}",
2054
+ "outerBorderGap": "{palette.border.border2}",
2055
+ "outerBackgroundColor": "{palette.color.transparent}"
2056
+ },
2057
+ "rules": [
2058
+ {
2059
+ "if": {
2060
+ "pressed": true
2061
+ },
2062
+ "tokens": {
2063
+ "color": "{palette.color.white}",
2064
+ "borderColor": "{palette.color.mosque}",
2065
+ "backgroundColor": "{palette.color.mosque}"
2066
+ }
2067
+ },
2068
+ {
2069
+ "if": {
2070
+ "focus": true
2071
+ },
2072
+ "tokens": {
2073
+ "outerBorderColor": "{palette.color.mosque}"
2074
+ }
2075
+ },
2076
+ {
2077
+ "if": {
2078
+ "hover": true
2079
+ },
2080
+ "tokens": {
2081
+ "backgroundColor": "{palette.color.darkMosque}",
2082
+ "iconColor": "{palette.color.darkMosque}"
2083
+ }
2084
+ },
2085
+ {
2086
+ "if": {
2087
+ "selected": true
2088
+ },
2089
+ "tokens": {
2090
+ "opacity": "{palette.opacity.opacity8}",
2091
+ "outerBorderColor": "{palette.color.mosque}",
2092
+ "outerBorderGap": "{palette.border.border1}",
2093
+ "outerBorderWidth": "{palette.border.border4}",
2094
+ "icon": "{palette.icon.CheckCircledFilled}"
2095
+ }
2096
+ },
2097
+ {
2098
+ "if": {
2099
+ "focus": true,
2100
+ "pressed": true
2101
+ },
2102
+ "tokens": {
2103
+ "outerBorderColor": "{palette.color.mosque}"
2104
+ }
2105
+ },
2106
+ {
2107
+ "if": {
2108
+ "inactive": true
2109
+ },
2110
+ "tokens": {
2111
+ "backgroundColor": "{palette.color.dove}",
2112
+ "color": "{palette.color.white}",
2113
+ "borderWidth": "{system.border.zero}",
2114
+ "iconColor": "{palette.color.dove}"
2115
+ }
2116
+ },
2117
+ {
2118
+ "if": {
2119
+ "selected": true
2120
+ },
2121
+ "tokens": {
2122
+ "opacity": "{palette.opacity.opacity8}",
2123
+ "outerBorderColor": "{palette.color.mosque}",
2124
+ "outerBorderGap": "{palette.border.border1}",
2125
+ "outerBorderWidth": "{palette.border.border4}"
2126
+ }
2127
+ },
2128
+ {
2129
+ "if": {
2130
+ "selected": true,
2131
+ "focus": true
2132
+ },
2133
+ "tokens": {
2134
+ "outerBorderColor": "{palette.color.darkMosque}"
2135
+ }
2136
+ }
2137
+ ]
2138
+ },
2139
+ "TextArea": {
2140
+ "appearances": {},
2141
+ "tokens": {
2142
+ "minLines": "{system.integer.2}",
2143
+ "maxLines": "{system.integer.4}"
2144
+ },
2145
+ "rules": []
2146
+ },
2147
+ "TextInput": {
2148
+ "appearances": {
2149
+ "validation": "{appearances.TextInput.validation}",
2150
+ "hover": "{appearances.TextInput.hover}",
2151
+ "focus": "{appearances.TextInput.focus}",
2152
+ "inactive": "{appearances.TextInput.inactive}"
2153
+ },
2154
+ "tokens": {
2155
+ "backgroundColor": "{palette.color.white}",
2156
+ "color": "{palette.color.dove}",
2157
+ "borderWidth": "{palette.border.border1}",
2158
+ "borderColor": "{palette.color.silver}",
2159
+ "borderRadius": "{palette.radius.radius4}",
2160
+ "paddingTop": "{palette.size.size10}",
2161
+ "paddingBottom": "{palette.size.size10}",
2162
+ "paddingLeft": "{palette.size.size16}",
2163
+ "paddingRight": "{palette.size.size16}",
2164
+ "outerBackgroundColor": "{palette.color.transparent}",
2165
+ "outerBorderWidth": "{palette.border.border2}",
2166
+ "outerBorderColor": "{palette.color.transparent}",
2167
+ "fontName": "{palette.fontName.StagSans}",
2168
+ "fontWeight": "{palette.fontWeight.weight400}",
2169
+ "fontSize": "{palette.fontSize.size16}",
2170
+ "lineHeight": "{palette.lineHeight.multiply150}",
2171
+ "icon": "{system.icon.none}",
2172
+ "iconSize": "{palette.fontSize.size24}",
2173
+ "iconColor": "{palette.color.transparent}"
2174
+ },
2175
+ "rules": [
2176
+ {
2177
+ "if": {
2178
+ "hover": true,
2179
+ "inactive": null
2180
+ },
2181
+ "tokens": {
2182
+ "outerBorderColor": "{palette.color.gallery}",
2183
+ "outerBackgroundColor": "{palette.color.gallery}"
2184
+ }
2185
+ },
2186
+ {
2187
+ "if": {
2188
+ "validation": "success"
2189
+ },
2190
+ "tokens": {
2191
+ "borderColor": "{palette.color.bilbao}",
2192
+ "icon": "{palette.icon.CheckCircledFilled}",
2193
+ "iconColor": "{palette.color.bilbao}"
2194
+ }
2195
+ },
2196
+ {
2197
+ "if": {
2198
+ "validation": "error"
2199
+ },
2200
+ "tokens": {
2201
+ "borderColor": "{palette.color.trinidad}",
2202
+ "icon": "{palette.icon.Times}",
2203
+ "iconColor": "{palette.color.trinidad}"
2204
+ }
2205
+ },
2206
+ {
2207
+ "if": {
2208
+ "focus": true,
2209
+ "inactive": null
2210
+ },
2211
+ "tokens": {
2212
+ "borderColor": "{palette.color.mosque}",
2213
+ "borderWidth": "{palette.border.border2}",
2214
+ "icon": "{system.icon.none}"
2215
+ }
2216
+ },
2217
+ {
2218
+ "if": {
2219
+ "inactive": true
2220
+ },
2221
+ "tokens": {
2222
+ "backgroundColor": "{palette.color.gallery}",
2223
+ "borderColor": "{palette.color.gallery}"
2224
+ }
2225
+ }
2226
+ ]
2227
+ },
2228
+ "ToggleSwitch": {
2229
+ "appearances": {
2230
+ "focus": "{appearances.ToggleSwitch.focus}",
2231
+ "hover": "{appearances.ToggleSwitch.hover}",
2232
+ "pressed": "{appearances.ToggleSwitch.pressed}",
2233
+ "inactive": "{appearances.ToggleSwitch.inactive}",
2234
+ "selected": "{appearances.ToggleSwitch.selected}"
2235
+ },
2236
+ "tokens": {
2237
+ "borderColor": "{palette.color.transparent}",
2238
+ "borderWidth": "{palette.border.none}",
2239
+ "borderRadius": "{palette.radius.radius4}",
2240
+ "outerBorderColor": "{palette.color.transparent}",
2241
+ "outerBorderWidth": "{palette.border.none}",
2242
+ "outerBorderGap": "{palette.size.size0}",
2243
+ "outerBackgroundColor": "{palette.color.transparent}",
2244
+ "backgroundColor": "{palette.color.mosque}",
2245
+ "opacity": "{system.opacity.opaque}",
2246
+ "paddingLeft": "{palette.size.size8}",
2247
+ "paddingRight": "{palette.size.size8}",
2248
+ "paddingTop": "{palette.size.size4}",
2249
+ "paddingBottom": "{palette.size.size4}",
2250
+ "shadow": "{system.shadow.none}",
2251
+ "alignSelf": "{system.flexAlign.flexStart}",
2252
+ "icon": "{system.icon.none}",
2253
+ "width": "{palette.size.size64}",
2254
+ "trackBorderWidth": "{palette.border.none}",
2255
+ "trackBorderColor": "{palette.color.transparent}",
2256
+ "trackBorderRadius": "{palette.radius.none}",
2257
+ "iconSize": "{palette.size.size16}",
2258
+ "iconColor": "{palette.color.transparent}",
2259
+ "switchSize": "{palette.size.size24}",
2260
+ "switchColor": "{palette.color.white}",
2261
+ "switchBorderColor": "{palette.color.transparent}",
2262
+ "switchBorderWidth": "{palette.border.none}",
2263
+ "switchBorderRadius": "{palette.radius.pill32}",
2264
+ "switchShadow": "{system.shadow.none}"
2265
+ },
2266
+ "rules": [
2267
+ {
2268
+ "if": {
2269
+ "hover": true
2270
+ },
2271
+ "tokens": {
2272
+ "backgroundColor": "{palette.color.darkMosque}"
2273
+ }
2274
+ },
2275
+ {
2276
+ "if": {
2277
+ "pressed": true
2278
+ },
2279
+ "tokens": {
2280
+ "backgroundColor": "{palette.color.onahau}"
2281
+ }
2282
+ },
2283
+ {
2284
+ "if": {
2285
+ "focus": true
2286
+ },
2287
+ "tokens": {
2288
+ "outerBorderColor": "{palette.color.mosque}"
2289
+ }
2290
+ },
2291
+ {
2292
+ "if": {
2293
+ "selected": true
2294
+ },
2295
+ "tokens": {
2296
+ "backgroundColor": "{palette.color.blue}"
2297
+ }
2298
+ },
2299
+ {
2300
+ "if": {
2301
+ "selected": true,
2302
+ "hover": true
2303
+ },
2304
+ "tokens": {
2305
+ "backgroundColor": "{palette.color.darkBlue}"
2306
+ }
2307
+ },
2308
+ {
2309
+ "if": {
2310
+ "selected": true,
2311
+ "pressed": true
2312
+ },
2313
+ "tokens": {
2314
+ "backgroundColor": "{palette.color.onahau}"
2315
+ }
2316
+ },
2317
+ {
2318
+ "if": {
2319
+ "selected": true,
2320
+ "focus": true
2321
+ },
2322
+ "tokens": {
2323
+ "outerBorderColor": "{palette.color.blue}"
2324
+ }
2325
+ },
2326
+ {
2327
+ "if": {
2328
+ "selected": true,
2329
+ "focus": true,
2330
+ "pressed": true
2331
+ },
2332
+ "tokens": {
2333
+ "outerBorderColor": "{palette.color.onahau}"
2334
+ }
2335
+ },
2336
+ {
2337
+ "if": {
2338
+ "inactive": true
2339
+ },
2340
+ "tokens": {
2341
+ "opacity": "{palette.opacity.opacity5}"
2342
+ }
2343
+ }
2344
+ ]
2345
+ },
2346
+ "Tooltip": {
2347
+ "appearances": {},
2348
+ "tokens": {
2349
+ "backgroundColor": "{palette.color.darkMosque}",
2350
+ "paddingTop": "{palette.size.size8}",
2351
+ "paddingBottom": "{palette.size.size8}",
2352
+ "paddingLeft": "{palette.size.size16}",
2353
+ "paddingRight": "{palette.size.size16}",
2354
+ "borderRadius": "{palette.radius.radius4}",
2355
+ "shadow": "{palette.shadow.none}",
2356
+ "color": "{palette.color.white}",
2357
+ "fontSize": "{palette.fontSize.size14}",
2358
+ "lineHeight": "{palette.lineHeight.multiply140}",
2359
+ "fontName": "{palette.fontName.StagSans}",
2360
+ "fontWeight": "{palette.fontWeight.weight400}",
2361
+ "arrowWidth": "{palette.size.size8}",
2362
+ "arrowBorderRadius": "{palette.radius.none}",
2363
+ "arrowOffset": "{palette.size.size4}"
2364
+ },
2365
+ "rules": []
2366
+ },
2367
+ "TooltipButton": {
2368
+ "appearances": {
2369
+ "focus": "{appearances.TooltipButton.focus}",
2370
+ "hover": "{appearances.TooltipButton.hover}",
2371
+ "pressed": "{appearances.TooltipButton.pressed}"
2372
+ },
2373
+ "tokens": {
2374
+ "outerBorderColor": "{palette.color.transparent}",
2375
+ "outerBorderWidth": "{palette.border.border1}",
2376
+ "outerBorderGap": "{palette.size.size4}",
2377
+ "borderRadius": "{palette.radius.pill32}",
2378
+ "width": "{palette.size.size16}",
2379
+ "icon": "{palette.icon.Info}",
2380
+ "iconSize": "{palette.size.size16}",
2381
+ "iconScale": "{system.iconScale.scale1}",
2382
+ "iconColor": "{palette.color.amaranth}"
2383
+ },
2384
+ "rules": [
2385
+ {
2386
+ "if": {
2387
+ "hover": true
2388
+ },
2389
+ "tokens": {
2390
+ "iconScale": "{system.iconScale.scale1_25}"
2391
+ }
2392
+ },
2393
+ {
2394
+ "if": {
2395
+ "pressed": true
2396
+ },
2397
+ "tokens": {
2398
+ "iconColor": "{palette.color.darkMosque}"
2399
+ }
2400
+ },
2401
+ {
2402
+ "if": {
2403
+ "focus": true
2404
+ },
2405
+ "tokens": {
2406
+ "outerBorderColor": "{palette.color.darkMosque}"
2407
+ }
2408
+ }
2409
+ ]
2410
+ },
2411
+ "Typography": {
2412
+ "appearances": {
2413
+ "weight": {
2414
+ "description": "Sets the font weight, default is regular 400 weight. Does not change accessibility properties.",
2415
+ "values": ["semibold", "bold"],
2416
+ "type": "variant"
2417
+ },
2418
+ "size": {
2419
+ "values": ["small", "large", "h1", "h2", "h3", "h4", "display"],
2420
+ "type": "variant"
2421
+ },
2422
+ "colour": {
2423
+ "values": ["red"],
2424
+ "type": "variant"
2425
+ },
2426
+ "inverse": {
2427
+ "description": "Styles the link white for use on dark backgrounds.",
2428
+ "values": [true],
2429
+ "type": "variant"
2430
+ },
2431
+ "viewport": "{appearances.system.viewport}"
2432
+ },
2433
+ "tokens": {
2434
+ "fontSize": "{palette.fontSize.size16}",
2435
+ "color": "{palette.color.black}",
2436
+ "lineHeight": "{palette.lineHeight.multiply150}",
2437
+ "letterSpacing": "{system.letterSpacing.none}",
2438
+ "textTransform": "{system.textTransform.none}",
2439
+ "fontWeight": "{palette.fontWeight.weight400}",
2440
+ "fontName": "{palette.fontName.StagSans}",
2441
+ "fontScaleCap": "{palette.fontSize.size64}"
2442
+ },
2443
+ "rules": [
2444
+ {
2445
+ "if": {
2446
+ "weight": "semibold"
2447
+ },
2448
+ "tokens": {
2449
+ "fontWeight": "{palette.fontWeight.weight600}",
2450
+ "fontName": "{palette.fontName.StagSans}"
2451
+ }
2452
+ },
2453
+ {
2454
+ "if": {
2455
+ "weight": "bold"
2456
+ },
2457
+ "tokens": {
2458
+ "fontWeight": "{palette.fontWeight.weight700}",
2459
+ "fontName": "{palette.fontName.StagSans}"
2460
+ }
2461
+ },
2462
+ {
2463
+ "if": {
2464
+ "size": "large"
2465
+ },
2466
+ "tokens": {
2467
+ "fontSize": "{palette.fontSize.size20}",
2468
+ "lineHeight": "{palette.lineHeight.multiply160}"
2469
+ }
2470
+ },
2471
+ {
2472
+ "if": {
2473
+ "size": "small"
2474
+ },
2475
+ "tokens": {
2476
+ "fontSize": "{palette.fontSize.size14}",
2477
+ "lineHeight": "{palette.lineHeight.multiply140}"
2478
+ }
2479
+ },
2480
+ {
2481
+ "if": {
2482
+ "size": "display"
2483
+ },
2484
+ "tokens": {
2485
+ "fontSize": "{palette.fontSize.size48}",
2486
+ "fontWeight": "{palette.fontWeight.weight700}",
2487
+ "fontName": "{palette.fontName.StagSans}",
2488
+ "lineHeight": "{palette.lineHeight.multiply120}"
2489
+ }
2490
+ },
2491
+ {
2492
+ "if": {
2493
+ "size": "display",
2494
+ "viewport": ["lg", "xl"]
2495
+ },
2496
+ "tokens": {
2497
+ "fontSize": "{palette.fontSize.size64}",
2498
+ "lineHeight": "{palette.lineHeight.multiply110}"
2499
+ }
2500
+ },
2501
+ {
2502
+ "if": {
2503
+ "size": "h1"
2504
+ },
2505
+ "tokens": {
2506
+ "fontSize": "{palette.fontSize.size44}",
2507
+ "fontWeight": "{palette.fontWeight.weight700}",
2508
+ "fontName": "{palette.fontName.StagSans}",
2509
+ "lineHeight": "{palette.lineHeight.multiply120}"
2510
+ }
2511
+ },
2512
+ {
2513
+ "if": {
2514
+ "size": "h1",
2515
+ "viewport": ["lg", "xl"]
2516
+ },
2517
+ "tokens": {
2518
+ "fontSize": "{palette.fontSize.size40}",
2519
+ "lineHeight": "{palette.lineHeight.multiply110}"
2520
+ }
2521
+ },
2522
+ {
2523
+ "if": {
2524
+ "size": "h2"
2525
+ },
2526
+ "tokens": {
2527
+ "fontSize": "{palette.fontSize.size28}",
2528
+ "color": "{palette.color.black}",
2529
+ "fontWeight": "{palette.fontWeight.weight700}",
2530
+ "fontName": "{palette.fontName.StagSans}",
2531
+ "lineHeight": "{palette.lineHeight.multiply130}"
2532
+ }
2533
+ },
2534
+ {
2535
+ "if": {
2536
+ "size": "h2",
2537
+ "viewport": ["lg", "xl"]
2538
+ },
2539
+ "tokens": {
2540
+ "fontSize": "{palette.fontSize.size28}"
2541
+ }
2542
+ },
2543
+ {
2544
+ "if": {
2545
+ "size": "h3"
2546
+ },
2547
+ "tokens": {
2548
+ "fontSize": "{palette.fontSize.size20}",
2549
+ "fontWeight": "{palette.fontWeight.weight700}",
2550
+ "fontName": "{palette.fontName.StagSans}",
2551
+ "lineHeight": "{palette.lineHeight.multiply140}"
2552
+ }
2553
+ },
2554
+ {
2555
+ "if": {
2556
+ "size": "h3",
2557
+ "viewport": ["lg", "xl"]
2558
+ },
2559
+ "tokens": {
2560
+ "fontSize": "{palette.fontSize.size24}",
2561
+ "lineHeight": "{palette.lineHeight.multiply130}"
2562
+ }
2563
+ },
2564
+ {
2565
+ "if": {
2566
+ "size": "h4"
2567
+ },
2568
+ "tokens": {
2569
+ "fontSize": "{palette.fontSize.size16}",
2570
+ "fontWeight": "{palette.fontWeight.weight700}",
2571
+ "fontName": "{palette.fontName.StagSans}",
2572
+ "lineHeight": "{palette.lineHeight.multiply150}"
2573
+ }
2574
+ },
2575
+ {
2576
+ "if": {
2577
+ "inverse": true
2578
+ },
2579
+ "tokens": {
2580
+ "color": "{palette.color.white}"
2581
+ }
2582
+ },
2583
+ {
2584
+ "if": {
2585
+ "colour": "red"
2586
+ },
2587
+ "tokens": {
2588
+ "color": "{palette.color.trinidad}"
2589
+ }
2590
+ }
2591
+ ]
2592
+ },
2593
+ "spacingScale": {
2594
+ "appearances": {
2595
+ "space": "{appearances.spacingScale.space}",
2596
+ "viewport": "{appearances.system.viewport}"
2597
+ },
2598
+ "tokens": {
2599
+ "size": "{palette.size.size96}"
2600
+ },
2601
+ "rules": [
2602
+ {
2603
+ "if": {
2604
+ "viewport": ["lg", "xl"]
2605
+ },
2606
+ "tokens": {
2607
+ "size": "{palette.size.size120}"
2608
+ }
2609
+ },
2610
+ {
2611
+ "if": {
2612
+ "space": 10
2613
+ },
2614
+ "tokens": {
2615
+ "size": "{palette.size.size80}"
2616
+ }
2617
+ },
2618
+ {
2619
+ "if": {
2620
+ "space": 9
2621
+ },
2622
+ "tokens": {
2623
+ "size": "{palette.size.size64}"
2624
+ }
2625
+ },
2626
+ {
2627
+ "if": {
2628
+ "space": 8
2629
+ },
2630
+ "tokens": {
2631
+ "size": "{palette.size.size48}"
2632
+ }
2633
+ },
2634
+ {
2635
+ "if": {
2636
+ "space": 7
2637
+ },
2638
+ "tokens": {
2639
+ "size": "{palette.size.size40}"
2640
+ }
2641
+ },
2642
+ {
2643
+ "if": {
2644
+ "space": 6
2645
+ },
2646
+ "tokens": {
2647
+ "size": "{palette.size.size36}"
2648
+ }
2649
+ },
2650
+ {
2651
+ "if": {
2652
+ "space": 5
2653
+ },
2654
+ "tokens": {
2655
+ "size": "{palette.size.size32}"
2656
+ }
2657
+ },
2658
+ {
2659
+ "if": {
2660
+ "space": 4
2661
+ },
2662
+ "tokens": {
2663
+ "size": "{palette.size.size24}"
2664
+ }
2665
+ },
2666
+ {
2667
+ "if": {
2668
+ "space": 3
2669
+ },
2670
+ "tokens": {
2671
+ "size": "{palette.size.size16}"
2672
+ }
2673
+ },
2674
+ {
2675
+ "if": {
2676
+ "space": 2
2677
+ },
2678
+ "tokens": {
2679
+ "size": "{palette.size.size8}"
2680
+ }
2681
+ },
2682
+ {
2683
+ "if": {
2684
+ "space": 1
2685
+ },
2686
+ "tokens": {
2687
+ "size": "{palette.size.size4}"
2688
+ }
2689
+ },
2690
+ {
2691
+ "if": {
2692
+ "space": 10,
2693
+ "viewport": ["lg", "xl"]
2694
+ },
2695
+ "tokens": {
2696
+ "size": "{palette.size.size120}"
2697
+ }
2698
+ },
2699
+ {
2700
+ "if": {
2701
+ "space": 9,
2702
+ "viewport": ["lg", "xl"]
2703
+ },
2704
+ "tokens": {
2705
+ "size": "{palette.size.size96}"
2706
+ }
2707
+ },
2708
+ {
2709
+ "if": {
2710
+ "space": 8,
2711
+ "viewport": ["lg", "xl"]
2712
+ },
2713
+ "tokens": {
2714
+ "size": "{palette.size.size72}"
2715
+ }
2716
+ },
2717
+ {
2718
+ "if": {
2719
+ "space": 7,
2720
+ "viewport": ["lg", "xl"]
2721
+ },
2722
+ "tokens": {
2723
+ "size": "{palette.size.size64}"
2724
+ }
2725
+ },
2726
+ {
2727
+ "if": {
2728
+ "space": 0
2729
+ },
2730
+ "tokens": {
2731
+ "size": "{palette.size.size0}"
2732
+ }
2733
+ }
2734
+ ]
2735
+ }
2736
+ }
2737
+ }