@telus-uds/theme-koodo 3.23.0 → 3.24.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.
@@ -26,8 +26,8 @@
26
26
  "blue": 0.41569,
27
27
  "alpha": 1
28
28
  },
29
- "size": 40,
30
- "thickness": 4
29
+ "size": 24,
30
+ "thickness": 2
31
31
  }
32
32
  },
33
33
  "Badge": {
@@ -557,10 +557,15 @@
557
557
  "type": "variant",
558
558
  "values": [true]
559
559
  },
560
+ "viewport": {
561
+ "description": "The size label for the current screen viewport based on the current screen width",
562
+ "values": ["xs", "sm", "md", "lg", "xl"],
563
+ "type": "state"
564
+ },
560
565
  "width": {
561
- "description": "Available in default or full-width. Default-width expands based on content Full-width expands to width of the container.",
566
+ "description": "Available in default, full-width or responsive. Default-width expands based on content. Full-width expands to width of the container. Responsive automatically applies full-width when is displayed on the XS viewport.",
562
567
  "type": "variant",
563
- "values": ["full"]
568
+ "values": ["full", "responsive"]
564
569
  }
565
570
  },
566
571
  "rules": [
@@ -742,6 +747,15 @@
742
747
  "width": "100%"
743
748
  }
744
749
  },
750
+ {
751
+ "if": {
752
+ "viewport": ["xs"],
753
+ "width": "responsive"
754
+ },
755
+ "tokens": {
756
+ "width": "100%"
757
+ }
758
+ },
745
759
  {
746
760
  "if": {
747
761
  "size": "small"
@@ -1364,6 +1378,10 @@
1364
1378
  },
1365
1379
  "Callout": {
1366
1380
  "appearances": {
1381
+ "rounded": {
1382
+ "type": "variant",
1383
+ "values": [true]
1384
+ },
1367
1385
  "size": {
1368
1386
  "type": "variant",
1369
1387
  "values": ["small"]
@@ -1378,20 +1396,28 @@
1378
1396
  "paddingBottom": 4,
1379
1397
  "paddingTop": 4
1380
1398
  }
1399
+ },
1400
+ {
1401
+ "if": {
1402
+ "rounded": true
1403
+ },
1404
+ "tokens": {
1405
+ "borderRadius": 4
1406
+ }
1381
1407
  }
1382
1408
  ],
1383
1409
  "tokens": {
1384
1410
  "background": {
1385
- "red": 0.93725,
1386
- "green": 0.93725,
1387
- "blue": 0.93725,
1411
+ "red": 0.98039,
1412
+ "green": 0.90196,
1413
+ "blue": 0.95686,
1388
1414
  "alpha": 1
1389
1415
  },
1390
- "borderRadius": 4,
1416
+ "borderRadius": 0,
1391
1417
  "color": {
1392
- "red": 0,
1393
- "green": 0,
1394
- "blue": 0,
1418
+ "red": 0.48627,
1419
+ "green": 0.07451,
1420
+ "blue": 0.4,
1395
1421
  "alpha": 1
1396
1422
  },
1397
1423
  "gap": 16,
@@ -1931,6 +1957,135 @@
1931
1957
  "textLineHeight": 2.13
1932
1958
  }
1933
1959
  },
