@telus-uds/theme-koodo 3.13.0 → 3.15.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/build/android/schema.json +654 -382
- package/build/android/theme.json +628 -164
- package/build/ios/schema.json +654 -382
- package/build/ios/theme.json +628 -164
- package/build/rn/schema.json +654 -382
- package/build/rn/theme.js +357 -107
- package/package.json +4 -4
- package/theme.json +536 -104
package/theme.json
CHANGED
|
@@ -25,10 +25,105 @@
|
|
|
25
25
|
"thickness": "{palette.border.border4}"
|
|
26
26
|
}
|
|
27
27
|
},
|
|
28
|
+
"Badge": {
|
|
29
|
+
"appearances": {
|
|
30
|
+
"alternative": {
|
|
31
|
+
"type": "variant",
|
|
32
|
+
"values": [true]
|
|
33
|
+
},
|
|
34
|
+
"outline": {
|
|
35
|
+
"type": "variant",
|
|
36
|
+
"values": [true]
|
|
37
|
+
},
|
|
38
|
+
"purpose": {
|
|
39
|
+
"type": "variant",
|
|
40
|
+
"values": ["offer", "editorial"]
|
|
41
|
+
}
|
|
42
|
+
},
|
|
43
|
+
"rules": [
|
|
44
|
+
{
|
|
45
|
+
"if": {
|
|
46
|
+
"outline": true
|
|
47
|
+
},
|
|
48
|
+
"tokens": {
|
|
49
|
+
"backgroundColor": "{palette.color.transparent}",
|
|
50
|
+
"borderColor": "{palette.color.carouselPink}"
|
|
51
|
+
}
|
|
52
|
+
},
|
|
53
|
+
{
|
|
54
|
+
"if": {
|
|
55
|
+
"alternative": true
|
|
56
|
+
},
|
|
57
|
+
"tokens": {
|
|
58
|
+
"backgroundColor": "{palette.color.transparent}",
|
|
59
|
+
"borderColor": "{palette.color.mosque}",
|
|
60
|
+
"color": "{palette.color.mosque}",
|
|
61
|
+
"paddingBottom": "{palette.size.size8}",
|
|
62
|
+
"paddingTop": "{palette.size.size8}"
|
|
63
|
+
}
|
|
64
|
+
},
|
|
65
|
+
{
|
|
66
|
+
"if": {
|
|
67
|
+
"purpose": "offer"
|
|
68
|
+
},
|
|
69
|
+
"tokens": {
|
|
70
|
+
"backgroundColor": "{palette.color.onahau}",
|
|
71
|
+
"color": "{palette.color.black}",
|
|
72
|
+
"paddingBottom": "{palette.size.size8}",
|
|
73
|
+
"paddingTop": "{palette.size.size8}"
|
|
74
|
+
}
|
|
75
|
+
},
|
|
76
|
+
{
|
|
77
|
+
"if": {
|
|
78
|
+
"purpose": "editorial"
|
|
79
|
+
},
|
|
80
|
+
"tokens": {
|
|
81
|
+
"backgroundColor": "{palette.color.black}",
|
|
82
|
+
"color": "{palette.color.white}"
|
|
83
|
+
}
|
|
84
|
+
},
|
|
85
|
+
{
|
|
86
|
+
"if": {
|
|
87
|
+
"outline": true,
|
|
88
|
+
"purpose": "editorial"
|
|
89
|
+
},
|
|
90
|
+
"tokens": {
|
|
91
|
+
"backgroundColor": "{palette.color.transparent}",
|
|
92
|
+
"borderColor": "{palette.color.black}",
|
|
93
|
+
"color": "{palette.color.black}"
|
|
94
|
+
}
|
|
95
|
+
},
|
|
96
|
+
{
|
|
97
|
+
"if": {
|
|
98
|
+
"outline": true,
|
|
99
|
+
"purpose": "offer"
|
|
100
|
+
},
|
|
101
|
+
"tokens": {
|
|
102
|
+
"backgroundColor": "{palette.color.transparent}",
|
|
103
|
+
"borderColor": "{palette.color.onahau}"
|
|
104
|
+
}
|
|
105
|
+
}
|
|
106
|
+
],
|
|
107
|
+
"tokens": {
|
|
108
|
+
"backgroundColor": "{palette.color.carouselPink}",
|
|
109
|
+
"borderColor": "{palette.color.transparent}",
|
|
110
|
+
"borderRadius": "{palette.radius.pill32}",
|
|
111
|
+
"borderWidth": "{palette.border.border2}",
|
|
112
|
+
"color": "{palette.color.flirt}",
|
|
113
|
+
"fontName": "{palette.fontName.StagSans}",
|
|
114
|
+
"fontWeight": "{palette.fontWeight.weight600}",
|
|
115
|
+
"gradient": "{system.gradient.none}",
|
|
116
|
+
"paddingBottom": "{palette.size.size2}",
|
|
117
|
+
"paddingLeft": "{palette.size.size16}",
|
|
118
|
+
"paddingRight": "{palette.size.size16}",
|
|
119
|
+
"paddingTop": "{palette.size.size2}"
|
|
120
|
+
}
|
|
121
|
+
},
|
|
28
122
|
"Box": {
|
|
29
123
|
"appearances": {
|
|
30
124
|
"background": {
|
|
31
125
|
"description": "Background colour of box. White if not specified.",
|
|
126
|
+
"type": "variant",
|
|
32
127
|
"values": [
|
|
33
128
|
"lightest",
|
|
34
129
|
"lighter",
|
|
@@ -869,8 +964,36 @@
|
|
|
869
964
|
"focus": true
|
|
870
965
|
},
|
|
871
966
|
"tokens": {
|
|
872
|
-
"inputOutlineColor": "{palette.color.
|
|
873
|
-
"inputOutlineWidth": "{palette.border.
|
|
967
|
+
"inputOutlineColor": "{palette.color.chathamsBlue}",
|
|
968
|
+
"inputOutlineWidth": "{palette.border.border1}"
|
|
969
|
+
}
|
|
970
|
+
},
|
|
971
|
+
{
|
|
972
|
+
"if": {
|
|
973
|
+
"hover": true
|
|
974
|
+
},
|
|
975
|
+
"tokens": {
|
|
976
|
+
"inputOutlineColor": "{palette.color.chathamsBlue}",
|
|
977
|
+
"inputOutlineWidth": "{palette.border.border1}"
|
|
978
|
+
}
|
|
979
|
+
},
|
|
980
|
+
{
|
|
981
|
+
"if": {
|
|
982
|
+
"inactive": true
|
|
983
|
+
},
|
|
984
|
+
"tokens": {
|
|
985
|
+
"inputBackgroundColor": "{palette.color.silver}",
|
|
986
|
+
"inputBorderColor": "{palette.color.transparent}"
|
|
987
|
+
}
|
|
988
|
+
},
|
|
989
|
+
{
|
|
990
|
+
"if": {
|
|
991
|
+
"checked": true,
|
|
992
|
+
"inactive": true
|
|
993
|
+
},
|
|
994
|
+
"tokens": {
|
|
995
|
+
"iconBackgroundColor": "{palette.color.silver}",
|
|
996
|
+
"iconColor": "{palette.color.white}"
|
|
874
997
|
}
|
|
875
998
|
}
|
|
876
999
|
],
|
|
@@ -882,7 +1005,7 @@
|
|
|
882
1005
|
"icon": "{palette.icon.Check}",
|
|
883
1006
|
"iconBackgroundColor": "{palette.color.white}",
|
|
884
1007
|
"iconColor": "{palette.color.mosque}",
|
|
885
|
-
"iconSize": "{palette.size.
|
|
1008
|
+
"iconSize": "{palette.size.size20}",
|
|
886
1009
|
"inputBackgroundColor": "{palette.color.white}",
|
|
887
1010
|
"inputBorderColor": "{palette.color.mosque}",
|
|
888
1011
|
"inputBorderRadius": "{palette.radius.none}",
|
|
@@ -1202,24 +1325,12 @@
|
|
|
1202
1325
|
"validation": "{appearances.Feedback.validation}"
|
|
1203
1326
|
},
|
|
1204
1327
|
"rules": [
|
|
1205
|
-
{
|
|
1206
|
-
"if": {
|
|
1207
|
-
"validation": "success"
|
|
1208
|
-
},
|
|
1209
|
-
"tokens": {
|
|
1210
|
-
"backgroundColor": "{palette.color.mintTulip}",
|
|
1211
|
-
"borderColor": "{palette.color.mintTulip}",
|
|
1212
|
-
"color": "{palette.color.bilbao}"
|
|
1213
|
-
}
|
|
1214
|
-
},
|
|
1215
1328
|
{
|
|
1216
1329
|
"if": {
|
|
1217
1330
|
"validation": "error"
|
|
1218
1331
|
},
|
|
1219
1332
|
"tokens": {
|
|
1220
|
-
"backgroundColor": "{palette.color.
|
|
1221
|
-
"borderColor": "{palette.color.carouselPink}",
|
|
1222
|
-
"color": "{palette.color.trinidad}"
|
|
1333
|
+
"backgroundColor": "{palette.color.piggyPink}"
|
|
1223
1334
|
}
|
|
1224
1335
|
},
|
|
1225
1336
|
{
|
|
@@ -1229,7 +1340,7 @@
|
|
|
1229
1340
|
},
|
|
1230
1341
|
"tokens": {
|
|
1231
1342
|
"icon": "{palette.icon.CheckCircledFilled}",
|
|
1232
|
-
"iconColor": "{palette.color.
|
|
1343
|
+
"iconColor": "{palette.color.mosque}"
|
|
1233
1344
|
}
|
|
1234
1345
|
},
|
|
1235
1346
|
{
|
|
@@ -1238,29 +1349,29 @@
|
|
|
1238
1349
|
"validation": "error"
|
|
1239
1350
|
},
|
|
1240
1351
|
"tokens": {
|
|
1241
|
-
"icon": "{palette.icon.
|
|
1242
|
-
"iconColor": "{palette.color.
|
|
1352
|
+
"icon": "{palette.icon.Caution}",
|
|
1353
|
+
"iconColor": "{palette.color.amaranth}"
|
|
1243
1354
|
}
|
|
1244
1355
|
}
|
|
1245
1356
|
],
|
|
1246
1357
|
"tokens": {
|
|
1247
|
-
"backgroundColor": "{palette.color.
|
|
1248
|
-
"borderColor": "{palette.color.
|
|
1249
|
-
"borderRadius": "{palette.radius.
|
|
1250
|
-
"borderWidth": "{palette.border.
|
|
1251
|
-
"color": "{palette.color.
|
|
1358
|
+
"backgroundColor": "{palette.color.icicle}",
|
|
1359
|
+
"borderColor": "{palette.color.transparent}",
|
|
1360
|
+
"borderRadius": "{palette.radius.none}",
|
|
1361
|
+
"borderWidth": "{palette.border.none}",
|
|
1362
|
+
"color": "{palette.color.black}",
|
|
1252
1363
|
"contentFontSize": "{palette.fontSize.size14}",
|
|
1253
1364
|
"fontName": "{palette.fontName.StagSans}",
|
|
1254
1365
|
"fontWeight": "{palette.fontWeight.weight400}",
|
|
1255
1366
|
"icon": "{system.icon.none}",
|
|
1256
1367
|
"iconColor": "{palette.color.transparent}",
|
|
1257
1368
|
"iconGap": "{palette.size.size8}",
|
|
1258
|
-
"iconSize": "{palette.size.
|
|
1369
|
+
"iconSize": "{palette.size.size20}",
|
|
1259
1370
|
"lineHeight": "{palette.lineHeight.multiply150}",
|
|
1260
|
-
"paddingBottom": "{palette.size.
|
|
1371
|
+
"paddingBottom": "{palette.size.size12}",
|
|
1261
1372
|
"paddingLeft": "{palette.size.size16}",
|
|
1262
1373
|
"paddingRight": "{palette.size.size16}",
|
|
1263
|
-
"paddingTop": "{palette.size.
|
|
1374
|
+
"paddingTop": "{palette.size.size12}",
|
|
1264
1375
|
"space": "{system.integer.2}",
|
|
1265
1376
|
"titleFontSize": "{palette.fontSize.size16}"
|
|
1266
1377
|
}
|
|
@@ -1450,6 +1561,11 @@
|
|
|
1450
1561
|
"focus": "{appearances.Button.focus}",
|
|
1451
1562
|
"hover": "{appearances.Button.hover}",
|
|
1452
1563
|
"inactive": "{appearances.Button.inactive}",
|
|
1564
|
+
"password": {
|
|
1565
|
+
"description": "Password masked or not",
|
|
1566
|
+
"type": "variant",
|
|
1567
|
+
"values": [true]
|
|
1568
|
+
},
|
|
1453
1569
|
"pressed": "{appearances.Button.pressed}"
|
|
1454
1570
|
},
|
|
1455
1571
|
"rules": [
|
|
@@ -1460,6 +1576,62 @@
|
|
|
1460
1576
|
"tokens": {
|
|
1461
1577
|
"outerBorderGap": "{system.size.zero}"
|
|
1462
1578
|
}
|
|
1579
|
+
},
|
|
1580
|
+
{
|
|
1581
|
+
"if": {
|
|
1582
|
+
"hover": true
|
|
1583
|
+
},
|
|
1584
|
+
"tokens": {
|
|
1585
|
+
"backgroundColor": "{palette.color.mosque}",
|
|
1586
|
+
"iconColor": "{palette.color.white}"
|
|
1587
|
+
}
|
|
1588
|
+
},
|
|
1589
|
+
{
|
|
1590
|
+
"if": {
|
|
1591
|
+
"password": true
|
|
1592
|
+
},
|
|
1593
|
+
"tokens": {
|
|
1594
|
+
"borderColor": "{palette.color.transparent}"
|
|
1595
|
+
}
|
|
1596
|
+
},
|
|
1597
|
+
{
|
|
1598
|
+
"if": {
|
|
1599
|
+
"password": true,
|
|
1600
|
+
"pressed": true
|
|
1601
|
+
},
|
|
1602
|
+
"tokens": {
|
|
1603
|
+
"backgroundColor": "{palette.color.darkMosque}",
|
|
1604
|
+
"iconColor": "{palette.color.white}"
|
|
1605
|
+
}
|
|
1606
|
+
},
|
|
1607
|
+
{
|
|
1608
|
+
"if": {
|
|
1609
|
+
"focus": true,
|
|
1610
|
+
"password": true
|
|
1611
|
+
},
|
|
1612
|
+
"tokens": {
|
|
1613
|
+
"borderColor": "{palette.color.mosque}",
|
|
1614
|
+
"borderWidth": "{palette.border.border3}"
|
|
1615
|
+
}
|
|
1616
|
+
},
|
|
1617
|
+
{
|
|
1618
|
+
"if": {
|
|
1619
|
+
"inactive": true
|
|
1620
|
+
},
|
|
1621
|
+
"tokens": {
|
|
1622
|
+
"backgroundColor": "{palette.color.transparent}",
|
|
1623
|
+
"borderWidth": "{system.border.zero}",
|
|
1624
|
+
"iconColor": "{palette.color.white}"
|
|
1625
|
+
}
|
|
1626
|
+
},
|
|
1627
|
+
{
|
|
1628
|
+
"if": {
|
|
1629
|
+
"inactive": true,
|
|
1630
|
+
"password": true
|
|
1631
|
+
},
|
|
1632
|
+
"tokens": {
|
|
1633
|
+
"iconColor": "{palette.color.silver}"
|
|
1634
|
+
}
|
|
1463
1635
|
}
|
|
1464
1636
|
],
|
|
1465
1637
|
"tokens": {
|
|
@@ -1490,10 +1662,10 @@
|
|
|
1490
1662
|
"gap": "{palette.size.size8}",
|
|
1491
1663
|
"hintColor": "{palette.color.black}",
|
|
1492
1664
|
"hintFontName": "{palette.fontName.StagSans}",
|
|
1493
|
-
"hintFontSize": "{palette.fontSize.
|
|
1665
|
+
"hintFontSize": "{palette.fontSize.size14}",
|
|
1494
1666
|
"hintFontWeight": "{palette.fontWeight.weight400}",
|
|
1495
|
-
"hintLineHeight": "{palette.lineHeight.
|
|
1496
|
-
"lineHeight": "{palette.lineHeight.
|
|
1667
|
+
"hintLineHeight": "{palette.lineHeight.ratio10to7}",
|
|
1668
|
+
"lineHeight": "{palette.lineHeight.multiply150}"
|
|
1497
1669
|
}
|
|
1498
1670
|
},
|
|
1499
1671
|
"InputSupports": {
|
|
@@ -1505,12 +1677,22 @@
|
|
|
1505
1677
|
},
|
|
1506
1678
|
"Link": {
|
|
1507
1679
|
"appearances": {
|
|
1680
|
+
"alternative": {
|
|
1681
|
+
"type": "variant",
|
|
1682
|
+
"values": [true]
|
|
1683
|
+
},
|
|
1684
|
+
"focus": "{appearances.Link.focus}",
|
|
1508
1685
|
"hover": "{appearances.Link.hover}",
|
|
1509
1686
|
"iconPosition": "{appearances.Link.iconPosition}",
|
|
1510
|
-
"
|
|
1511
|
-
"description": "Prominence of the link.",
|
|
1687
|
+
"inverse": {
|
|
1512
1688
|
"type": "variant",
|
|
1513
|
-
"values": [
|
|
1689
|
+
"values": [true]
|
|
1690
|
+
},
|
|
1691
|
+
"pressed": "{appearances.Link.pressed}",
|
|
1692
|
+
"size": {
|
|
1693
|
+
"description": "Text sizes for block links; similar but not always identical to Typography sizes.",
|
|
1694
|
+
"type": "variant",
|
|
1695
|
+
"values": ["micro", "small", "large"]
|
|
1514
1696
|
}
|
|
1515
1697
|
},
|
|
1516
1698
|
"rules": [
|
|
@@ -1522,6 +1704,26 @@
|
|
|
1522
1704
|
"iconSpace": "{system.integer.2}"
|
|
1523
1705
|
}
|
|
1524
1706
|
},
|
|
1707
|
+
{
|
|
1708
|
+
"if": {
|
|
1709
|
+
"focus": true
|
|
1710
|
+
},
|
|
1711
|
+
"tokens": {
|
|
1712
|
+
"color": "{palette.color.mosque}",
|
|
1713
|
+
"outerBorderColor": "{palette.color.mosque}",
|
|
1714
|
+
"outerBorderOutline": "{system.borderStyle.none}"
|
|
1715
|
+
}
|
|
1716
|
+
},
|
|
1717
|
+
{
|
|
1718
|
+
"if": {
|
|
1719
|
+
"focus": true,
|
|
1720
|
+
"pressed": true
|
|
1721
|
+
},
|
|
1722
|
+
"tokens": {
|
|
1723
|
+
"color": "{palette.color.mortar}",
|
|
1724
|
+
"outerBorderColor": "{palette.color.mortar}"
|
|
1725
|
+
}
|
|
1726
|
+
},
|
|
1525
1727
|
{
|
|
1526
1728
|
"if": {
|
|
1527
1729
|
"hover": true
|
|
@@ -1533,19 +1735,137 @@
|
|
|
1533
1735
|
},
|
|
1534
1736
|
{
|
|
1535
1737
|
"if": {
|
|
1536
|
-
"
|
|
1738
|
+
"pressed": true
|
|
1537
1739
|
},
|
|
1538
1740
|
"tokens": {
|
|
1539
|
-
"color": "{palette.color.
|
|
1741
|
+
"color": "{palette.color.mortar}",
|
|
1742
|
+
"textLine": "{system.textLine.none}"
|
|
1743
|
+
}
|
|
1744
|
+
},
|
|
1745
|
+
{
|
|
1746
|
+
"if": {
|
|
1747
|
+
"alternative": true
|
|
1748
|
+
},
|
|
1749
|
+
"tokens": {
|
|
1750
|
+
"color": "{palette.color.dove}"
|
|
1751
|
+
}
|
|
1752
|
+
},
|
|
1753
|
+
{
|
|
1754
|
+
"if": {
|
|
1755
|
+
"alternative": true,
|
|
1756
|
+
"focus": true
|
|
1757
|
+
},
|
|
1758
|
+
"tokens": {
|
|
1759
|
+
"color": "{palette.color.dove}",
|
|
1760
|
+
"outerBorderColor": "{palette.color.dove}"
|
|
1761
|
+
}
|
|
1762
|
+
},
|
|
1763
|
+
{
|
|
1764
|
+
"if": {
|
|
1765
|
+
"alternative": true,
|
|
1766
|
+
"focus": true,
|
|
1767
|
+
"pressed": true
|
|
1768
|
+
},
|
|
1769
|
+
"tokens": {
|
|
1770
|
+
"color": "{palette.color.mortar}",
|
|
1771
|
+
"outerBorderColor": "{palette.color.mortar}"
|
|
1772
|
+
}
|
|
1773
|
+
},
|
|
1774
|
+
{
|
|
1775
|
+
"if": {
|
|
1776
|
+
"alternative": true,
|
|
1777
|
+
"hover": true
|
|
1778
|
+
},
|
|
1779
|
+
"tokens": {
|
|
1780
|
+
"color": "{palette.color.doveDark}"
|
|
1781
|
+
}
|
|
1782
|
+
},
|
|
1783
|
+
{
|
|
1784
|
+
"if": {
|
|
1785
|
+
"alternative": true,
|
|
1786
|
+
"pressed": true
|
|
1787
|
+
},
|
|
1788
|
+
"tokens": {
|
|
1789
|
+
"color": "{palette.color.mortar}"
|
|
1790
|
+
}
|
|
1791
|
+
},
|
|
1792
|
+
{
|
|
1793
|
+
"if": {
|
|
1794
|
+
"inverse": true
|
|
1795
|
+
},
|
|
1796
|
+
"tokens": {
|
|
1797
|
+
"color": "{palette.color.icicle}"
|
|
1798
|
+
}
|
|
1799
|
+
},
|
|
1800
|
+
{
|
|
1801
|
+
"if": {
|
|
1802
|
+
"focus": true,
|
|
1803
|
+
"inverse": true
|
|
1804
|
+
},
|
|
1805
|
+
"tokens": {
|
|
1806
|
+
"color": "{palette.color.icicle}",
|
|
1807
|
+
"outerBorderColor": "{palette.color.icicle}"
|
|
1808
|
+
}
|
|
1809
|
+
},
|
|
1810
|
+
{
|
|
1811
|
+
"if": {
|
|
1812
|
+
"focus": true,
|
|
1813
|
+
"inverse": true,
|
|
1814
|
+
"pressed": true
|
|
1815
|
+
},
|
|
1816
|
+
"tokens": {
|
|
1817
|
+
"color": "{palette.color.silver}",
|
|
1818
|
+
"outerBorderColor": "{palette.color.silver}"
|
|
1540
1819
|
}
|
|
1541
1820
|
},
|
|
1542
1821
|
{
|
|
1543
1822
|
"if": {
|
|
1544
1823
|
"hover": true,
|
|
1545
|
-
"
|
|
1824
|
+
"inverse": true
|
|
1825
|
+
},
|
|
1826
|
+
"tokens": {
|
|
1827
|
+
"color": "{palette.color.icicleDark}"
|
|
1828
|
+
}
|
|
1829
|
+
},
|
|
1830
|
+
{
|
|
1831
|
+
"if": {
|
|
1832
|
+
"inverse": true,
|
|
1833
|
+
"pressed": true
|
|
1546
1834
|
},
|
|
1547
1835
|
"tokens": {
|
|
1548
|
-
"color": "{palette.color.
|
|
1836
|
+
"color": "{palette.color.silver}"
|
|
1837
|
+
}
|
|
1838
|
+
},
|
|
1839
|
+
{
|
|
1840
|
+
"if": {
|
|
1841
|
+
"size": "micro"
|
|
1842
|
+
},
|
|
1843
|
+
"tokens": {
|
|
1844
|
+
"blockFontName": "{palette.fontName.StagSans}",
|
|
1845
|
+
"blockFontSize": "{palette.fontSize.size12}",
|
|
1846
|
+
"blockFontWeight": "{palette.fontWeight.weight600}",
|
|
1847
|
+
"blockLineHeight": "{palette.lineHeight.ratio4to3}",
|
|
1848
|
+
"iconSize": "{palette.size.size16}"
|
|
1849
|
+
}
|
|
1850
|
+
},
|
|
1851
|
+
{
|
|
1852
|
+
"if": {
|
|
1853
|
+
"size": "small"
|
|
1854
|
+
},
|
|
1855
|
+
"tokens": {
|
|
1856
|
+
"blockFontSize": "{palette.fontSize.size14}",
|
|
1857
|
+
"blockLineHeight": "{palette.lineHeight.ratio10to7}",
|
|
1858
|
+
"iconSize": "{palette.size.size20}"
|
|
1859
|
+
}
|
|
1860
|
+
},
|
|
1861
|
+
{
|
|
1862
|
+
"if": {
|
|
1863
|
+
"size": "large"
|
|
1864
|
+
},
|
|
1865
|
+
"tokens": {
|
|
1866
|
+
"blockFontSize": "{palette.fontSize.size20}",
|
|
1867
|
+
"blockLineHeight": "{palette.lineHeight.ratio7to5}",
|
|
1868
|
+
"iconSize": "{palette.size.size24}"
|
|
1549
1869
|
}
|
|
1550
1870
|
}
|
|
1551
1871
|
],
|
|
@@ -1554,7 +1874,7 @@
|
|
|
1554
1874
|
"blockFontName": "{palette.fontName.StagSans}",
|
|
1555
1875
|
"blockFontSize": "{palette.fontSize.size16}",
|
|
1556
1876
|
"blockFontWeight": "{palette.fontWeight.weight600}",
|
|
1557
|
-
"blockLineHeight": "{palette.lineHeight.
|
|
1877
|
+
"blockLineHeight": "{palette.lineHeight.ratio3to2}",
|
|
1558
1878
|
"borderRadius": "{palette.radius.radius4}",
|
|
1559
1879
|
"color": "{palette.color.mosque}",
|
|
1560
1880
|
"icon": "{system.icon.none}",
|
|
@@ -1563,9 +1883,9 @@
|
|
|
1563
1883
|
"iconTranslateX": "{system.size.zero}",
|
|
1564
1884
|
"iconTranslateY": "{system.size.zero}",
|
|
1565
1885
|
"outerBorderColor": "{palette.color.transparent}",
|
|
1566
|
-
"outerBorderGap": "{palette.size.
|
|
1886
|
+
"outerBorderGap": "{palette.size.size2}",
|
|
1567
1887
|
"outerBorderOutline": "{system.borderStyle.none}",
|
|
1568
|
-
"outerBorderWidth": "{palette.border.
|
|
1888
|
+
"outerBorderWidth": "{palette.border.border2}",
|
|
1569
1889
|
"textLine": "{system.textLine.underline}",
|
|
1570
1890
|
"textLineStyle": "{system.textLineStyle.solid}"
|
|
1571
1891
|
}
|
|
@@ -2089,9 +2409,7 @@
|
|
|
2089
2409
|
"hover": true
|
|
2090
2410
|
},
|
|
2091
2411
|
"tokens": {
|
|
2092
|
-
"
|
|
2093
|
-
"borderColor": "{palette.color.mosqueDark}",
|
|
2094
|
-
"color": "{palette.color.white}"
|
|
2412
|
+
"borderWidth": "{palette.border.border3}"
|
|
2095
2413
|
}
|
|
2096
2414
|
},
|
|
2097
2415
|
{
|
|
@@ -2099,9 +2417,9 @@
|
|
|
2099
2417
|
"pressed": true
|
|
2100
2418
|
},
|
|
2101
2419
|
"tokens": {
|
|
2102
|
-
"backgroundColor": "{palette.color.
|
|
2103
|
-
"borderColor": "{palette.color.
|
|
2104
|
-
"
|
|
2420
|
+
"backgroundColor": "{palette.color.silver}",
|
|
2421
|
+
"borderColor": "{palette.color.dove}",
|
|
2422
|
+
"iconColor": "{palette.color.dove}"
|
|
2105
2423
|
}
|
|
2106
2424
|
},
|
|
2107
2425
|
{
|
|
@@ -2109,22 +2427,32 @@
|
|
|
2109
2427
|
"focus": true
|
|
2110
2428
|
},
|
|
2111
2429
|
"tokens": {
|
|
2112
|
-
"outerBorderColor": "{palette.color.
|
|
2430
|
+
"outerBorderColor": "{palette.color.dove}"
|
|
2431
|
+
}
|
|
2432
|
+
},
|
|
2433
|
+
{
|
|
2434
|
+
"if": {
|
|
2435
|
+
"focus": true,
|
|
2436
|
+
"pressed": true
|
|
2437
|
+
},
|
|
2438
|
+
"tokens": {
|
|
2439
|
+
"borderWidth": "{palette.border.border1}",
|
|
2440
|
+
"outerBorderColor": "{palette.color.dove}"
|
|
2113
2441
|
}
|
|
2114
2442
|
}
|
|
2115
2443
|
],
|
|
2116
2444
|
"tokens": {
|
|
2117
2445
|
"alignSelf": "{system.flexAlign.flexStart}",
|
|
2118
|
-
"backgroundColor": "{palette.color.
|
|
2119
|
-
"borderColor": "{palette.color.
|
|
2120
|
-
"borderRadius": "{palette.radius.
|
|
2121
|
-
"borderWidth": "{palette.border.
|
|
2122
|
-
"color": "{palette.color.
|
|
2446
|
+
"backgroundColor": "{palette.color.white}",
|
|
2447
|
+
"borderColor": "{palette.color.dove}",
|
|
2448
|
+
"borderRadius": "{palette.radius.radius48}",
|
|
2449
|
+
"borderWidth": "{palette.border.border1}",
|
|
2450
|
+
"color": "{palette.color.dove}",
|
|
2123
2451
|
"fontName": "{palette.fontName.StagSans}",
|
|
2124
2452
|
"fontSize": "{palette.fontSize.size16}",
|
|
2125
2453
|
"fontWeight": "{palette.fontWeight.weight600}",
|
|
2126
2454
|
"icon": "{system.icon.none}",
|
|
2127
|
-
"iconColor": "{palette.color.
|
|
2455
|
+
"iconColor": "{palette.color.mosque}",
|
|
2128
2456
|
"iconSize": "{palette.size.size24}",
|
|
2129
2457
|
"iconSpace": "{system.integer.2}",
|
|
2130
2458
|
"lineHeight": "{palette.lineHeight.multiply150}",
|
|
@@ -2134,10 +2462,10 @@
|
|
|
2134
2462
|
"outerBorderColor": "{palette.color.white}",
|
|
2135
2463
|
"outerBorderGap": "{palette.size.size2}",
|
|
2136
2464
|
"outerBorderWidth": "{palette.border.border2}",
|
|
2137
|
-
"paddingBottom": "{palette.size.
|
|
2465
|
+
"paddingBottom": "{palette.size.size12}",
|
|
2138
2466
|
"paddingLeft": "{palette.size.size24}",
|
|
2139
2467
|
"paddingRight": "{palette.size.size24}",
|
|
2140
|
-
"paddingTop": "{palette.size.
|
|
2468
|
+
"paddingTop": "{palette.size.size12}",
|
|
2141
2469
|
"shadow": "{system.shadow.none}",
|
|
2142
2470
|
"textAlign": "{system.flexJustifyContent.center}",
|
|
2143
2471
|
"width": "{system.size.none}"
|
|
@@ -2147,16 +2475,16 @@
|
|
|
2147
2475
|
"appearances": {},
|
|
2148
2476
|
"rules": [],
|
|
2149
2477
|
"tokens": {
|
|
2150
|
-
"backgroundColor": "{palette.color.
|
|
2151
|
-
"borderColor": "{
|
|
2152
|
-
"borderRadius": "{palette.radius.
|
|
2153
|
-
"borderWidth": "{palette.border.
|
|
2478
|
+
"backgroundColor": "{palette.color.white}",
|
|
2479
|
+
"borderColor": "{palette.color.silver}",
|
|
2480
|
+
"borderRadius": "{palette.radius.radius8}",
|
|
2481
|
+
"borderWidth": "{palette.border.border1}",
|
|
2154
2482
|
"flex": "{system.integer.1}",
|
|
2155
2483
|
"minWidth": "{system.size.none}",
|
|
2156
|
-
"paddingBottom": "{palette.size.
|
|
2157
|
-
"paddingLeft": "{palette.size.
|
|
2158
|
-
"paddingRight": "{palette.size.
|
|
2159
|
-
"paddingTop": "{palette.size.
|
|
2484
|
+
"paddingBottom": "{palette.size.size8}",
|
|
2485
|
+
"paddingLeft": "{palette.size.size12}",
|
|
2486
|
+
"paddingRight": "{palette.size.size12}",
|
|
2487
|
+
"paddingTop": "{palette.size.size8}",
|
|
2160
2488
|
"shadow": "{system.shadow.none}"
|
|
2161
2489
|
}
|
|
2162
2490
|
},
|
|
@@ -2226,7 +2554,7 @@
|
|
|
2226
2554
|
"hover": true
|
|
2227
2555
|
},
|
|
2228
2556
|
"tokens": {
|
|
2229
|
-
"backgroundColor": "{palette.color.
|
|
2557
|
+
"backgroundColor": "{palette.color.gallery}"
|
|
2230
2558
|
}
|
|
2231
2559
|
},
|
|
2232
2560
|
{
|
|
@@ -2234,7 +2562,7 @@
|
|
|
2234
2562
|
"focus": true
|
|
2235
2563
|
},
|
|
2236
2564
|
"tokens": {
|
|
2237
|
-
"backgroundColor": "{palette.color.
|
|
2565
|
+
"backgroundColor": "{palette.color.gallery}"
|
|
2238
2566
|
}
|
|
2239
2567
|
},
|
|
2240
2568
|
{
|
|
@@ -2242,7 +2570,8 @@
|
|
|
2242
2570
|
"pressed": true
|
|
2243
2571
|
},
|
|
2244
2572
|
"tokens": {
|
|
2245
|
-
"backgroundColor": "{palette.color.
|
|
2573
|
+
"backgroundColor": "{palette.color.silver}",
|
|
2574
|
+
"itemIconColor": "{palette.color.black}"
|
|
2246
2575
|
}
|
|
2247
2576
|
}
|
|
2248
2577
|
],
|
|
@@ -2250,25 +2579,25 @@
|
|
|
2250
2579
|
"backgroundColor": "{system.color.none}",
|
|
2251
2580
|
"dividerColor": "{palette.color.silver}",
|
|
2252
2581
|
"dividerSize": "{palette.border.border1}",
|
|
2253
|
-
"iconMarginTop": "{palette.size.
|
|
2582
|
+
"iconMarginTop": "{palette.size.size0}",
|
|
2254
2583
|
"interItemMargin": "{system.size.none}",
|
|
2255
2584
|
"interItemMarginWithDivider": "{system.size.none}",
|
|
2256
2585
|
"itemBulletColor": "{palette.color.flirt}",
|
|
2257
2586
|
"itemBulletContainerAlign": "{system.textAlign.center}",
|
|
2258
|
-
"itemBulletContainerWidth": "{palette.size.
|
|
2259
|
-
"itemBulletHeight": "{palette.size.
|
|
2260
|
-
"itemBulletWidth": "{palette.size.
|
|
2587
|
+
"itemBulletContainerWidth": "{palette.size.size0}",
|
|
2588
|
+
"itemBulletHeight": "{palette.size.size0}",
|
|
2589
|
+
"itemBulletWidth": "{palette.size.size0}",
|
|
2261
2590
|
"itemFontName": "{palette.fontName.StagSans}",
|
|
2262
2591
|
"itemFontSize": "{palette.fontSize.size16}",
|
|
2263
2592
|
"itemFontWeight": "{palette.fontWeight.weight600}",
|
|
2264
|
-
"itemIconColor": "{palette.color.
|
|
2265
|
-
"itemIconSize": "{palette.size.
|
|
2266
|
-
"itemLineHeight": "{palette.lineHeight.
|
|
2593
|
+
"itemIconColor": "{palette.color.mosque}",
|
|
2594
|
+
"itemIconSize": "{palette.size.size24}",
|
|
2595
|
+
"itemLineHeight": "{palette.lineHeight.multiply160}",
|
|
2267
2596
|
"listGutter": "{palette.size.size10}",
|
|
2268
|
-
"paddingBottom": "{palette.size.
|
|
2269
|
-
"paddingLeft": "{palette.size.
|
|
2270
|
-
"paddingRight": "{palette.size.
|
|
2271
|
-
"paddingTop": "{palette.size.
|
|
2597
|
+
"paddingBottom": "{palette.size.size12}",
|
|
2598
|
+
"paddingLeft": "{palette.size.size4}",
|
|
2599
|
+
"paddingRight": "{palette.size.size4}",
|
|
2600
|
+
"paddingTop": "{palette.size.size12}"
|
|
2272
2601
|
}
|
|
2273
2602
|
},
|
|
2274
2603
|
"Radio": {
|
|
@@ -3171,6 +3500,11 @@
|
|
|
3171
3500
|
"focus": "{appearances.TextInput.focus}",
|
|
3172
3501
|
"hover": "{appearances.TextInput.hover}",
|
|
3173
3502
|
"inactive": "{appearances.TextInput.inactive}",
|
|
3503
|
+
"password": {
|
|
3504
|
+
"description": "capability that helps masking and unmasking text",
|
|
3505
|
+
"type": "variant",
|
|
3506
|
+
"values": [true]
|
|
3507
|
+
},
|
|
3174
3508
|
"validation": "{appearances.TextInput.validation}"
|
|
3175
3509
|
},
|
|
3176
3510
|
"rules": [
|
|
@@ -3248,7 +3582,9 @@
|
|
|
3248
3582
|
"paddingBottom": "{palette.size.size10}",
|
|
3249
3583
|
"paddingLeft": "{palette.size.size16}",
|
|
3250
3584
|
"paddingRight": "{palette.size.size16}",
|
|
3251
|
-
"paddingTop": "{palette.size.size10}"
|
|
3585
|
+
"paddingTop": "{palette.size.size10}",
|
|
3586
|
+
"passwordHideButtonIcon": "{palette.icon.EyeMasked}",
|
|
3587
|
+
"passwordShowButtonIcon": "{palette.icon.EyeUnmasked}"
|
|
3252
3588
|
}
|
|
3253
3589
|
},
|
|
3254
3590
|
"Timeline": {
|
|
@@ -3521,6 +3857,11 @@
|
|
|
3521
3857
|
"type": "variant",
|
|
3522
3858
|
"values": ["red"]
|
|
3523
3859
|
},
|
|
3860
|
+
"compact": {
|
|
3861
|
+
"description": "Reduces line height on some body text styles. For data-rich content, not for flow content",
|
|
3862
|
+
"type": "variant",
|
|
3863
|
+
"values": [true]
|
|
3864
|
+
},
|
|
3524
3865
|
"inverse": {
|
|
3525
3866
|
"description": "Styles the link white for use on dark backgrounds.",
|
|
3526
3867
|
"type": "variant",
|
|
@@ -3528,7 +3869,20 @@
|
|
|
3528
3869
|
},
|
|
3529
3870
|
"size": {
|
|
3530
3871
|
"type": "variant",
|
|
3531
|
-
"values": [
|
|
3872
|
+
"values": [
|
|
3873
|
+
"micro",
|
|
3874
|
+
"small",
|
|
3875
|
+
"medium",
|
|
3876
|
+
"large",
|
|
3877
|
+
"h1",
|
|
3878
|
+
"h2",
|
|
3879
|
+
"h3",
|
|
3880
|
+
"h4",
|
|
3881
|
+
"h5",
|
|
3882
|
+
"h6",
|
|
3883
|
+
"display1",
|
|
3884
|
+
"display2"
|
|
3885
|
+
]
|
|
3532
3886
|
},
|
|
3533
3887
|
"viewport": "{appearances.system.viewport}",
|
|
3534
3888
|
"weight": {
|
|
@@ -3562,7 +3916,34 @@
|
|
|
3562
3916
|
},
|
|
3563
3917
|
"tokens": {
|
|
3564
3918
|
"fontSize": "{palette.fontSize.size20}",
|
|
3565
|
-
"lineHeight": "{palette.lineHeight.
|
|
3919
|
+
"lineHeight": "{palette.lineHeight.ratio7to5}"
|
|
3920
|
+
}
|
|
3921
|
+
},
|
|
3922
|
+
{
|
|
3923
|
+
"if": {
|
|
3924
|
+
"compact": true,
|
|
3925
|
+
"size": "large"
|
|
3926
|
+
},
|
|
3927
|
+
"tokens": {
|
|
3928
|
+
"lineHeight": "{palette.lineHeight.ratio6to5}"
|
|
3929
|
+
}
|
|
3930
|
+
},
|
|
3931
|
+
{
|
|
3932
|
+
"if": {
|
|
3933
|
+
"size": "medium"
|
|
3934
|
+
},
|
|
3935
|
+
"tokens": {
|
|
3936
|
+
"fontSize": "{palette.fontSize.size16}",
|
|
3937
|
+
"lineHeight": "{palette.lineHeight.ratio3to2}"
|
|
3938
|
+
}
|
|
3939
|
+
},
|
|
3940
|
+
{
|
|
3941
|
+
"if": {
|
|
3942
|
+
"compact": true,
|
|
3943
|
+
"size": "medium"
|
|
3944
|
+
},
|
|
3945
|
+
"tokens": {
|
|
3946
|
+
"lineHeight": "{palette.lineHeight.ratio5to4}"
|
|
3566
3947
|
}
|
|
3567
3948
|
},
|
|
3568
3949
|
{
|
|
@@ -3571,28 +3952,76 @@
|
|
|
3571
3952
|
},
|
|
3572
3953
|
"tokens": {
|
|
3573
3954
|
"fontSize": "{palette.fontSize.size14}",
|
|
3574
|
-
"lineHeight": "{palette.lineHeight.
|
|
3955
|
+
"lineHeight": "{palette.lineHeight.ratio10to7}"
|
|
3956
|
+
}
|
|
3957
|
+
},
|
|
3958
|
+
{
|
|
3959
|
+
"if": {
|
|
3960
|
+
"compact": true,
|
|
3961
|
+
"size": "small"
|
|
3962
|
+
},
|
|
3963
|
+
"tokens": {
|
|
3964
|
+
"lineHeight": "{palette.lineHeight.ratio8to7}"
|
|
3965
|
+
}
|
|
3966
|
+
},
|
|
3967
|
+
{
|
|
3968
|
+
"if": {
|
|
3969
|
+
"size": "micro"
|
|
3970
|
+
},
|
|
3971
|
+
"tokens": {
|
|
3972
|
+
"fontSize": "{palette.fontSize.size12}",
|
|
3973
|
+
"lineHeight": "{palette.lineHeight.ratio4to3}"
|
|
3974
|
+
}
|
|
3975
|
+
},
|
|
3976
|
+
{
|
|
3977
|
+
"if": {
|
|
3978
|
+
"compact": true,
|
|
3979
|
+
"size": "micro"
|
|
3980
|
+
},
|
|
3981
|
+
"tokens": {
|
|
3982
|
+
"lineHeight": "{palette.lineHeight.ratio4to3}"
|
|
3983
|
+
}
|
|
3984
|
+
},
|
|
3985
|
+
{
|
|
3986
|
+
"if": {
|
|
3987
|
+
"size": "display1"
|
|
3988
|
+
},
|
|
3989
|
+
"tokens": {
|
|
3990
|
+
"fontName": "{palette.fontName.StagSans}",
|
|
3991
|
+
"fontSize": "{palette.fontSize.size44}",
|
|
3992
|
+
"fontWeight": "{palette.fontWeight.weight700}",
|
|
3993
|
+
"lineHeight": "{palette.lineHeight.ratio11to9}"
|
|
3994
|
+
}
|
|
3995
|
+
},
|
|
3996
|
+
{
|
|
3997
|
+
"if": {
|
|
3998
|
+
"size": "display1",
|
|
3999
|
+
"viewport": ["lg", "xl"]
|
|
4000
|
+
},
|
|
4001
|
+
"tokens": {
|
|
4002
|
+
"fontSize": "{palette.fontSize.size70}",
|
|
4003
|
+
"lineHeight": "{palette.lineHeight.ratio6to5}"
|
|
3575
4004
|
}
|
|
3576
4005
|
},
|
|
3577
4006
|
{
|
|
3578
4007
|
"if": {
|
|
3579
|
-
"size": "
|
|
4008
|
+
"size": "display2"
|
|
3580
4009
|
},
|
|
3581
4010
|
"tokens": {
|
|
3582
4011
|
"fontName": "{palette.fontName.StagSans}",
|
|
3583
|
-
"fontSize": "{palette.fontSize.
|
|
4012
|
+
"fontSize": "{palette.fontSize.size36}",
|
|
3584
4013
|
"fontWeight": "{palette.fontWeight.weight700}",
|
|
3585
|
-
"lineHeight": "{palette.lineHeight.
|
|
4014
|
+
"lineHeight": "{palette.lineHeight.ratio11to9}"
|
|
3586
4015
|
}
|
|
3587
4016
|
},
|
|
3588
4017
|
{
|
|
3589
4018
|
"if": {
|
|
3590
|
-
"size": "
|
|
4019
|
+
"size": "display2",
|
|
3591
4020
|
"viewport": ["lg", "xl"]
|
|
3592
4021
|
},
|
|
3593
4022
|
"tokens": {
|
|
3594
|
-
"fontSize": "{palette.fontSize.
|
|
3595
|
-
"lineHeight": "{palette.lineHeight.
|
|
4023
|
+
"fontSize": "{palette.fontSize.size54}",
|
|
4024
|
+
"lineHeight": "{palette.lineHeight.ratio8to7}"
|
|
3596
4025
|
}
|
|
3597
4026
|
},
|
|
3598
4027
|
{
|
|
@@ -3601,9 +4030,9 @@
|
|
|
3601
4030
|
},
|
|
3602
4031
|
"tokens": {
|
|
3603
4032
|
"fontName": "{palette.fontName.StagSans}",
|
|
3604
|
-
"fontSize": "{palette.fontSize.
|
|
4033
|
+
"fontSize": "{palette.fontSize.size34}",
|
|
3605
4034
|
"fontWeight": "{palette.fontWeight.weight700}",
|
|
3606
|
-
"lineHeight": "{palette.lineHeight.
|
|
4035
|
+
"lineHeight": "{palette.lineHeight.ratio11to9}"
|
|
3607
4036
|
}
|
|
3608
4037
|
},
|
|
3609
4038
|
{
|
|
@@ -3612,8 +4041,8 @@
|
|
|
3612
4041
|
"viewport": ["lg", "xl"]
|
|
3613
4042
|
},
|
|
3614
4043
|
"tokens": {
|
|
3615
|
-
"fontSize": "{palette.fontSize.
|
|
3616
|
-
"lineHeight": "{palette.lineHeight.
|
|
4044
|
+
"fontSize": "{palette.fontSize.size44}",
|
|
4045
|
+
"lineHeight": "{palette.lineHeight.ratio11to9}"
|
|
3617
4046
|
}
|
|
3618
4047
|
},
|
|
3619
4048
|
{
|
|
@@ -3623,50 +4052,53 @@
|
|
|
3623
4052
|
"tokens": {
|
|
3624
4053
|
"color": "{palette.color.black}",
|
|
3625
4054
|
"fontName": "{palette.fontName.StagSans}",
|
|
3626
|
-
"fontSize": "{palette.fontSize.
|
|
4055
|
+
"fontSize": "{palette.fontSize.size32}",
|
|
3627
4056
|
"fontWeight": "{palette.fontWeight.weight700}",
|
|
3628
|
-
"lineHeight": "{palette.lineHeight.
|
|
4057
|
+
"lineHeight": "{palette.lineHeight.ratio5to4}"
|
|
3629
4058
|
}
|
|
3630
4059
|
},
|
|
3631
4060
|
{
|
|
3632
4061
|
"if": {
|
|
3633
|
-
"size": "
|
|
3634
|
-
"viewport": ["lg", "xl"]
|
|
4062
|
+
"size": "h3"
|
|
3635
4063
|
},
|
|
3636
4064
|
"tokens": {
|
|
3637
|
-
"
|
|
4065
|
+
"fontName": "{palette.fontName.StagSans}",
|
|
4066
|
+
"fontSize": "{palette.fontSize.size24}",
|
|
4067
|
+
"fontWeight": "{palette.fontWeight.weight700}",
|
|
4068
|
+
"lineHeight": "{palette.lineHeight.ratio4to3}"
|
|
3638
4069
|
}
|
|
3639
4070
|
},
|
|
3640
4071
|
{
|
|
3641
4072
|
"if": {
|
|
3642
|
-
"size": "
|
|
4073
|
+
"size": "h4"
|
|
3643
4074
|
},
|
|
3644
4075
|
"tokens": {
|
|
3645
4076
|
"fontName": "{palette.fontName.StagSans}",
|
|
3646
4077
|
"fontSize": "{palette.fontSize.size20}",
|
|
3647
4078
|
"fontWeight": "{palette.fontWeight.weight700}",
|
|
3648
|
-
"lineHeight": "{palette.lineHeight.
|
|
4079
|
+
"lineHeight": "{palette.lineHeight.ratio6to5}"
|
|
3649
4080
|
}
|
|
3650
4081
|
},
|
|
3651
4082
|
{
|
|
3652
4083
|
"if": {
|
|
3653
|
-
"size": "
|
|
3654
|
-
"viewport": ["lg", "xl"]
|
|
4084
|
+
"size": "h5"
|
|
3655
4085
|
},
|
|
3656
4086
|
"tokens": {
|
|
3657
|
-
"
|
|
3658
|
-
"
|
|
4087
|
+
"fontName": "{palette.fontName.StagSans}",
|
|
4088
|
+
"fontSize": "{palette.fontSize.size18}",
|
|
4089
|
+
"fontWeight": "{palette.fontWeight.weight700}",
|
|
4090
|
+
"lineHeight": "{palette.lineHeight.ratio11to9}"
|
|
3659
4091
|
}
|
|
3660
4092
|
},
|
|
3661
4093
|
{
|
|
3662
4094
|
"if": {
|
|
3663
|
-
"size": "
|
|
4095
|
+
"size": "h6"
|
|
3664
4096
|
},
|
|
3665
4097
|
"tokens": {
|
|
3666
4098
|
"fontName": "{palette.fontName.StagSans}",
|
|
3667
4099
|
"fontSize": "{palette.fontSize.size16}",
|
|
3668
4100
|
"fontWeight": "{palette.fontWeight.weight700}",
|
|
3669
|
-
"lineHeight": "{palette.lineHeight.
|
|
4101
|
+
"lineHeight": "{palette.lineHeight.ratio5to4}"
|
|
3670
4102
|
}
|
|
3671
4103
|
},
|
|
3672
4104
|
{
|