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