1960
+ "Countdown": {
1961
+ "appearances": {
1962
+ "feature": {
1963
+ "type": "variant",
1964
+ "values": [true]
1965
+ },
1966
+ "inverse": {
1967
+ "type": "variant",
1968
+ "values": [true]
1969
+ },
1970
+ "label": {
1971
+ "type": "variant",
1972
+ "values": [true]
1973
+ },
1974
+ "large": {
1975
+ "type": "variant",
1976
+ "values": [true]
1977
+ },
1978
+ "viewport": {
1979
+ "description": "The size label for the current screen viewport based on the current screen width",
1980
+ "values": ["xs", "sm", "md", "lg", "xl"],
1981
+ "type": "state"
1982
+ }
1983
+ },
1984
+ "rules": [
1985
+ {
1986
+ "if": {
1987
+ "viewport": ["xs"]
1988
+ },
1989
+ "tokens": {
1990
+ "containerPaddingBottomTop": 16,
1991
+ "containerPaddingLeftRight": 24,
1992
+ "labelFontSize": 14,
1993
+ "labelLineHeight": 1.42857142857,
1994
+ "textLineHeight": 1.14285714286
1995
+ }
1996
+ },
1997
+ {
1998
+ "if": {
1999
+ "large": true,
2000
+ "viewport": ["xs"]
2001
+ },
2002
+ "tokens": {
2003
+ "textFontSize": 28
2004
+ }
2005
+ },
2006
+ {
2007
+ "if": {
2008
+ "feature": true,
2009
+ "viewport": ["xs"]
2010
+ },
2011
+ "tokens": {
2012
+ "textFontSize": 28
2013
+ }
2014
+ },
2015
+ {
2016
+ "if": {
2017
+ "feature": true
2018
+ },
2019
+ "tokens": {
2020
+ "labelBorderColor": {
2021
+ "red": 0,
2022
+ "green": 0,
2023
+ "blue": 0,
2024
+ "alpha": 0
2025
+ },
2026
+ "textFontSize": 64,
2027
+ "textLineHeight": 1.14285714286,
2028
+ "textTimerFontName": "StagSans",
2029
+ "textTimerFontWeight": 300
2030
+ }
2031
+ },
2032
+ {
2033
+ "if": {
2034
+ "large": true
2035
+ },
2036
+ "tokens": {
2037
+ "textFontSize": 64,
2038
+ "textLineHeight": 1.14285714286,
2039
+ "textTimerFontName": "StagSans",
2040
+ "textTimerFontWeight": 300
2041
+ }
2042
+ },
2043
+ {
2044
+ "if": {
2045
+ "inverse": true
2046
+ },
2047
+ "tokens": {
2048
+ "labelBorderColor": {
2049
+ "red": 0,
2050
+ "green": 0,
2051
+ "blue": 0,
2052
+ "alpha": 0
2053
+ }
2054
+ }
2055
+ }
2056
+ ],
2057
+ "tokens": {
2058
+ "containerBorderRadius": 6,
2059
+ "containerGradient": null,
2060
+ "containerInverseBorder": 2,
2061
+ "containerInverseBorderColor": {
2062
+ "red": 1,
2063
+ "green": 1,
2064
+ "blue": 1,
2065
+ "alpha": 1
2066
+ },
2067
+ "containerPaddingBottomTop": 48,
2068
+ "containerPaddingLeftRight": 64,
2069
+ "inverseBorderColor": {
2070
+ "red": 0,
2071
+ "green": 0,
2072
+ "blue": 0,
2073
+ "alpha": 0
2074
+ },
2075
+ "labelBorderColor": {
2076
+ "red": 0,
2077
+ "green": 0,
2078
+ "blue": 0,
2079
+ "alpha": 0
2080
+ },
2081
+ "labelFontSize": 16,
2082
+ "labelLineHeight": 1.5,
2083
+ "textFontSize": 16,
2084
+ "textLineHeight": 1.14285714286,
2085
+ "textTimerFontName": "StagSans",
2086
+ "textTimerFontWeight": 400
2087
+ }
2088
+ },
1934
2089
  "DatePicker": {
1935
2090
  "appearances": {},
1936
2091
  "rules": [],
@@ -2862,6 +3017,78 @@
2862
3017
  "icon": "PaletteIconPlayVideo"
2863
3018
  }
2864
3019
  },
