@telus-uds/theme-koodo 4.6.0 → 4.8.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 +976 -643
- package/build/android/theme.json +598 -138
- package/build/ios/schema.json +976 -643
- package/build/ios/theme.json +598 -138
- package/build/rn/schema.json +976 -643
- package/build/rn/theme.js +402 -76
- package/package.json +4 -4
- package/theme.json +458 -69
package/theme.json
CHANGED
|
@@ -473,6 +473,11 @@
|
|
|
473
473
|
"focus": true
|
|
474
474
|
},
|
|
475
475
|
"tokens": {
|
|
476
|
+
"borderBottomWidth": "{palette.border.border4}",
|
|
477
|
+
"borderLeftWidth": "{palette.border.border4}",
|
|
478
|
+
"borderRightWidth": "{palette.border.border4}",
|
|
479
|
+
"borderTopWidth": "{palette.border.border4}",
|
|
480
|
+
"color": "{palette.color.black}",
|
|
476
481
|
"outerBorderColor": "{palette.color.mosque}",
|
|
477
482
|
"outerBorderGap": "{palette.size.size2}"
|
|
478
483
|
}
|
|
@@ -1313,7 +1318,7 @@
|
|
|
1313
1318
|
},
|
|
1314
1319
|
"padding": {
|
|
1315
1320
|
"type": "variant",
|
|
1316
|
-
"values": ["custom"]
|
|
1321
|
+
"values": ["narrow", "intermediate", "compact", "custom"]
|
|
1317
1322
|
},
|
|
1318
1323
|
"viewport": "{appearances.system.viewport}"
|
|
1319
1324
|
},
|
|
@@ -1323,7 +1328,9 @@
|
|
|
1323
1328
|
"background": "alternative"
|
|
1324
1329
|
},
|
|
1325
1330
|
"tokens": {
|
|
1326
|
-
"backgroundColor": "{palette.color.icicle}"
|
|
1331
|
+
"backgroundColor": "{palette.color.icicle}",
|
|
1332
|
+
"borderRadius": "{palette.radius.none}",
|
|
1333
|
+
"borderWidth": "{palette.border.none}"
|
|
1327
1334
|
}
|
|
1328
1335
|
},
|
|
1329
1336
|
{
|
|
@@ -1332,7 +1339,7 @@
|
|
|
1332
1339
|
},
|
|
1333
1340
|
"tokens": {
|
|
1334
1341
|
"backgroundColor": "{palette.color.carouselPink}",
|
|
1335
|
-
"
|
|
1342
|
+
"borderWidth": "{palette.border.none}"
|
|
1336
1343
|
}
|
|
1337
1344
|
},
|
|
1338
1345
|
{
|
|
@@ -1341,7 +1348,6 @@
|
|
|
1341
1348
|
},
|
|
1342
1349
|
"tokens": {
|
|
1343
1350
|
"borderColor": "{palette.color.mosque}",
|
|
1344
|
-
"borderRadius": "{palette.radius.radius8}",
|
|
1345
1351
|
"borderWidth": "{palette.border.border1}"
|
|
1346
1352
|
}
|
|
1347
1353
|
},
|
|
@@ -1350,7 +1356,9 @@
|
|
|
1350
1356
|
"background": "feature"
|
|
1351
1357
|
},
|
|
1352
1358
|
"tokens": {
|
|
1353
|
-
"backgroundColor": "{palette.color.texas}"
|
|
1359
|
+
"backgroundColor": "{palette.color.texas}",
|
|
1360
|
+
"borderRadius": "{palette.radius.none}",
|
|
1361
|
+
"borderWidth": "{palette.border.none}"
|
|
1354
1362
|
}
|
|
1355
1363
|
},
|
|
1356
1364
|
{
|
|
@@ -1364,6 +1372,63 @@
|
|
|
1364
1372
|
"paddingTop": "{palette.size.size48}"
|
|
1365
1373
|
}
|
|
1366
1374
|
},
|
|
1375
|
+
{
|
|
1376
|
+
"if": {
|
|
1377
|
+
"padding": "narrow"
|
|
1378
|
+
},
|
|
1379
|
+
"tokens": {
|
|
1380
|
+
"paddingBottom": "{palette.size.size24}",
|
|
1381
|
+
"paddingLeft": "{palette.size.size16}",
|
|
1382
|
+
"paddingRight": "{palette.size.size16}",
|
|
1383
|
+
"paddingTop": "{palette.size.size24}"
|
|
1384
|
+
}
|
|
1385
|
+
},
|
|
1386
|
+
{
|
|
1387
|
+
"if": {
|
|
1388
|
+
"padding": "narrow",
|
|
1389
|
+
"viewport": ["md", "lg", "xl"]
|
|
1390
|
+
},
|
|
1391
|
+
"tokens": {
|
|
1392
|
+
"paddingBottom": "{palette.size.size32}",
|
|
1393
|
+
"paddingLeft": "{palette.size.size16}",
|
|
1394
|
+
"paddingRight": "{palette.size.size16}",
|
|
1395
|
+
"paddingTop": "{palette.size.size32}"
|
|
1396
|
+
}
|
|
1397
|
+
},
|
|
1398
|
+
{
|
|
1399
|
+
"if": {
|
|
1400
|
+
"padding": "intermediate"
|
|
1401
|
+
},
|
|
1402
|
+
"tokens": {
|
|
1403
|
+
"paddingBottom": "{palette.size.size24}",
|
|
1404
|
+
"paddingLeft": "{palette.size.size24}",
|
|
1405
|
+
"paddingRight": "{palette.size.size24}",
|
|
1406
|
+
"paddingTop": "{palette.size.size24}"
|
|
1407
|
+
}
|
|
1408
|
+
},
|
|
1409
|
+
{
|
|
1410
|
+
"if": {
|
|
1411
|
+
"padding": "intermediate",
|
|
1412
|
+
"viewport": ["md", "lg", "xl"]
|
|
1413
|
+
},
|
|
1414
|
+
"tokens": {
|
|
1415
|
+
"paddingBottom": "{palette.size.size32}",
|
|
1416
|
+
"paddingLeft": "{palette.size.size32}",
|
|
1417
|
+
"paddingRight": "{palette.size.size32}",
|
|
1418
|
+
"paddingTop": "{palette.size.size32}"
|
|
1419
|
+
}
|
|
1420
|
+
},
|
|
1421
|
+
{
|
|
1422
|
+
"if": {
|
|
1423
|
+
"padding": "compact"
|
|
1424
|
+
},
|
|
1425
|
+
"tokens": {
|
|
1426
|
+
"paddingBottom": "{palette.size.size16}",
|
|
1427
|
+
"paddingLeft": "{palette.size.size16}",
|
|
1428
|
+
"paddingRight": "{palette.size.size16}",
|
|
1429
|
+
"paddingTop": "{palette.size.size16}"
|
|
1430
|
+
}
|
|
1431
|
+
},
|
|
1367
1432
|
{
|
|
1368
1433
|
"if": {
|
|
1369
1434
|
"padding": "custom"
|
|
@@ -1386,6 +1451,7 @@
|
|
|
1386
1451
|
"contentFlexShrink": "{system.integer.1}",
|
|
1387
1452
|
"contentJustifyContent": "{system.flexJustifyContent.flexStart}",
|
|
1388
1453
|
"flex": "{system.integer.1}",
|
|
1454
|
+
"gradient": "{system.gradient.none}",
|
|
1389
1455
|
"minWidth": "{system.size.none}",
|
|
1390
1456
|
"paddingBottom": "{palette.size.size32}",
|
|
1391
1457
|
"paddingLeft": "{palette.size.size24}",
|
|
@@ -2036,7 +2102,7 @@
|
|
|
2036
2102
|
"tokens": {
|
|
2037
2103
|
"borderColor": "{palette.color.transparent}",
|
|
2038
2104
|
"borderStyle": "{system.borderStyle.solid}",
|
|
2039
|
-
"borderWidth": "{
|
|
2105
|
+
"borderWidth": "{system.border.zero}"
|
|
2040
2106
|
}
|
|
2041
2107
|
},
|
|
2042
2108
|
"ExpandCollapseControl": {
|
|
@@ -2063,7 +2129,6 @@
|
|
|
2063
2129
|
"mini": true
|
|
2064
2130
|
},
|
|
2065
2131
|
"tokens": {
|
|
2066
|
-
"backgroundColor": "{palette.color.transparent}",
|
|
2067
2132
|
"borderColor": "{palette.color.transparent}",
|
|
2068
2133
|
"borderWidth": "{system.border.zero}",
|
|
2069
2134
|
"icon": "{palette.icon.ChevronDown}",
|
|
@@ -2121,7 +2186,21 @@
|
|
|
2121
2186
|
},
|
|
2122
2187
|
"ExpandCollapseMiniControl": {
|
|
2123
2188
|
"appearances": {
|
|
2124
|
-
"
|
|
2189
|
+
"alternative": {
|
|
2190
|
+
"description": "Replaces the default green colour with black",
|
|
2191
|
+
"type": "variant",
|
|
2192
|
+
"values": [true]
|
|
2193
|
+
},
|
|
2194
|
+
"expanded": "{appearances.ExpandCollapseControl.expanded}",
|
|
2195
|
+
"inverse": {
|
|
2196
|
+
"description": "Replaces the default green colour with white. Useful for dark backgrounds.",
|
|
2197
|
+
"type": "variant",
|
|
2198
|
+
"values": [true]
|
|
2199
|
+
},
|
|
2200
|
+
"size": {
|
|
2201
|
+
"type": "variant",
|
|
2202
|
+
"values": ["micro", "small", "large"]
|
|
2203
|
+
}
|
|
2125
2204
|
},
|
|
2126
2205
|
"rules": [
|
|
2127
2206
|
{
|
|
@@ -2131,24 +2210,73 @@
|
|
|
2131
2210
|
"tokens": {
|
|
2132
2211
|
"icon": "{palette.icon.ChevronUp}"
|
|
2133
2212
|
}
|
|
2213
|
+
},
|
|
2214
|
+
{
|
|
2215
|
+
"if": {
|
|
2216
|
+
"alternative": true
|
|
2217
|
+
},
|
|
2218
|
+
"tokens": {
|
|
2219
|
+
"color": "{palette.color.black}"
|
|
2220
|
+
}
|
|
2221
|
+
},
|
|
2222
|
+
{
|
|
2223
|
+
"if": {
|
|
2224
|
+
"inverse": true
|
|
2225
|
+
},
|
|
2226
|
+
"tokens": {
|
|
2227
|
+
"color": "{palette.color.white}",
|
|
2228
|
+
"iconColor": "{palette.color.white}"
|
|
2229
|
+
}
|
|
2230
|
+
},
|
|
2231
|
+
{
|
|
2232
|
+
"if": {
|
|
2233
|
+
"size": "micro"
|
|
2234
|
+
},
|
|
2235
|
+
"tokens": {
|
|
2236
|
+
"fontSize": "{palette.fontSize.size12}",
|
|
2237
|
+
"iconSize": "{palette.size.size16}",
|
|
2238
|
+
"lineHeight": "{palette.lineHeight.ratio4to3}"
|
|
2239
|
+
}
|
|
2240
|
+
},
|
|
2241
|
+
{
|
|
2242
|
+
"if": {
|
|
2243
|
+
"size": "small"
|
|
2244
|
+
},
|
|
2245
|
+
"tokens": {
|
|
2246
|
+
"fontSize": "{palette.fontSize.size14}",
|
|
2247
|
+
"iconSize": "{palette.size.size20}",
|
|
2248
|
+
"lineHeight": "{palette.lineHeight.ratio14to1}"
|
|
2249
|
+
}
|
|
2250
|
+
},
|
|
2251
|
+
{
|
|
2252
|
+
"if": {
|
|
2253
|
+
"size": "large"
|
|
2254
|
+
},
|
|
2255
|
+
"tokens": {
|
|
2256
|
+
"fontSize": "{palette.fontSize.size20}",
|
|
2257
|
+
"lineHeight": "{palette.lineHeight.ratio8to5}"
|
|
2258
|
+
}
|
|
2134
2259
|
}
|
|
2135
2260
|
],
|
|
2136
2261
|
"tokens": {
|
|
2137
|
-
"backgroundColor": "{system.color.none}",
|
|
2138
2262
|
"borderColor": "{palette.color.transparent}",
|
|
2139
2263
|
"borderWidth": "{system.border.zero}",
|
|
2264
|
+
"color": "{palette.color.mosque}",
|
|
2265
|
+
"fontSize": "{palette.fontSize.size16}",
|
|
2140
2266
|
"icon": "{palette.icon.ChevronDown}",
|
|
2141
2267
|
"iconColor": "{palette.color.black}",
|
|
2142
2268
|
"iconGap": "{palette.size.size8}",
|
|
2143
2269
|
"iconPaddingTop": "{palette.size.size4}",
|
|
2144
2270
|
"iconPosition": "{system.position.left}",
|
|
2145
|
-
"iconSize": "{palette.size.
|
|
2271
|
+
"iconSize": "{palette.size.size24}",
|
|
2146
2272
|
"justifyContent": "{system.flexJustifyContent.flexStart}",
|
|
2273
|
+
"lineHeight": "{palette.lineHeight.ratio14to1}",
|
|
2147
2274
|
"paddingBottom": "{palette.size.size0}",
|
|
2148
2275
|
"paddingLeft": "{palette.size.size0}",
|
|
2149
2276
|
"paddingRight": "{palette.size.size0}",
|
|
2150
2277
|
"paddingTop": "{palette.size.size0}",
|
|
2151
2278
|
"size": "{palette.size.size4}",
|
|
2279
|
+
"textLine": "{system.textLine.none}",
|
|
2152
2280
|
"verticalAlign": "{system.verticalAlign.middle}"
|
|
2153
2281
|
}
|
|
2154
2282
|
},
|
|
@@ -2192,6 +2320,18 @@
|
|
|
2192
2320
|
"contentPaddingLeft": "{palette.size.size16}",
|
|
2193
2321
|
"contentPaddingRight": "{palette.size.size16}",
|
|
2194
2322
|
"contentPaddingTop": "{palette.size.size16}",
|
|
2323
|
+
"contentPanelBackgroundColor": "{palette.color.gallery}",
|
|
2324
|
+
"contentPanelBorderColor": "{palette.color.transparent}",
|
|
2325
|
+
"contentPanelBorderWidth": "{palette.border.none}",
|
|
2326
|
+
"contentPanelFontColor": "{palette.color.black}",
|
|
2327
|
+
"contentPanelFontName": "{palette.fontName.StagSans}",
|
|
2328
|
+
"contentPanelFontSize": "{palette.fontSize.size16}",
|
|
2329
|
+
"contentPanelFontWeight": "{palette.fontWeight.weight700}",
|
|
2330
|
+
"contentPanelLineHeight": "{palette.lineHeight.ratio3to2}",
|
|
2331
|
+
"contentPanelPaddingBottom": "{palette.size.size16}",
|
|
2332
|
+
"contentPanelPaddingLeft": "{palette.size.size24}",
|
|
2333
|
+
"contentPanelPaddingRight": "{palette.size.size24}",
|
|
2334
|
+
"contentPanelPaddingTop": "{palette.size.size16}",
|
|
2195
2335
|
"expandDividerColor": "{system.color.none}",
|
|
2196
2336
|
"expandDividerWidth": "{system.size.none}",
|
|
2197
2337
|
"expandDuration": "{palette.duration.duration300}",
|
|
@@ -3660,11 +3800,12 @@
|
|
|
3660
3800
|
"selected": true
|
|
3661
3801
|
},
|
|
3662
3802
|
"tokens": {
|
|
3663
|
-
"backgroundColor": "{palette.color.
|
|
3664
|
-
"borderColor": "{palette.color.
|
|
3665
|
-
"color": "{palette.color.
|
|
3803
|
+
"backgroundColor": "{palette.color.mosque}",
|
|
3804
|
+
"borderColor": "{palette.color.mosque}",
|
|
3805
|
+
"color": "{palette.color.white}",
|
|
3666
3806
|
"fontName": "{palette.fontName.StagSans}",
|
|
3667
|
-
"fontWeight": "{palette.fontWeight.
|
|
3807
|
+
"fontWeight": "{palette.fontWeight.weight600}",
|
|
3808
|
+
"outerBorderColor": "{palette.color.mosque}"
|
|
3668
3809
|
}
|
|
3669
3810
|
},
|
|
3670
3811
|
{
|
|
@@ -3672,10 +3813,8 @@
|
|
|
3672
3813
|
"focus": true
|
|
3673
3814
|
},
|
|
3674
3815
|
"tokens": {
|
|
3675
|
-
"backgroundColor": "{palette.color.white}",
|
|
3676
3816
|
"borderColor": "{palette.color.mosque}",
|
|
3677
|
-
"borderWidth": "{palette.border.
|
|
3678
|
-
"color": "{palette.color.mosque}"
|
|
3817
|
+
"borderWidth": "{palette.border.border4}"
|
|
3679
3818
|
}
|
|
3680
3819
|
},
|
|
3681
3820
|
{
|
|
@@ -3694,9 +3833,9 @@
|
|
|
3694
3833
|
"hover": true
|
|
3695
3834
|
},
|
|
3696
3835
|
"tokens": {
|
|
3697
|
-
"backgroundColor": "{palette.color.
|
|
3698
|
-
"borderColor": "{palette.color.
|
|
3699
|
-
"color": "{palette.color.
|
|
3836
|
+
"backgroundColor": "{palette.color.darkMosque}",
|
|
3837
|
+
"borderColor": "{palette.color.darkMosque}",
|
|
3838
|
+
"color": "{palette.color.white}"
|
|
3700
3839
|
}
|
|
3701
3840
|
},
|
|
3702
3841
|
{
|
|
@@ -3704,10 +3843,10 @@
|
|
|
3704
3843
|
"pressed": true
|
|
3705
3844
|
},
|
|
3706
3845
|
"tokens": {
|
|
3707
|
-
"backgroundColor": "{palette.color.
|
|
3708
|
-
"borderColor": "{palette.color.
|
|
3846
|
+
"backgroundColor": "{palette.color.mortar}",
|
|
3847
|
+
"borderColor": "{palette.color.mortar}",
|
|
3709
3848
|
"borderWidth": "{palette.border.border1}",
|
|
3710
|
-
"color": "{palette.color.
|
|
3849
|
+
"color": "{palette.color.silver}"
|
|
3711
3850
|
}
|
|
3712
3851
|
},
|
|
3713
3852
|
{
|
|
@@ -3715,10 +3854,37 @@
|
|
|
3715
3854
|
"viewport": ["xs", "sm", "md"]
|
|
3716
3855
|
},
|
|
3717
3856
|
"tokens": {
|
|
3718
|
-
"textAlign": "{system.flexJustifyContent.
|
|
3857
|
+
"textAlign": "{system.flexJustifyContent.spaceBetween}",
|
|
3719
3858
|
"width": "{palette.size.size288}"
|
|
3720
3859
|
}
|
|
3721
3860
|
},
|
|
3861
|
+
{
|
|
3862
|
+
"if": {
|
|
3863
|
+
"hover": true,
|
|
3864
|
+
"selected": true
|
|
3865
|
+
},
|
|
3866
|
+
"tokens": {
|
|
3867
|
+
"backgroundColor": "{palette.color.darkMosque}",
|
|
3868
|
+
"borderColor": "{palette.color.darkMosque}",
|
|
3869
|
+
"color": "{palette.color.white}",
|
|
3870
|
+
"fontName": "{palette.fontName.StagSans}",
|
|
3871
|
+
"fontWeight": "{palette.fontWeight.weight600}"
|
|
3872
|
+
}
|
|
3873
|
+
},
|
|
3874
|
+
{
|
|
3875
|
+
"if": {
|
|
3876
|
+
"pressed": true,
|
|
3877
|
+
"selected": true
|
|
3878
|
+
},
|
|
3879
|
+
"tokens": {
|
|
3880
|
+
"backgroundColor": "{palette.color.mortar}",
|
|
3881
|
+
"borderColor": "{palette.color.mortar}",
|
|
3882
|
+
"color": "{palette.color.silver}",
|
|
3883
|
+
"fontName": "{palette.fontName.StagSans}",
|
|
3884
|
+
"fontWeight": "{palette.fontWeight.weight600}",
|
|
3885
|
+
"outerBorderColor": "{palette.color.mortar}"
|
|
3886
|
+
}
|
|
3887
|
+
},
|
|
3722
3888
|
{
|
|
3723
3889
|
"if": {
|
|
3724
3890
|
"expanded": true
|
|
@@ -3732,24 +3898,24 @@
|
|
|
3732
3898
|
"alignSelf": "{system.flexAlign.flexStart}",
|
|
3733
3899
|
"backgroundColor": "{palette.color.white}",
|
|
3734
3900
|
"borderColor": "{palette.color.white}",
|
|
3735
|
-
"borderRadius": "{palette.radius.
|
|
3736
|
-
"borderWidth": "{palette.border.
|
|
3737
|
-
"color": "{palette.color.
|
|
3901
|
+
"borderRadius": "{palette.radius.radius4}",
|
|
3902
|
+
"borderWidth": "{palette.border.border4}",
|
|
3903
|
+
"color": "{palette.color.black}",
|
|
3738
3904
|
"fontName": "{palette.fontName.StagSans}",
|
|
3739
3905
|
"fontSize": "{palette.fontSize.size14}",
|
|
3740
|
-
"fontWeight": "{palette.fontWeight.
|
|
3906
|
+
"fontWeight": "{palette.fontWeight.weight600}",
|
|
3741
3907
|
"icoMenu": "{palette.icon.ChevronDown}",
|
|
3742
|
-
"lineHeight": "{palette.lineHeight.
|
|
3908
|
+
"lineHeight": "{palette.lineHeight.ratio8to5}",
|
|
3743
3909
|
"minWidth": "{palette.size.size0}",
|
|
3744
3910
|
"opacity": "{palette.opacity.opacity10}",
|
|
3745
3911
|
"outerBackgroundColor": "{palette.color.transparent}",
|
|
3746
3912
|
"outerBorderColor": "{palette.color.transparent}",
|
|
3747
3913
|
"outerBorderGap": "{palette.size.size0}",
|
|
3748
|
-
"outerBorderWidth": "{palette.border.
|
|
3749
|
-
"paddingBottom": "{palette.size.
|
|
3914
|
+
"outerBorderWidth": "{palette.border.none}",
|
|
3915
|
+
"paddingBottom": "{palette.size.size6}",
|
|
3750
3916
|
"paddingLeft": "{palette.size.size16}",
|
|
3751
3917
|
"paddingRight": "{palette.size.size16}",
|
|
3752
|
-
"paddingTop": "{palette.size.
|
|
3918
|
+
"paddingTop": "{palette.size.size6}",
|
|
3753
3919
|
"shadow": "{system.shadow.none}",
|
|
3754
3920
|
"textAlign": "{system.flexJustifyContent.center}",
|
|
3755
3921
|
"width": "{palette.size.size0}"
|
|
@@ -5427,18 +5593,37 @@
|
|
|
5427
5593
|
}
|
|
5428
5594
|
},
|
|
5429
5595
|
"SkipLink": {
|
|
5430
|
-
"appearances": {
|
|
5431
|
-
|
|
5596
|
+
"appearances": {
|
|
5597
|
+
"focus": "{appearances.SkipLink.focus}",
|
|
5598
|
+
"pressed": "{appearances.SkipLink.pressed}"
|
|
5599
|
+
},
|
|
5600
|
+
"rules": [
|
|
5601
|
+
{
|
|
5602
|
+
"if": {
|
|
5603
|
+
"focus": true,
|
|
5604
|
+
"pressed": true
|
|
5605
|
+
},
|
|
5606
|
+
"tokens": {
|
|
5607
|
+
"color": "{palette.color.mortar}",
|
|
5608
|
+
"outlineColor": "{palette.color.mortar}"
|
|
5609
|
+
}
|
|
5610
|
+
}
|
|
5611
|
+
],
|
|
5432
5612
|
"tokens": {
|
|
5433
|
-
"backgroundColor": "{palette.color.
|
|
5434
|
-
"borderRadius": "{palette.radius.
|
|
5435
|
-
"color": "{palette.color.
|
|
5613
|
+
"backgroundColor": "{palette.color.white}",
|
|
5614
|
+
"borderRadius": "{palette.radius.radius4}",
|
|
5615
|
+
"color": "{palette.color.mosque}",
|
|
5616
|
+
"fontName": "{palette.fontName.StagSans}",
|
|
5617
|
+
"fontSize": "{palette.fontSize.size16}",
|
|
5618
|
+
"fontWeight": "{palette.fontWeight.weight600}",
|
|
5619
|
+
"lineHeight": "{palette.lineHeight.ratio3to2}",
|
|
5436
5620
|
"outlineColor": "{palette.color.mosque}",
|
|
5437
5621
|
"outlineOffset": "{system.border.zero}",
|
|
5438
5622
|
"outlineStyle": "{system.borderStyle.solid}",
|
|
5439
5623
|
"outlineWidth": "{palette.border.border2}",
|
|
5440
|
-
"paddingHorizontal": "{palette.size.
|
|
5441
|
-
"paddingVertical": "{palette.size.
|
|
5624
|
+
"paddingHorizontal": "{palette.size.size2}",
|
|
5625
|
+
"paddingVertical": "{palette.size.size2}",
|
|
5626
|
+
"textLine": "{system.textLine.underline}"
|
|
5442
5627
|
}
|
|
5443
5628
|
},
|
|
5444
5629
|
"Spinner": {
|
|
@@ -5669,37 +5854,167 @@
|
|
|
5669
5854
|
"Table": {
|
|
5670
5855
|
"appearances": {
|
|
5671
5856
|
"spacing": {
|
|
5857
|
+
"description": "Adjusts the height of the table cell",
|
|
5858
|
+
"type": "variant",
|
|
5859
|
+
"values": ["compact", "default"]
|
|
5860
|
+
},
|
|
5861
|
+
"text": {
|
|
5862
|
+
"type": "variant",
|
|
5863
|
+
"values": ["small"]
|
|
5864
|
+
},
|
|
5865
|
+
"type": {
|
|
5672
5866
|
"type": "variant",
|
|
5673
|
-
"values": ["
|
|
5867
|
+
"values": ["subHeading", "rowHeading", "heading", "default"]
|
|
5674
5868
|
}
|
|
5675
5869
|
},
|
|
5676
5870
|
"rules": [
|
|
5677
5871
|
{
|
|
5678
5872
|
"if": {
|
|
5679
|
-
"spacing": "compact"
|
|
5873
|
+
"spacing": "compact",
|
|
5874
|
+
"type": "default"
|
|
5875
|
+
},
|
|
5876
|
+
"tokens": {
|
|
5877
|
+
"cellPaddingBottom": "{palette.size.size8}",
|
|
5878
|
+
"cellPaddingTop": "{palette.size.size8}",
|
|
5879
|
+
"fontSize": "{palette.fontSize.size16}",
|
|
5880
|
+
"lineHeight": "{palette.lineHeight.ratio5to4}"
|
|
5881
|
+
}
|
|
5882
|
+
},
|
|
5883
|
+
{
|
|
5884
|
+
"if": {
|
|
5885
|
+
"spacing": "compact",
|
|
5886
|
+
"type": "rowHeading"
|
|
5680
5887
|
},
|
|
5681
5888
|
"tokens": {
|
|
5682
5889
|
"cellPaddingBottom": "{palette.size.size8}",
|
|
5683
|
-
"cellPaddingTop": "{palette.size.size8}"
|
|
5890
|
+
"cellPaddingTop": "{palette.size.size8}",
|
|
5891
|
+
"fontName": "{palette.fontName.StagSans}",
|
|
5892
|
+
"fontSize": "{palette.fontSize.size16}",
|
|
5893
|
+
"fontWeight": "{palette.fontWeight.weight600}",
|
|
5894
|
+
"lineHeight": "{palette.lineHeight.ratio5to4}"
|
|
5895
|
+
}
|
|
5896
|
+
},
|
|
5897
|
+
{
|
|
5898
|
+
"if": {
|
|
5899
|
+
"spacing": "compact",
|
|
5900
|
+
"type": "subHeading"
|
|
5901
|
+
},
|
|
5902
|
+
"tokens": {
|
|
5903
|
+
"cellBackground": "{palette.color.greyLight}",
|
|
5904
|
+
"cellPaddingBottom": "{palette.size.size8}",
|
|
5905
|
+
"cellPaddingTop": "{palette.size.size8}",
|
|
5906
|
+
"fontName": "{palette.fontName.StagSans}",
|
|
5907
|
+
"fontSize": "{palette.fontSize.size16}",
|
|
5908
|
+
"fontWeight": "{palette.fontWeight.weight600}",
|
|
5909
|
+
"lineHeight": "{palette.lineHeight.ratio5to4}"
|
|
5910
|
+
}
|
|
5911
|
+
},
|
|
5912
|
+
{
|
|
5913
|
+
"if": {
|
|
5914
|
+
"spacing": "default",
|
|
5915
|
+
"type": "heading"
|
|
5916
|
+
},
|
|
5917
|
+
"tokens": {
|
|
5918
|
+
"cellBackground": "{palette.color.mintTulip}",
|
|
5919
|
+
"cellBoxShadowColor": "{palette.color.transparent}",
|
|
5920
|
+
"fontName": "{palette.fontName.StagSans}",
|
|
5921
|
+
"fontSize": "{palette.fontSize.size16}",
|
|
5922
|
+
"fontWeight": "{palette.fontWeight.weight600}",
|
|
5923
|
+
"lineHeight": "{palette.lineHeight.ratio3to2}"
|
|
5924
|
+
}
|
|
5925
|
+
},
|
|
5926
|
+
{
|
|
5927
|
+
"if": {
|
|
5928
|
+
"spacing": "compact",
|
|
5929
|
+
"type": "heading"
|
|
5930
|
+
},
|
|
5931
|
+
"tokens": {
|
|
5932
|
+
"cellBackground": "{palette.color.mintTulip}",
|
|
5933
|
+
"cellBoxShadowColor": "{palette.color.transparent}",
|
|
5934
|
+
"fontName": "{palette.fontName.StagSans}",
|
|
5935
|
+
"fontSize": "{palette.fontSize.size16}",
|
|
5936
|
+
"fontWeight": "{palette.fontWeight.weight600}",
|
|
5937
|
+
"lineHeight": "{palette.lineHeight.ratio5to4}"
|
|
5938
|
+
}
|
|
5939
|
+
},
|
|
5940
|
+
{
|
|
5941
|
+
"if": {
|
|
5942
|
+
"spacing": "default",
|
|
5943
|
+
"type": "subHeading"
|
|
5944
|
+
},
|
|
5945
|
+
"tokens": {
|
|
5946
|
+
"cellBackground": "{palette.color.greyLight}",
|
|
5947
|
+
"fontName": "{palette.fontName.StagSans}",
|
|
5948
|
+
"fontSize": "{palette.fontSize.size16}",
|
|
5949
|
+
"fontWeight": "{palette.fontWeight.weight600}",
|
|
5950
|
+
"lineHeight": "{palette.lineHeight.ratio3to2}"
|
|
5951
|
+
}
|
|
5952
|
+
},
|
|
5953
|
+
{
|
|
5954
|
+
"if": {
|
|
5955
|
+
"spacing": "default",
|
|
5956
|
+
"type": "rowHeading"
|
|
5957
|
+
},
|
|
5958
|
+
"tokens": {
|
|
5959
|
+
"fontName": "{palette.fontName.StagSans}",
|
|
5960
|
+
"fontSize": "{palette.fontSize.size16}",
|
|
5961
|
+
"fontWeight": "{palette.fontWeight.weight600}",
|
|
5962
|
+
"lineHeight": "{palette.lineHeight.ratio3to2}"
|
|
5963
|
+
}
|
|
5964
|
+
},
|
|
5965
|
+
{
|
|
5966
|
+
"if": {
|
|
5967
|
+
"text": "small",
|
|
5968
|
+
"type": "default"
|
|
5969
|
+
},
|
|
5970
|
+
"tokens": {
|
|
5971
|
+
"fontName": "{palette.fontName.StagSans}",
|
|
5972
|
+
"fontSize": "{palette.fontSize.size14}",
|
|
5973
|
+
"fontWeight": "{palette.fontWeight.weight400}",
|
|
5974
|
+
"lineHeight": "{palette.lineHeight.ratio10to7}"
|
|
5975
|
+
}
|
|
5976
|
+
},
|
|
5977
|
+
{
|
|
5978
|
+
"if": {
|
|
5979
|
+
"spacing": "default",
|
|
5980
|
+
"text": "small",
|
|
5981
|
+
"type": "rowHeading"
|
|
5982
|
+
},
|
|
5983
|
+
"tokens": {
|
|
5984
|
+
"fontName": "{palette.fontName.StagSans}",
|
|
5985
|
+
"fontSize": "{palette.fontSize.size14}",
|
|
5986
|
+
"fontWeight": "{palette.fontWeight.weight600}",
|
|
5987
|
+
"lineHeight": "{palette.lineHeight.ratio10to7}"
|
|
5988
|
+
}
|
|
5989
|
+
},
|
|
5990
|
+
{
|
|
5991
|
+
"if": {
|
|
5992
|
+
"spacing": "compact",
|
|
5993
|
+
"text": "small",
|
|
5994
|
+
"type": "rowHeading"
|
|
5995
|
+
},
|
|
5996
|
+
"tokens": {
|
|
5997
|
+
"fontName": "{palette.fontName.StagSans}",
|
|
5998
|
+
"fontSize": "{palette.fontSize.size14}",
|
|
5999
|
+
"fontWeight": "{palette.fontWeight.weight600}",
|
|
6000
|
+
"lineHeight": "{palette.lineHeight.ratio8to7}"
|
|
5684
6001
|
}
|
|
5685
6002
|
}
|
|
5686
6003
|
],
|
|
5687
6004
|
"tokens": {
|
|
5688
6005
|
"cellBackground": "{palette.color.white}",
|
|
5689
6006
|
"cellBoxShadowColor": "{palette.color.gallery}",
|
|
5690
|
-
"cellHeadingBackground": "{palette.color.mintTulip}",
|
|
5691
|
-
"cellHeadingBoxShadowColor": "{palette.color.gallery}",
|
|
5692
6007
|
"cellMinWidth": "{palette.size.size0}",
|
|
5693
6008
|
"cellPaddingBottom": "{palette.size.size16}",
|
|
5694
6009
|
"cellPaddingLeft": "{palette.size.size16}",
|
|
5695
6010
|
"cellPaddingRight": "{palette.size.size16}",
|
|
5696
6011
|
"cellPaddingTop": "{palette.size.size16}",
|
|
5697
|
-
"
|
|
5698
|
-
"cellStickyShadow": "{palette.shadow.surfaceEmboss}",
|
|
5699
|
-
"cellSubheadingBackground": "{palette.color.greyLight}",
|
|
6012
|
+
"cellStickyShadow": "{palette.shadow.elevation1}",
|
|
5700
6013
|
"fontName": "{palette.fontName.StagSans}",
|
|
5701
6014
|
"fontSize": "{palette.fontSize.size16}",
|
|
5702
|
-
"fontWeight": "{palette.fontWeight.
|
|
6015
|
+
"fontWeight": "{palette.fontWeight.weight400}",
|
|
6016
|
+
"lineHeight": "{palette.lineHeight.ratio3to2}",
|
|
6017
|
+
"stickyBackgroundColor": "{palette.color.white}",
|
|
5703
6018
|
"tablePaddingBottom": "{palette.size.size24}"
|
|
5704
6019
|
}
|
|
5705
6020
|
},
|
|
@@ -5955,6 +6270,7 @@
|
|
|
5955
6270
|
"icon": "{palette.icon.Close}",
|
|
5956
6271
|
"iconBackground": "{palette.color.mosque}",
|
|
5957
6272
|
"iconColor": "{palette.color.white}",
|
|
6273
|
+
"iconPadding": "{palette.size.size4}",
|
|
5958
6274
|
"outerBorderColor": "{palette.color.transparent}",
|
|
5959
6275
|
"outerBorderWidth": "{palette.border.none}"
|
|
5960
6276
|
}
|
|
@@ -6044,7 +6360,7 @@
|
|
|
6044
6360
|
"outerBorderWidth": "{palette.border.none}",
|
|
6045
6361
|
"paddingBottom": "{palette.size.size8}",
|
|
6046
6362
|
"paddingLeft": "{palette.size.size16}",
|
|
6047
|
-
"paddingRight": "{palette.size.
|
|
6363
|
+
"paddingRight": "{palette.size.size16}",
|
|
6048
6364
|
"paddingTop": "{palette.size.size8}",
|
|
6049
6365
|
"shadow": "{system.shadow.none}",
|
|
6050
6366
|
"textAlign": "{system.flexJustifyContent.center}"
|
|
@@ -6052,9 +6368,20 @@
|
|
|
6052
6368
|
},
|
|
6053
6369
|
"TermsAndConditions": {
|
|
6054
6370
|
"appearances": {
|
|
6055
|
-
"expanded": "{appearances.TermsAndConditions.expanded}"
|
|
6371
|
+
"expanded": "{appearances.TermsAndConditions.expanded}",
|
|
6372
|
+
"viewport": "{appearances.system.viewport}"
|
|
6056
6373
|
},
|
|
6057
6374
|
"rules": [
|
|
6375
|
+
{
|
|
6376
|
+
"if": {
|
|
6377
|
+
"viewport": ["xs", "sm"]
|
|
6378
|
+
},
|
|
6379
|
+
"tokens": {
|
|
6380
|
+
"expandContentPaddingRight": "{palette.size.size24}",
|
|
6381
|
+
"listMarginLeft": "{palette.size.size2}",
|
|
6382
|
+
"titlePaddingLeft": "{palette.size.size2}"
|
|
6383
|
+
}
|
|
6384
|
+
},
|
|
6058
6385
|
{
|
|
6059
6386
|
"if": {
|
|
6060
6387
|
"expanded": true
|
|
@@ -6065,28 +6392,37 @@
|
|
|
6065
6392
|
}
|
|
6066
6393
|
],
|
|
6067
6394
|
"tokens": {
|
|
6395
|
+
"contentBorderColor": "{system.color.transparent}",
|
|
6396
|
+
"contentMarginBottom": "{palette.size.size0}",
|
|
6068
6397
|
"contentPaddingBottom": "{palette.size.size8}",
|
|
6069
6398
|
"contentPaddingLeft": "{palette.size.size16}",
|
|
6399
|
+
"dividerColor": "{palette.color.silver}",
|
|
6070
6400
|
"expandBaseBorderWidth": "{palette.border.none}",
|
|
6071
6401
|
"expandContentPaddingBottom": "{palette.size.size16}",
|
|
6072
6402
|
"expandContentPaddingLeft": "{palette.size.size16}",
|
|
6073
6403
|
"expandContentPaddingRight": "{palette.size.size16}",
|
|
6074
6404
|
"expandContentPaddingTop": "{palette.size.size16}",
|
|
6075
6405
|
"expandIconContainerAlignItems": "{system.flexAlign.center}",
|
|
6076
|
-
"expandIconContainerBorder": "{palette.border.
|
|
6077
|
-
"expandIconContainerBorderColor": "{palette.color.
|
|
6406
|
+
"expandIconContainerBorder": "{palette.border.none}",
|
|
6407
|
+
"expandIconContainerBorderColor": "{palette.color.transparent}",
|
|
6078
6408
|
"expandIconContainerHeight": "{palette.size.size32}",
|
|
6079
6409
|
"expandIconContainerJustifyContent": "{system.flexJustifyContent.center}",
|
|
6080
6410
|
"expandIconContainerMarginX": "{palette.size.size0}",
|
|
6081
6411
|
"expandIconContainerMarginY": "{palette.size.size12}",
|
|
6082
6412
|
"expandIconContainerWidth": "{palette.size.size32}",
|
|
6083
|
-
"
|
|
6413
|
+
"expandTitleBorder": "{palette.border.none}",
|
|
6414
|
+
"expandTitleBorderColor": "{palette.color.transparent}",
|
|
6415
|
+
"expandTitleColor": "{palette.color.black}",
|
|
6416
|
+
"expandTitleFontName": "{palette.fontName.StagSans}",
|
|
6084
6417
|
"expandTitleFontSize": "{palette.size.size16}",
|
|
6418
|
+
"expandTitleFontWeight": "{palette.fontWeight.weight600}",
|
|
6085
6419
|
"expandTitleLineHeight": "{palette.lineHeight.multiply150}",
|
|
6086
6420
|
"expandTitleMarginX": "{palette.size.size4}",
|
|
6087
6421
|
"expandTitleMarginY": "{palette.size.size0}",
|
|
6422
|
+
"expandTitlePaddingLeft": "{palette.size.size0}",
|
|
6423
|
+
"expandTitleUnderline": "{system.textLine.none}",
|
|
6088
6424
|
"icon": "{palette.icon.ChevronDown}",
|
|
6089
|
-
"listColor": "{palette.color.
|
|
6425
|
+
"listColor": "{palette.color.black}",
|
|
6090
6426
|
"listFontName": "{palette.fontName.StagSans}",
|
|
6091
6427
|
"listFontSize": "{palette.fontSize.size14}",
|
|
6092
6428
|
"listFontWeight": "{palette.fontWeight.weight400}",
|
|
@@ -6099,8 +6435,8 @@
|
|
|
6099
6435
|
"titleColor": "{palette.color.mosque}",
|
|
6100
6436
|
"titleFontSize": "{palette.fontSize.size14}",
|
|
6101
6437
|
"titleLineHeight": "{palette.lineHeight.ratio10to7}",
|
|
6102
|
-
"titlePaddingLeft": "{palette.size.
|
|
6103
|
-
"unorderedPadding": "{palette.size.
|
|
6438
|
+
"titlePaddingLeft": "{palette.size.size32}",
|
|
6439
|
+
"unorderedPadding": "{palette.size.size12}"
|
|
6104
6440
|
}
|
|
6105
6441
|
},
|
|
6106
6442
|
"Testimonial": {
|
|
@@ -6362,7 +6698,8 @@
|
|
|
6362
6698
|
"selected": true
|
|
6363
6699
|
},
|
|
6364
6700
|
"tokens": {
|
|
6365
|
-
"backgroundColor": "{palette.color.icicleDark}"
|
|
6701
|
+
"backgroundColor": "{palette.color.icicleDark}",
|
|
6702
|
+
"switchColor": "{palette.color.mosqueDark}"
|
|
6366
6703
|
}
|
|
6367
6704
|
},
|
|
6368
6705
|
{
|
|
@@ -6371,7 +6708,8 @@
|
|
|
6371
6708
|
"selected": true
|
|
6372
6709
|
},
|
|
6373
6710
|
"tokens": {
|
|
6374
|
-
"backgroundColor": "{palette.color.
|
|
6711
|
+
"backgroundColor": "{palette.color.silverDark}",
|
|
6712
|
+
"switchColor": "{palette.color.mortarDark}"
|
|
6375
6713
|
}
|
|
6376
6714
|
},
|
|
6377
6715
|
{
|
|
@@ -6432,26 +6770,29 @@
|
|
|
6432
6770
|
"labelFontSize": "{palette.fontSize.size16}",
|
|
6433
6771
|
"labelFontWeight": "{palette.fontWeight.weight600}",
|
|
6434
6772
|
"labelLineHeight": "{palette.lineHeight.multiply150}",
|
|
6435
|
-
"labelMarginLeft": "{palette.size.
|
|
6773
|
+
"labelMarginLeft": "{palette.size.size0}",
|
|
6436
6774
|
"opacity": "{system.opacity.opaque}",
|
|
6437
6775
|
"outerBackgroundColor": "{palette.color.transparent}",
|
|
6438
6776
|
"outerBorderColor": "{palette.color.transparent}",
|
|
6439
6777
|
"outerBorderGap": "{palette.size.size0}",
|
|
6778
|
+
"outerBorderGapButton": "{palette.size.size4}",
|
|
6440
6779
|
"outerBorderWidth": "{palette.border.none}",
|
|
6441
6780
|
"paddingBottom": "{system.size.zero}",
|
|
6442
6781
|
"paddingLeft": "{system.size.zero}",
|
|
6443
6782
|
"paddingRight": "{system.size.zero}",
|
|
6444
6783
|
"paddingTop": "{system.size.zero}",
|
|
6445
6784
|
"shadow": "{system.shadow.none}",
|
|
6785
|
+
"space": "{system.integer.2}",
|
|
6446
6786
|
"switchBorderColor": "{palette.color.transparent}",
|
|
6447
6787
|
"switchBorderRadius": "{palette.radius.pill32}",
|
|
6448
6788
|
"switchBorderWidth": "{palette.border.none}",
|
|
6449
6789
|
"switchColor": "{palette.color.mortar}",
|
|
6450
6790
|
"switchShadow": "{palette.shadow.surfaceRaised}",
|
|
6451
|
-
"switchSize": "{palette.size.
|
|
6791
|
+
"switchSize": "{palette.size.size24}",
|
|
6452
6792
|
"trackBorderColor": "{palette.color.transparent}",
|
|
6453
6793
|
"trackBorderRadius": "{palette.radius.radius12}",
|
|
6454
6794
|
"trackBorderWidth": "{palette.border.border3}",
|
|
6795
|
+
"trackHeight": "{palette.size.size20}",
|
|
6455
6796
|
"width": "{palette.size.size40}"
|
|
6456
6797
|
}
|
|
6457
6798
|
},
|
|
@@ -6982,6 +7323,7 @@
|
|
|
6982
7323
|
"fontWeight": "{palette.fontWeight.weight400}",
|
|
6983
7324
|
"letterSpacing": "{system.letterSpacing.none}",
|
|
6984
7325
|
"lineHeight": "{palette.lineHeight.multiply150}",
|
|
7326
|
+
"superScriptFontSize": "{system.fontSize.none}",
|
|
6985
7327
|
"textTransform": "{system.textTransform.none}"
|
|
6986
7328
|
}
|
|
6987
7329
|
},
|
|
@@ -7064,13 +7406,13 @@
|
|
|
7064
7406
|
"appearances": {},
|
|
7065
7407
|
"rules": [],
|
|
7066
7408
|
"tokens": {
|
|
7067
|
-
"framedContainerBackgroundColor": "{palette.color.
|
|
7068
|
-
"framedContainerBorderColor": "{palette.color.
|
|
7409
|
+
"framedContainerBackgroundColor": "{palette.color.greyLight}",
|
|
7410
|
+
"framedContainerBorderColor": "{palette.color.silver}",
|
|
7069
7411
|
"framedContainerBorderRadius": "{palette.radius.radius4}",
|
|
7070
7412
|
"framedContainerBorderWidth": "{palette.border.border1}",
|
|
7071
7413
|
"framedContainerPadding": "{palette.size.size24}",
|
|
7072
7414
|
"framedMaxHeight": "{palette.size.size640}",
|
|
7073
|
-
"stackViewDividerColor": "{palette.color.
|
|
7415
|
+
"stackViewDividerColor": "{palette.color.silver}"
|
|
7074
7416
|
}
|
|
7075
7417
|
},
|
|
7076
7418
|
"VideoPickerSlider": {
|
|
@@ -7082,20 +7424,67 @@
|
|
|
7082
7424
|
}
|
|
7083
7425
|
},
|
|
7084
7426
|
"VideoPickerThumbnail": {
|
|
7085
|
-
"appearances": {
|
|
7086
|
-
|
|
7427
|
+
"appearances": {
|
|
7428
|
+
"focus": "{appearances.VideoPickerThumbnail.focus}",
|
|
7429
|
+
"hover": "{appearances.VideoPickerThumbnail.hover}",
|
|
7430
|
+
"pressed": "{appearances.VideoPickerThumbnail.pressed}",
|
|
7431
|
+
"selected": "{appearances.VideoPickerThumbnail.selected}"
|
|
7432
|
+
},
|
|
7433
|
+
"rules": [
|
|
7434
|
+
{
|
|
7435
|
+
"if": {
|
|
7436
|
+
"focus": true
|
|
7437
|
+
},
|
|
7438
|
+
"tokens": {
|
|
7439
|
+
"borderColor": "{palette.color.mortar}",
|
|
7440
|
+
"borderWidth": "{palette.border.border1}",
|
|
7441
|
+
"outerBorderColor": "{palette.color.chathamsBlue}"
|
|
7442
|
+
}
|
|
7443
|
+
},
|
|
7444
|
+
{
|
|
7445
|
+
"if": {
|
|
7446
|
+
"hover": true
|
|
7447
|
+
},
|
|
7448
|
+
"tokens": {
|
|
7449
|
+
"borderColor": "{palette.color.silver}",
|
|
7450
|
+
"borderWidth": "{palette.border.border3}"
|
|
7451
|
+
}
|
|
7452
|
+
},
|
|
7453
|
+
{
|
|
7454
|
+
"if": {
|
|
7455
|
+
"pressed": true
|
|
7456
|
+
},
|
|
7457
|
+
"tokens": {
|
|
7458
|
+
"borderColor": "{palette.color.mortar}",
|
|
7459
|
+
"borderWidth": "{palette.border.border3}"
|
|
7460
|
+
}
|
|
7461
|
+
},
|
|
7462
|
+
{
|
|
7463
|
+
"if": {
|
|
7464
|
+
"selected": true
|
|
7465
|
+
},
|
|
7466
|
+
"tokens": {
|
|
7467
|
+
"borderColor": "{palette.color.mosque}",
|
|
7468
|
+
"titleColor": "{palette.color.mosque}"
|
|
7469
|
+
}
|
|
7470
|
+
}
|
|
7471
|
+
],
|
|
7087
7472
|
"tokens": {
|
|
7088
|
-
"borderColor": "{palette.color.
|
|
7473
|
+
"borderColor": "{palette.color.silver}",
|
|
7089
7474
|
"borderRadius": "{palette.radius.radius4}",
|
|
7090
7475
|
"borderWidth": "{palette.border.border2}",
|
|
7091
|
-
"
|
|
7476
|
+
"outerBorderColor": "{palette.color.transparent}",
|
|
7477
|
+
"outerBorderGap": "{palette.size.size2}",
|
|
7478
|
+
"outerBorderRadius": "{palette.radius.radius8}",
|
|
7479
|
+
"outerBorderWidth": "{palette.border.border2}",
|
|
7480
|
+
"pressableBorderTopColor": "{palette.color.silver}",
|
|
7092
7481
|
"pressableBorderTopWidth": "{palette.border.border1}",
|
|
7093
7482
|
"pressablePaddingBottom": "{palette.size.size16}",
|
|
7094
7483
|
"pressablePaddingHorizontal": "{palette.size.size24}",
|
|
7095
7484
|
"pressablePaddingVertical": "{palette.size.size16}",
|
|
7096
7485
|
"splashButtonRadius": "{palette.radius.radius4}",
|
|
7097
|
-
"subTitleColor": "{palette.color.
|
|
7098
|
-
"titleColor": "{palette.color.
|
|
7486
|
+
"subTitleColor": "{palette.color.mortar}",
|
|
7487
|
+
"titleColor": "{palette.color.black}"
|
|
7099
7488
|
}
|
|
7100
7489
|
},
|
|
7101
7490
|
"VideoProgressBar": {
|