3020
+ {
3021
+ "if": {
3022
+ "action": "add"
3023
+ },
3024
+ "tokens": {
3025
+ "icon": "PaletteIconAdd"
3026
+ }
3027
+ },
3028
+ {
3029
+ "if": {
3030
+ "action": "subtract"
3031
+ },
3032
+ "tokens": {
3033
+ "icon": "PaletteIconSubtract"
3034
+ }
3035
+ },
3036
+ {
3037
+ "if": {
3038
+ "action": "close"
3039
+ },
3040
+ "tokens": {
3041
+ "icon": "PaletteIconClose"
3042
+ }
3043
+ },
3044
+ {
3045
+ "if": {
3046
+ "action": "expand"
3047
+ },
3048
+ "tokens": {
3049
+ "icon": "PaletteIconExpand"
3050
+ }
3051
+ },
3052
+ {
3053
+ "if": {
3054
+ "action": "moveDown"
3055
+ },
3056
+ "tokens": {
3057
+ "icon": "PaletteIconChevronDown"
3058
+ }
3059
+ },
3060
+ {
3061
+ "if": {
3062
+ "action": "moveLeft"
3063
+ },
3064
+ "tokens": {
3065
+ "icon": "PaletteIconChevronLeft"
3066
+ }
3067
+ },
3068
+ {
3069
+ "if": {
3070
+ "action": "moveRight"
3071
+ },
3072
+ "tokens": {
3073
+ "icon": "PaletteIconChevronRight"
3074
+ }
3075
+ },
3076
+ {
3077
+ "if": {
3078
+ "action": "moveUp"
3079
+ },
3080
+ "tokens": {
3081
+ "icon": "PaletteIconChevronUp"
3082
+ }
3083
+ },
3084
+ {
3085
+ "if": {
3086
+ "action": "play"
3087
+ },
3088
+ "tokens": {
3089
+ "icon": "PaletteIconPlayVideo"
3090
+ }
3091
+ },
2865
3092
  {
2866
3093
  "if": {
2867
3094
  "inverse": true
@@ -4414,6 +4641,67 @@
4414
4641
  "outlineWidth": 1
4415
4642
  }
4416
4643
  },
4644
+ "QuantitySelector": {
4645
+ "appearances": {
4646
+ "alternative": {
4647
+ "type": "variant",
4648
+ "values": [true]
4649
+ }
4650
+ },
4651
+ "rules": [
4652
+ {
4653
+ "if": {
4654
+ "alternative": true
4655
+ },
4656
+ "tokens": {
4657
+ "padding": 0
4658
+ }
4659
+ }
4660
+ ],
4661
+ "tokens": {
4662
+ "backgroundColor": {
4663
+ "red": 0,
4664
+ "green": 0,
4665
+ "blue": 0,
4666
+ "alpha": 0
4667
+ },
4668
+ "borderColor": {
4669
+ "red": 0,
4670
+ "green": 0,
4671
+ "blue": 0,
4672
+ "alpha": 0
4673
+ },
4674
+ "iconColor": {
4675
+ "red": 0,
4676
+ "green": 0,
4677
+ "blue": 0,
4678
+ "alpha": 0
4679
+ },
4680
+ "iconSize": 16,
4681
+ "inputBackgroundColor": {
4682
+ "red": 0,
4683
+ "green": 0,
4684
+ "blue": 0,
4685
+ "alpha": 0
4686
+ },
4687
+ "inputBorderColor": {
4688
+ "red": 0,
4689
+ "green": 0,
4690
+ "blue": 0,
4691
+ "alpha": 0
4692
+ },
4693
+ "inputBorderWidth": 1,
4694
+ "leftIcon": "PaletteIconSubtract",
4695
+ "padding": 16,
4696
+ "rightIcon": "PaletteIconAdd",
4697
+ "textColor": {
4698
+ "red": 0,
4699
+ "green": 0,
4700
+ "blue": 0,
4701
+ "alpha": 0
4702
+ }
4703
+ }
4704
+ },
4417
4705
  "QuickLinks": {
4418
4706
  "appearances": {
4419
4707
  "viewport": {
@@ -5834,13 +6122,88 @@
5834
6122
  "thickness": 4
5835
6123
  }
5836
6124
  },
5837
- "StackView": {
6125
+ "SplashButton": {
5838
6126
  "appearances": {},
5839
6127
  "rules": [],
5840
6128
  "tokens": {
5841
- "alignItems": "stretch",
5842
- "flexGrow": 0,
5843
- "flexShrink": 0,
6129
+ "buttonContentBackground": {
6130
+ "red": 0,
6131
+ "green": 0,
6132
+ "blue": 0,
6133
+ "alpha": 0
6134
+ },
6135
+ "buttonContentChildrenBackground": {
6136
+ "red": 0,
6137
+ "green": 0,
6138
+ "blue": 0,
6139
+ "alpha": 0
6140
+ },
6141
+ "playIcon": "PaletteIconPlayVideo",
6142
+ "playIconColor": {
6143
+ "red": 1,
6144
+ "green": 1,
6145
+ "blue": 1,
6146
+ "alpha": 1
6147
+ }
6148
+ }
6149
+ },
6150
+ "SplashButtonWithDetails": {
6151
+ "appearances": {},
6152
+ "rules": [],
6153
+ "tokens": {
6154
+ "buttonBackground": {
6155
+ "red": 1,
6156
+ "green": 1,
6157
+ "blue": 1,
6158
+ "alpha": 1
6159
+ },
6160
+ "buttonBorderColor": {
6161
+ "red": 0,
6162
+ "green": 0,
6163
+ "blue": 0,
6164
+ "alpha": 0
6165
+ },
6166
+ "buttonBottomPosition": 24,
6167
+ "buttonContentBackground": {
6168
+ "red": 0,
6169
+ "green": 0,
6170
+ "blue": 0,
6171
+ "alpha": 0
6172
+ },
6173
+ "buttonContentChildrenBackground": {
6174
+ "red": 0,
6175
+ "green": 0,
6176
+ "blue": 0,
6177
+ "alpha": 0
6178
+ },
6179
+ "buttonLeftPosition": 24,
6180
+ "buttonMinHeight": 64,
6181
+ "buttonPaddingLeft": 16,
6182
+ "buttonPaddingRight": 16,
6183
+ "buttonRadius": 32,
6184
+ "detailsContainerPadding": 8,
6185
+ "playIcon": "PaletteIconPlayVideo",
6186
+ "playIconColor": {
6187
+ "red": 1,
6188
+ "green": 1,
6189
+ "blue": 1,
6190
+ "alpha": 1
6191
+ },
6192
+ "playIconContainerBackground": {
6193
+ "red": 0,
6194
+ "green": 0,
6195
+ "blue": 0,
6196
+ "alpha": 0
6197
+ }
6198
+ }
6199
+ },
6200
+ "StackView": {
6201
+ "appearances": {},
6202
+ "rules": [],
6203
+ "tokens": {
6204
+ "alignItems": "stretch",
6205
+ "flexGrow": 0,
6206
+ "flexShrink": 0,
5844
6207
  "justifyContent": "flex-start"
5845
6208
  }
5846
6209
  },
@@ -6047,6 +6410,77 @@
6047
6410
  "showStepTrackerLabel": true
6048
6411
  }
6049
6412
  },
6413
+ "StoryCard": {
6414
+ "appearances": {
6415
+ "pressed": {
6416
+ "description": "Applies while an interactive component is being physically pressed. Most visible on touchscreen taps; in React Native Web, this is visible on web mouse clicks only if the pressable is held down.",
6417
+ "values": [true],
6418
+ "type": "state"
6419
+ }
6420
+ },
6421
+ "rules": [
6422
+ {
6423
+ "if": {
6424
+ "pressed": true
6425
+ },
6426
+ "tokens": {
6427
+ "backgroundColor": {
6428
+ "red": 0.90196,
6429
+ "green": 0.90196,
6430
+ "blue": 0.90196,
6431
+ "alpha": 1
6432
+ }
6433
+ }
6434
+ }
6435
+ ],
6436
+ "tokens": {
6437
+ "backgroundColor": {
6438
+ "red": 1,
6439
+ "green": 1,
6440
+ "blue": 1,
6441
+ "alpha": 1
6442
+ },
6443
+ "borderColor": {
6444
+ "red": 0.93725,
6445
+ "green": 0.93725,
6446
+ "blue": 0.93725,
6447
+ "alpha": 1
6448
+ },
6449
+ "borderRadius": 6,
6450
+ "borderWidth": 1,
6451
+ "contentAlignItems": "stretch",
6452
+ "contentFlexGrow": 0,
6453
+ "contentFlexShrink": 0,
6454
+ "contentJustifyContent": "flex-start",
6455
+ "flex": 1,
6456
+ "minWidth": 0,
6457
+ "outerBorderColor": {
6458
+ "red": 0,
6459
+ "green": 0,
6460
+ "blue": 0,
6461
+ "alpha": 0
6462
+ },
6463
+ "outerBorderGap": 0,
6464
+ "outerBorderWidth": 0,
6465
+ "paddingBottom": 0,
6466
+ "paddingLeft": 0,
6467
+ "paddingRight": 0,
6468
+ "paddingTop": 0,
6469
+ "shadow": {
6470
+ "inset": false,
6471
+ "offsetX": 0,
6472
+ "offsetY": 0,
6473
+ "blur": 0,
6474
+ "spread": 0,
6475
+ "color": {
6476
+ "red": 0,
6477
+ "green": 0,
6478
+ "blue": 0,
6479
+ "alpha": 0
6480
+ }
6481
+ }
6482
+ }
6483
+ },
6050
6484
  "Table": {
6051
6485
  "appearances": {
6052
6486
  "spacing": {
@@ -6489,6 +6923,113 @@
6489
6923
  "width": null
6490
6924
  }
6491
6925
  },
6926
+ "TermsAndConditions": {
6927
+ "appearances": {
6928
+ "expanded": {
6929
+ "description": "Applies when an ExpandCollapse panel is open and the content inside is visible",
6930
+ "values": [true],
6931
+ "type": "state"
6932
+ }
6933
+ },
6934
+ "rules": [
6935
+ {
6936
+ "if": {
6937
+ "expanded": true
6938
+ },
6939
+ "tokens": {
6940
+ "icon": "PaletteIconChevronUp"
6941
+ }
6942
+ }
6943
+ ],
6944
+ "tokens": {
6945
+ "contentPaddingBottom": 8,
6946
+ "contentPaddingLeft": 16,
6947
+ "expandBaseBorderWidth": 0,
6948
+ "expandContentPaddingBottom": 16,
6949
+ "expandContentPaddingLeft": 16,
6950
+ "expandContentPaddingRight": 16,
6951
+ "expandContentPaddingTop": 16,
6952
+ "expandIconContainerAlignItems": "center",
6953
+ "expandIconContainerBorder": 1,
6954
+ "expandIconContainerBorderColor": {
6955
+ "red": 0.93725,
6956
+ "green": 0.93725,
6957
+ "blue": 0.93725,
6958
+ "alpha": 1
6959
+ },
6960
+ "expandIconContainerHeight": 32,
6961
+ "expandIconContainerJustifyContent": "center",
6962
+ "expandIconContainerMarginX": 0,
6963
+ "expandIconContainerMarginY": 12,
6964
+ "expandIconContainerWidth": 32,
6965
+ "expandTitleColor": {
6966
+ "red": 0.93725,
6967
+ "green": 0.93725,
6968
+ "blue": 0.93725,
6969
+ "alpha": 1
6970
+ },
6971
+ "expandTitleFontSize": 16,
6972
+ "expandTitleLineHeight": 1.5,
6973
+ "expandTitleMarginX": 4,
6974
+ "expandTitleMarginY": 0,
6975
+ "icon": "PaletteIconChevronDown",
6976
+ "listColor": {
6977
+ "red": 0.00392,
6978
+ "green": 0.41961,
6979
+ "blue": 0.41569,
6980
+ "alpha": 1
6981
+ },
6982
+ "listFontName": "StagSans",
6983
+ "listFontSize": 14,
6984
+ "listFontWeight": 400,
6985
+ "listLineHeight": 1.42857142857,
6986
+ "listMarginBottom": 16,
6987
+ "listMarginLeft": 32,
6988
+ "mdContentPaddingBottom": 16,
6989
+ "mdContentPaddingLeft": 48,
6990
+ "orderedPadding": 0,
6991
+ "titleColor": {
6992
+ "red": 0.00392,
6993
+ "green": 0.41961,
6994
+ "blue": 0.41569,
6995
+ "alpha": 1
6996
+ },
6997
+ "titleFontSize": 14,
6998
+ "titleLineHeight": 1.42857142857,
6999
+ "titlePaddingLeft": 8,
7000
+ "unorderedPadding": 0
7001
+ }
7002
+ },
7003
+ "Testimonial": {
7004
+ "appearances": {},
7005
+ "rules": [],
7006
+ "tokens": {
7007
+ "dividerBackgroundColor": {
7008
+ "red": 1,
7009
+ "green": 1,
7010
+ "blue": 1,
7011
+ "alpha": 1
7012
+ },
7013
+ "dividerBorder": 1,
7014
+ "figcaptionGap": 12,
7015
+ "icon": "PaletteIconArrowLeft",
7016
+ "iconColor": {
7017
+ "red": 1,
7018
+ "green": 1,
7019
+ "blue": 1,
7020
+ "alpha": 1
7021
+ },
7022
+ "imageSize": 48,
7023
+ "quoteContainerGap": 4,
7024
+ "testimonialContainerGap": 12,
7025
+ "textColor": {
7026
+ "red": 1,
7027
+ "green": 1,
7028
+ "blue": 1,
7029
+ "alpha": 1
7030
+ }
7031
+ }
7032
+ },
6492
7033
  "TextArea": {
6493
7034
  "appearances": {},
6494
7035
  "rules": [],
@@ -7361,6 +7902,182 @@
7361
7902
  "textTransform": "none"
7362
7903
  }
7363
7904
  },
7905
+ "Video": {
7906
+ "appearances": {},
7907
+ "rules": [],
7908
+ "tokens": {
7909
+ "borderColor": {
7910
+ "red": 0,
7911
+ "green": 0,
7912
+ "blue": 0,
7913
+ "alpha": 1
7914
+ },
7915
+ "pauseIcon": "PaletteIconAdd",
7916
+ "playIcon": "PaletteIconAdd",
7917
+ "replayIcon": "PaletteIconAdd"
7918
+ }
7919
+ },
7920
+ "VideoButton": {
7921
+ "appearances": {},
7922
+ "rules": [],
7923
+ "tokens": {
7924
+ "color": {
7925
+ "red": 1,
7926
+ "green": 1,
7927
+ "blue": 1,
7928
+ "alpha": 1
7929
+ }
7930
+ }
7931
+ },
7932
+ "VideoControlBar": {
7933
+ "appearances": {},
7934
+ "rules": [],
7935
+ "tokens": {
7936
+ "captionsIcon": "PaletteIconAdd",
7937
+ "maximizeIcon": "PaletteIconAdd",
7938
+ "menuBottom": 64,
7939
+ "menuMarginLeft": 16,
7940
+ "menuRight": 32,
7941
+ "minimizeIcon": "PaletteIconAdd",
7942
+ "paddingBottom": 16,
7943
+ "paddingLeft": 48,
7944
+ "paddingLeftCompactMode": 16,
7945
+ "paddingRight": 48,
7946
+ "paddingRightCompactMode": 16,
7947
+ "paddingTop": 16,
7948
+ "settingsIcon": "PaletteIconSettings"
7949
+ }
7950
+ },
7951
+ "VideoMenu": {
7952
+ "appearances": {},
7953
+ "rules": [],
7954
+ "tokens": {
7955
+ "background": {
7956
+ "red": 0,
7957
+ "green": 0,
7958
+ "blue": 0,
7959
+ "alpha": 1
7960
+ },
7961
+ "checkMarkFocusColor": {
7962
+ "red": 0.00392,
7963
+ "green": 0.41961,
7964
+ "blue": 0.41569,
7965
+ "alpha": 1
7966
+ },
7967
+ "checkMarkHeight": 24,
7968
+ "checkMarkHoverColor": {
7969
+ "red": 0.00392,
7970
+ "green": 0.41961,
7971
+ "blue": 0.41569,
7972
+ "alpha": 1
7973
+ },
7974
+ "checkMarkIcon": "PaletteIconCheck",
7975
+ "checkMarkSelectedColor": {
7976
+ "red": 0,
7977
+ "green": 0,
7978
+ "blue": 0,
7979
+ "alpha": 1
7980
+ },
7981
+ "checkMarkUnselectedColor": {
7982
+ "red": 0,
7983
+ "green": 0,
7984
+ "blue": 0,
7985
+ "alpha": 0
7986
+ },
7987
+ "checkMarkWidth": 24,
7988
+ "padding": 16
7989
+ }
7990
+ },
7991
+ "VideoMiddleControlButton": {
7992
+ "appearances": {},
7993
+ "rules": [],
7994
+ "tokens": {
7995
+ "background": {
7996
+ "red": 0,
7997
+ "green": 0,
7998
+ "blue": 0,
7999
+ "alpha": 1
8000
+ },
8001
+ "height": 64,
8002
+ "iconColor": {
8003
+ "red": 1,
8004
+ "green": 1,
8005
+ "blue": 1,
8006
+ "alpha": 1
8007
+ },
8008
+ "width": 64
8009
+ }
8010
+ },
8011
+ "VideoProgressBar": {
8012
+ "appearances": {},
8013
+ "rules": [],
8014
+ "tokens": {
8015
+ "rangeBackground": {
8016
+ "red": 0,
8017
+ "green": 0,
8018
+ "blue": 0,
8019
+ "alpha": 0
8020
+ },
8021
+ "thumbBackground": {
8022
+ "red": 1,
8023
+ "green": 1,
8024
+ "blue": 1,
8025
+ "alpha": 1
8026
+ },
8027
+ "thumbHeight": 8,
8028
+ "thumbWidth": 8,
8029
+ "timestampMarginLeft": 8,
8030
+ "timestampMarginRight": 8,
8031
+ "trackGradientEnd": {
8032
+ "red": 0.00392,
8033
+ "green": 0.41961,
8034
+ "blue": 0.41569,
8035
+ "alpha": 1
8036
+ },
8037
+ "trackGradientStart": {
8038
+ "red": 0.00392,
8039
+ "green": 0.41961,
8040
+ "blue": 0.41569,
8041
+ "alpha": 1
8042
+ }
8043
+ }
8044
+ },
8045
+ "VideoVolumeSlider": {
8046
+ "appearances": {},
8047
+ "rules": [],
8048
+ "tokens": {
8049
+ "marginLeft": 16,
8050
+ "marginRight": 16,
8051
+ "mutedIcon": "PaletteIconAdd",
8052
+ "rangeBackground": {
8053
+ "red": 0,
8054
+ "green": 0,
8055
+ "blue": 0,
8056
+ "alpha": 0
8057
+ },
8058
+ "thumbBackground": {
8059
+ "red": 1,
8060
+ "green": 1,
8061
+ "blue": 1,
8062
+ "alpha": 1
8063
+ },
8064
+ "thumbHeight": 8,
8065
+ "thumbWidth": 8,
8066
+ "trackGradientEnd": {
8067
+ "red": 1,
8068
+ "green": 1,
8069
+ "blue": 1,
8070
+ "alpha": 1
8071
+ },
8072
+ "trackGradientStart": {
8073
+ "red": 1,
8074
+ "green": 1,
8075
+ "blue": 1,
8076
+ "alpha": 1
8077
+ },
8078
+ "unmutedIcon": "PaletteIconAdd"
8079
+ }
8080
+ },
7364
8081
  "WaffleGrid": {
7365
8082
  "appearances": {},
7366
8083
  "rules": [],
@@ -7562,7 +8279,7 @@
7562
8279
  }
7563
8280
  },
7564
8281
  "metadata": {
7565
- "themeTokensVersion": "2.22.0",
8282
+ "themeTokensVersion": "2.23.0",
7566
8283
  "name": "theme-koodo"
7567
8284
  }
7568
8285
  }