@momentum-design/tokens 0.2.7 → 0.2.8

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.
Files changed (59) hide show
  1. package/dist/css/components/complete.css +980 -0
  2. package/dist/css/core/complete.css +1 -1
  3. package/dist/css/effect/complete.css +8 -0
  4. package/dist/css/elevation/complete.css +11 -0
  5. package/dist/css/theme/aaos/day-complete.css +1 -1
  6. package/dist/css/theme/aaos/night-complete.css +1 -1
  7. package/dist/css/theme/webex/dark-stable.css +4 -1
  8. package/dist/css/theme/webex/hc-dark-stable.css +5 -1
  9. package/dist/css/theme/webex/hc-light-stable.css +5 -1
  10. package/dist/css/theme/webex/light-stable.css +5 -1
  11. package/dist/css/typography/complete.css +1 -1
  12. package/dist/ios/core/complete.swift +1 -1
  13. package/dist/ios/effect/complete.swift +14 -0
  14. package/dist/ios/elevation/complete.swift +17 -0
  15. package/dist/ios/theme/aaos/day-complete.swift +1 -1
  16. package/dist/ios/theme/aaos/night-complete.swift +1 -1
  17. package/dist/ios/theme/webex/dark-stable.swift +4 -1
  18. package/dist/ios/theme/webex/hc-dark-stable.swift +5 -1
  19. package/dist/ios/theme/webex/hc-light-stable.swift +5 -1
  20. package/dist/ios/theme/webex/light-stable.swift +5 -1
  21. package/dist/ios/typography/complete.swift +1 -1
  22. package/dist/ios-webex/effect/complete.swift +11 -0
  23. package/dist/ios-webex/theme/webex/dark-stable.swift +9 -0
  24. package/dist/ios-webex/theme/webex/hc-dark-stable.swift +4 -0
  25. package/dist/ios-webex/theme/webex/hc-light-stable.swift +12 -0
  26. package/dist/ios-webex/theme/webex/light-stable.swift +30 -0
  27. package/dist/json/effect/complete.json +21 -0
  28. package/dist/json/elevation/complete.json +108 -0
  29. package/dist/json/theme/webex/dark-stable.json +89 -0
  30. package/dist/json/theme/webex/hc-dark-stable.json +113 -0
  31. package/dist/json/theme/webex/hc-light-stable.json +117 -0
  32. package/dist/json/theme/webex/light-stable.json +117 -0
  33. package/dist/json-minimal/effect/complete.json +3 -0
  34. package/dist/json-minimal/elevation/complete.json +8 -0
  35. package/dist/json-minimal/theme/webex/dark-stable.json +7 -0
  36. package/dist/json-minimal/theme/webex/hc-dark-stable.json +10 -0
  37. package/dist/json-minimal/theme/webex/hc-light-stable.json +10 -0
  38. package/dist/json-minimal/theme/webex/light-stable.json +10 -0
  39. package/dist/resources/core/complete.xml +1 -1
  40. package/dist/resources/effect/complete.xml +10 -0
  41. package/dist/resources/elevation/complete.xml +13 -0
  42. package/dist/resources/theme/aaos/day-complete.xml +1 -1
  43. package/dist/resources/theme/aaos/night-complete.xml +1 -1
  44. package/dist/resources/theme/webex/dark-stable.xml +4 -1
  45. package/dist/resources/theme/webex/hc-dark-stable.xml +5 -1
  46. package/dist/resources/theme/webex/hc-light-stable.xml +5 -1
  47. package/dist/resources/theme/webex/light-stable.xml +5 -1
  48. package/dist/resources/typography/complete.xml +1 -1
  49. package/dist/scss/core/complete.scss +1 -1
  50. package/dist/scss/effect/complete.scss +5 -0
  51. package/dist/scss/elevation/complete.scss +8 -0
  52. package/dist/scss/theme/aaos/day-complete.scss +1 -1
  53. package/dist/scss/theme/aaos/night-complete.scss +1 -1
  54. package/dist/scss/theme/webex/dark-stable.scss +4 -1
  55. package/dist/scss/theme/webex/hc-dark-stable.scss +5 -1
  56. package/dist/scss/theme/webex/hc-light-stable.scss +5 -1
  57. package/dist/scss/theme/webex/light-stable.scss +5 -1
  58. package/dist/scss/typography/complete.scss +1 -1
  59. package/package.json +8 -5
@@ -0,0 +1,108 @@
1
+ {
2
+ "elevation": {
3
+ "1": {
4
+ "value": "drop-shadow(0px 2px 8px rgba(0,0,0,0.2))",
5
+ "type": "boxShadow",
6
+ "filePath": "src/core/elevation.json",
7
+ "isSource": true,
8
+ "original": {
9
+ "value": {
10
+ "x": "0",
11
+ "y": "2",
12
+ "blur": "8",
13
+ "spread": "0",
14
+ "color": "rgba(0,0,0,0.2)",
15
+ "type": "dropShadow"
16
+ },
17
+ "type": "boxShadow"
18
+ },
19
+ "name": "mds-elevation-1",
20
+ "attributes": {
21
+ "category": "elevation",
22
+ "type": "1"
23
+ },
24
+ "path": [
25
+ "elevation",
26
+ "1"
27
+ ]
28
+ },
29
+ "2": {
30
+ "value": "drop-shadow(0px 4px 16px rgba(0,0,0,0.2))",
31
+ "type": "boxShadow",
32
+ "filePath": "src/core/elevation.json",
33
+ "isSource": true,
34
+ "original": {
35
+ "value": {
36
+ "x": "0",
37
+ "y": "4",
38
+ "blur": "16",
39
+ "spread": "0",
40
+ "color": "rgba(0,0,0,0.2)",
41
+ "type": "dropShadow"
42
+ },
43
+ "type": "boxShadow"
44
+ },
45
+ "name": "mds-elevation-2",
46
+ "attributes": {
47
+ "category": "elevation",
48
+ "type": "2"
49
+ },
50
+ "path": [
51
+ "elevation",
52
+ "2"
53
+ ]
54
+ },
55
+ "3": {
56
+ "value": "drop-shadow(0px 6px 24px rgba(0,0,0,0.25))",
57
+ "type": "boxShadow",
58
+ "filePath": "src/core/elevation.json",
59
+ "isSource": true,
60
+ "original": {
61
+ "value": {
62
+ "x": "0",
63
+ "y": "6",
64
+ "blur": "24",
65
+ "spread": "0",
66
+ "color": "rgba(0,0,0,0.25)",
67
+ "type": "dropShadow"
68
+ },
69
+ "type": "boxShadow"
70
+ },
71
+ "name": "mds-elevation-3",
72
+ "attributes": {
73
+ "category": "elevation",
74
+ "type": "3"
75
+ },
76
+ "path": [
77
+ "elevation",
78
+ "3"
79
+ ]
80
+ },
81
+ "4": {
82
+ "value": "drop-shadow(0px 12px 48px rgba(0,0,0,0.25))",
83
+ "type": "boxShadow",
84
+ "filePath": "src/core/elevation.json",
85
+ "isSource": true,
86
+ "original": {
87
+ "value": {
88
+ "x": "0",
89
+ "y": "12",
90
+ "blur": "48",
91
+ "spread": "0",
92
+ "color": "rgba(0,0,0,0.25)",
93
+ "type": "dropShadow"
94
+ },
95
+ "type": "boxShadow"
96
+ },
97
+ "name": "mds-elevation-4",
98
+ "attributes": {
99
+ "category": "elevation",
100
+ "type": "4"
101
+ },
102
+ "path": [
103
+ "elevation",
104
+ "4"
105
+ ]
106
+ }
107
+ }
108
+ }
@@ -4766,6 +4766,35 @@
4766
4766
  "normal"
4767
4767
  ]
4768
4768
  }
4769
+ },
4770
+ "glass": {
4771
+ "normal": {
4772
+ "value": "#00000080",
4773
+ "type": "color",
4774
+ "description": "Used for glass effect background for operation pop. ",
4775
+ "filePath": "src/theme/stable/dark.json",
4776
+ "isSource": true,
4777
+ "original": {
4778
+ "value": "{color.core.black-alpha.50}",
4779
+ "type": "color",
4780
+ "description": "Used for glass effect background for operation pop. "
4781
+ },
4782
+ "name": "mds-color-theme-background-glass-normal",
4783
+ "attributes": {
4784
+ "category": "color",
4785
+ "type": "theme",
4786
+ "item": "background",
4787
+ "subitem": "glass",
4788
+ "state": "normal"
4789
+ },
4790
+ "path": [
4791
+ "color",
4792
+ "theme",
4793
+ "background",
4794
+ "glass",
4795
+ "normal"
4796
+ ]
4797
+ }
4769
4798
  }
4770
4799
  },
4771
4800
  "button": {
@@ -11014,6 +11043,66 @@
11014
11043
  "hover"
11015
11044
  ]
11016
11045
  }
11046
+ },
11047
+ "vertical": {
11048
+ "normal": {
11049
+ "parent": "theme/stable/dark",
11050
+ "type": "color",
11051
+ "value": "linear-gradient(0deg, #ffffff00 0%, #ffffff33 22.4%, #ffffff33 72.4%, #ffffff00 100%)",
11052
+ "description": "linear-gradient(0deg, #ffffff00 0%, #ffffff33 22.4%, #ffffff33 72.4%, #ffffff00 100%)\nUsed for default default on compose area in space",
11053
+ "filePath": "src/theme/stable/dark.json",
11054
+ "isSource": true,
11055
+ "original": {
11056
+ "parent": "theme/stable/dark",
11057
+ "type": "color",
11058
+ "value": "linear-gradient(0deg, {color.core.white-alpha.0} 0%, {color.core.white-alpha.20} 22.4%, {color.core.white-alpha.20} 72.4%, {color.core.white-alpha.0} 100%)",
11059
+ "description": "linear-gradient(0deg, #ffffff00 0%, #ffffff33 22.4%, #ffffff33 72.4%, #ffffff00 100%)\nUsed for default default on compose area in space"
11060
+ },
11061
+ "name": "mds-color-theme-gradientdivider-vertical-normal",
11062
+ "attributes": {
11063
+ "category": "color",
11064
+ "type": "theme",
11065
+ "item": "gradientdivider",
11066
+ "subitem": "vertical",
11067
+ "state": "normal"
11068
+ },
11069
+ "path": [
11070
+ "color",
11071
+ "theme",
11072
+ "gradientdivider",
11073
+ "vertical",
11074
+ "normal"
11075
+ ]
11076
+ },
11077
+ "hover": {
11078
+ "parent": "theme/stable/dark",
11079
+ "type": "color",
11080
+ "value": "linear-gradient(0deg, #ffffff00 0%, #ffffff99 22.4%, #ffffff99 72.4%, #ffffff00 100%)",
11081
+ "description": "linear-gradient(0deg, #ffffff00 0%, #ffffff99 22.4%, #ffffff99 72.4%, #ffffff00 100%)\nUsed for hover state of gradient divider for spaces",
11082
+ "filePath": "src/theme/stable/dark.json",
11083
+ "isSource": true,
11084
+ "original": {
11085
+ "parent": "theme/stable/dark",
11086
+ "type": "color",
11087
+ "value": "linear-gradient(0deg, {color.core.white-alpha.0} 0%, {color.core.white-alpha.60} 22.4%, {color.core.white-alpha.60} 72.4%, {color.core.white-alpha.0} 100%)",
11088
+ "description": "linear-gradient(0deg, #ffffff00 0%, #ffffff99 22.4%, #ffffff99 72.4%, #ffffff00 100%)\nUsed for hover state of gradient divider for spaces"
11089
+ },
11090
+ "name": "mds-color-theme-gradientdivider-vertical-hover",
11091
+ "attributes": {
11092
+ "category": "color",
11093
+ "type": "theme",
11094
+ "item": "gradientdivider",
11095
+ "subitem": "vertical",
11096
+ "state": "hover"
11097
+ },
11098
+ "path": [
11099
+ "color",
11100
+ "theme",
11101
+ "gradientdivider",
11102
+ "vertical",
11103
+ "hover"
11104
+ ]
11105
+ }
11017
11106
  }
11018
11107
  },
11019
11108
  "avatar": {
@@ -4683,6 +4683,35 @@
4683
4683
  "normal"
4684
4684
  ]
4685
4685
  }
4686
+ },
4687
+ "glass": {
4688
+ "normal": {
4689
+ "value": "#000000",
4690
+ "type": "color",
4691
+ "description": "Used for glass effect background for operation pop. ",
4692
+ "filePath": "src/theme/stable/highcontrast/hc_dark.json",
4693
+ "isSource": true,
4694
+ "original": {
4695
+ "value": "{color.highcontrast.black.WindowColor}",
4696
+ "type": "color",
4697
+ "description": "Used for glass effect background for operation pop. "
4698
+ },
4699
+ "name": "mds-color-theme-background-glass-normal",
4700
+ "attributes": {
4701
+ "category": "color",
4702
+ "type": "theme",
4703
+ "item": "background",
4704
+ "subitem": "glass",
4705
+ "state": "normal"
4706
+ },
4707
+ "path": [
4708
+ "color",
4709
+ "theme",
4710
+ "background",
4711
+ "glass",
4712
+ "normal"
4713
+ ]
4714
+ }
4686
4715
  }
4687
4716
  },
4688
4717
  "button": {
@@ -8263,6 +8292,62 @@
8263
8292
  "hover"
8264
8293
  ]
8265
8294
  }
8295
+ },
8296
+ "vertical": {
8297
+ "normal": {
8298
+ "parent": "theme/stable/highcontrast/hc_dark",
8299
+ "type": "color",
8300
+ "value": "#ffffff",
8301
+ "filePath": "src/theme/stable/highcontrast/hc_dark.json",
8302
+ "isSource": true,
8303
+ "original": {
8304
+ "parent": "theme/stable/highcontrast/hc_dark",
8305
+ "type": "color",
8306
+ "value": "{color.highcontrast.black.WindowTextColor}"
8307
+ },
8308
+ "name": "mds-color-theme-gradientdivider-vertical-normal",
8309
+ "attributes": {
8310
+ "category": "color",
8311
+ "type": "theme",
8312
+ "item": "gradientdivider",
8313
+ "subitem": "vertical",
8314
+ "state": "normal"
8315
+ },
8316
+ "path": [
8317
+ "color",
8318
+ "theme",
8319
+ "gradientdivider",
8320
+ "vertical",
8321
+ "normal"
8322
+ ]
8323
+ },
8324
+ "hover": {
8325
+ "parent": "theme/stable/highcontrast/hc_dark",
8326
+ "type": "color",
8327
+ "value": "#ffffff",
8328
+ "filePath": "src/theme/stable/highcontrast/hc_dark.json",
8329
+ "isSource": true,
8330
+ "original": {
8331
+ "parent": "theme/stable/highcontrast/hc_dark",
8332
+ "type": "color",
8333
+ "value": "{color.highcontrast.black.WindowTextColor}"
8334
+ },
8335
+ "name": "mds-color-theme-gradientdivider-vertical-hover",
8336
+ "attributes": {
8337
+ "category": "color",
8338
+ "type": "theme",
8339
+ "item": "gradientdivider",
8340
+ "subitem": "vertical",
8341
+ "state": "hover"
8342
+ },
8343
+ "path": [
8344
+ "color",
8345
+ "theme",
8346
+ "gradientdivider",
8347
+ "vertical",
8348
+ "hover"
8349
+ ]
8350
+ }
8266
8351
  }
8267
8352
  },
8268
8353
  "avatar": {
@@ -9913,6 +9998,34 @@
9913
9998
  "disabled"
9914
9999
  ]
9915
10000
  }
10001
+ },
10002
+ "warning": {
10003
+ "normal": {
10004
+ "value": "#ffffff",
10005
+ "type": "color",
10006
+ "filePath": "src/theme/stable/highcontrast/hc_dark.json",
10007
+ "isSource": true,
10008
+ "original": {
10009
+ "value": "{color.highcontrast.black.WindowTextColor}",
10010
+ "type": "color"
10011
+ },
10012
+ "name": "mds-color-theme-common-outline-warning-normal",
10013
+ "attributes": {
10014
+ "category": "color",
10015
+ "type": "theme",
10016
+ "item": "common",
10017
+ "subitem": "outline",
10018
+ "state": "warning"
10019
+ },
10020
+ "path": [
10021
+ "color",
10022
+ "theme",
10023
+ "common",
10024
+ "outline",
10025
+ "warning",
10026
+ "normal"
10027
+ ]
10028
+ }
9916
10029
  }
9917
10030
  },
9918
10031
  "control": {
@@ -4685,6 +4685,35 @@
4685
4685
  "normal"
4686
4686
  ]
4687
4687
  }
4688
+ },
4689
+ "glass": {
4690
+ "normal": {
4691
+ "value": "#ffffff",
4692
+ "type": "color",
4693
+ "description": "Used for glass effect background for operation pop. ",
4694
+ "filePath": "src/theme/stable/highcontrast/hc_light.json",
4695
+ "isSource": true,
4696
+ "original": {
4697
+ "value": "{color.highcontrast.white.WindowColor}",
4698
+ "type": "color",
4699
+ "description": "Used for glass effect background for operation pop. "
4700
+ },
4701
+ "name": "mds-color-theme-background-glass-normal",
4702
+ "attributes": {
4703
+ "category": "color",
4704
+ "type": "theme",
4705
+ "item": "background",
4706
+ "subitem": "glass",
4707
+ "state": "normal"
4708
+ },
4709
+ "path": [
4710
+ "color",
4711
+ "theme",
4712
+ "background",
4713
+ "glass",
4714
+ "normal"
4715
+ ]
4716
+ }
4688
4717
  }
4689
4718
  },
4690
4719
  "button": {
@@ -9463,6 +9492,34 @@
9463
9492
  "disabled"
9464
9493
  ]
9465
9494
  }
9495
+ },
9496
+ "warning": {
9497
+ "normal": {
9498
+ "value": "#000000",
9499
+ "type": "color",
9500
+ "filePath": "src/theme/stable/highcontrast/hc_light.json",
9501
+ "isSource": true,
9502
+ "original": {
9503
+ "value": "{color.highcontrast.white.WindowTextColor}",
9504
+ "type": "color"
9505
+ },
9506
+ "name": "mds-color-theme-common-outline-warning-normal",
9507
+ "attributes": {
9508
+ "category": "color",
9509
+ "type": "theme",
9510
+ "item": "common",
9511
+ "subitem": "outline",
9512
+ "state": "warning"
9513
+ },
9514
+ "path": [
9515
+ "color",
9516
+ "theme",
9517
+ "common",
9518
+ "outline",
9519
+ "warning",
9520
+ "normal"
9521
+ ]
9522
+ }
9466
9523
  }
9467
9524
  },
9468
9525
  "control": {
@@ -10935,6 +10992,66 @@
10935
10992
  "hover"
10936
10993
  ]
10937
10994
  }
10995
+ },
10996
+ "vertical": {
10997
+ "normal": {
10998
+ "parent": "theme/stable/dark",
10999
+ "type": "color",
11000
+ "value": "#000000",
11001
+ "description": "Used for default default on compose area in space",
11002
+ "filePath": "src/theme/stable/highcontrast/hc_light.json",
11003
+ "isSource": true,
11004
+ "original": {
11005
+ "parent": "theme/stable/dark",
11006
+ "type": "color",
11007
+ "value": "{color.highcontrast.white.WindowTextColor}",
11008
+ "description": "Used for default default on compose area in space"
11009
+ },
11010
+ "name": "mds-color-theme-gradientdivider-vertical-normal",
11011
+ "attributes": {
11012
+ "category": "color",
11013
+ "type": "theme",
11014
+ "item": "gradientdivider",
11015
+ "subitem": "vertical",
11016
+ "state": "normal"
11017
+ },
11018
+ "path": [
11019
+ "color",
11020
+ "theme",
11021
+ "gradientdivider",
11022
+ "vertical",
11023
+ "normal"
11024
+ ]
11025
+ },
11026
+ "hover": {
11027
+ "parent": "theme/stable/dark",
11028
+ "type": "color",
11029
+ "value": "#000000",
11030
+ "description": "linear-gradient(90deg, #ffffff00 0%, #ffffff99 22.4%, #ffffff99 72.4%, #ffffff00 100%)\nUsed for hover state of gradient divider for spaces",
11031
+ "filePath": "src/theme/stable/highcontrast/hc_light.json",
11032
+ "isSource": true,
11033
+ "original": {
11034
+ "parent": "theme/stable/dark",
11035
+ "type": "color",
11036
+ "value": "{color.highcontrast.white.WindowTextColor}",
11037
+ "description": "linear-gradient(90deg, #ffffff00 0%, #ffffff99 22.4%, #ffffff99 72.4%, #ffffff00 100%)\nUsed for hover state of gradient divider for spaces"
11038
+ },
11039
+ "name": "mds-color-theme-gradientdivider-vertical-hover",
11040
+ "attributes": {
11041
+ "category": "color",
11042
+ "type": "theme",
11043
+ "item": "gradientdivider",
11044
+ "subitem": "vertical",
11045
+ "state": "hover"
11046
+ },
11047
+ "path": [
11048
+ "color",
11049
+ "theme",
11050
+ "gradientdivider",
11051
+ "vertical",
11052
+ "hover"
11053
+ ]
11054
+ }
10938
11055
  }
10939
11056
  },
10940
11057
  "focus": {
@@ -4766,6 +4766,35 @@
4766
4766
  "normal"
4767
4767
  ]
4768
4768
  }
4769
+ },
4770
+ "glass": {
4771
+ "normal": {
4772
+ "value": "#ffffff80",
4773
+ "type": "color",
4774
+ "description": "Used for glass effect background for operation pop. ",
4775
+ "filePath": "src/theme/stable/light.json",
4776
+ "isSource": true,
4777
+ "original": {
4778
+ "value": "{color.core.white-alpha.50}",
4779
+ "type": "color",
4780
+ "description": "Used for glass effect background for operation pop. "
4781
+ },
4782
+ "name": "mds-color-theme-background-glass-normal",
4783
+ "attributes": {
4784
+ "category": "color",
4785
+ "type": "theme",
4786
+ "item": "background",
4787
+ "subitem": "glass",
4788
+ "state": "normal"
4789
+ },
4790
+ "path": [
4791
+ "color",
4792
+ "theme",
4793
+ "background",
4794
+ "glass",
4795
+ "normal"
4796
+ ]
4797
+ }
4769
4798
  }
4770
4799
  },
4771
4800
  "button": {
@@ -8467,6 +8496,34 @@
8467
8496
  "disabled"
8468
8497
  ]
8469
8498
  }
8499
+ },
8500
+ "warning": {
8501
+ "normal": {
8502
+ "value": "#f2990a",
8503
+ "type": "color",
8504
+ "filePath": "src/theme/stable/light.json",
8505
+ "isSource": true,
8506
+ "original": {
8507
+ "value": "{color.core.yellow.40}",
8508
+ "type": "color"
8509
+ },
8510
+ "name": "mds-color-theme-common-outline-warning-normal",
8511
+ "attributes": {
8512
+ "category": "color",
8513
+ "type": "theme",
8514
+ "item": "common",
8515
+ "subitem": "outline",
8516
+ "state": "warning"
8517
+ },
8518
+ "path": [
8519
+ "color",
8520
+ "theme",
8521
+ "common",
8522
+ "outline",
8523
+ "warning",
8524
+ "normal"
8525
+ ]
8526
+ }
8470
8527
  }
8471
8528
  },
8472
8529
  "control": {
@@ -11428,6 +11485,66 @@
11428
11485
  "hover"
11429
11486
  ]
11430
11487
  }
11488
+ },
11489
+ "vertical": {
11490
+ "normal": {
11491
+ "parent": "theme/stable/dark",
11492
+ "type": "color",
11493
+ "value": "linear-gradient(0deg, #00000000 0%, #00000033 22.4%, #00000033 72.4%, #00000000 100%)",
11494
+ "description": "linear-gradient(0deg, #00000000 0%, #00000033 22.4%, #00000033 72.4%, #00000000 100%)\nUsed for default default on compose area in space",
11495
+ "filePath": "src/theme/stable/light.json",
11496
+ "isSource": true,
11497
+ "original": {
11498
+ "parent": "theme/stable/dark",
11499
+ "type": "color",
11500
+ "value": "linear-gradient(0deg, {color.core.black-alpha.0} 0%, {color.core.black-alpha.20} 22.4%, {color.core.black-alpha.20} 72.4%, {color.core.black-alpha.0} 100%)",
11501
+ "description": "linear-gradient(0deg, #00000000 0%, #00000033 22.4%, #00000033 72.4%, #00000000 100%)\nUsed for default default on compose area in space"
11502
+ },
11503
+ "name": "mds-color-theme-gradientdivider-vertical-normal",
11504
+ "attributes": {
11505
+ "category": "color",
11506
+ "type": "theme",
11507
+ "item": "gradientdivider",
11508
+ "subitem": "vertical",
11509
+ "state": "normal"
11510
+ },
11511
+ "path": [
11512
+ "color",
11513
+ "theme",
11514
+ "gradientdivider",
11515
+ "vertical",
11516
+ "normal"
11517
+ ]
11518
+ },
11519
+ "hover": {
11520
+ "parent": "theme/stable/dark",
11521
+ "type": "color",
11522
+ "value": "linear-gradient(0deg, #00000000 0%, #00000099 22.4%, #00000099 72.4%, #00000000 100%)",
11523
+ "description": "linear-gradient(0deg, #00000000 0%, #00000099 22.4%, #00000099 72.4%, #00000000 100%)\nUsed for hover state of gradient divider for spaces",
11524
+ "filePath": "src/theme/stable/light.json",
11525
+ "isSource": true,
11526
+ "original": {
11527
+ "parent": "theme/stable/dark",
11528
+ "type": "color",
11529
+ "value": "linear-gradient(0deg, {color.core.black-alpha.0} 0%, {color.core.black-alpha.60} 22.4%, {color.core.black-alpha.60} 72.4%, {color.core.black-alpha.0} 100%)",
11530
+ "description": "linear-gradient(0deg, #00000000 0%, #00000099 22.4%, #00000099 72.4%, #00000000 100%)\nUsed for hover state of gradient divider for spaces"
11531
+ },
11532
+ "name": "mds-color-theme-gradientdivider-vertical-hover",
11533
+ "attributes": {
11534
+ "category": "color",
11535
+ "type": "theme",
11536
+ "item": "gradientdivider",
11537
+ "subitem": "vertical",
11538
+ "state": "hover"
11539
+ },
11540
+ "path": [
11541
+ "color",
11542
+ "theme",
11543
+ "gradientdivider",
11544
+ "vertical",
11545
+ "hover"
11546
+ ]
11547
+ }
11431
11548
  }
11432
11549
  },
11433
11550
  "focus": {
@@ -0,0 +1,3 @@
1
+ {
2
+ "backdrop-filter": "blur(10px)"
3
+ }
@@ -0,0 +1,8 @@
1
+ {
2
+ "elevation": {
3
+ "1": "drop-shadow(0px 2px 8px rgba(0,0,0,0.2))",
4
+ "2": "drop-shadow(0px 4px 16px rgba(0,0,0,0.2))",
5
+ "3": "drop-shadow(0px 6px 24px rgba(0,0,0,0.25))",
6
+ "4": "drop-shadow(0px 12px 48px rgba(0,0,0,0.25))"
7
+ }
8
+ }
@@ -303,6 +303,9 @@
303
303
  },
304
304
  "skeleton": {
305
305
  "normal": "linear-gradient(123deg, #ffffff33 0%, #ffffff4d 33.85%, #ffffff66 70.31%, #ffffff80 100%)"
306
+ },
307
+ "glass": {
308
+ "normal": "#00000080"
306
309
  }
307
310
  },
308
311
  "button": {
@@ -746,6 +749,10 @@
746
749
  "purple": {
747
750
  "normal": "linear-gradient(90deg, #f294f100 0%, #f294f199 22.4%, #f294f199 76.04%, #f294f100 100%)",
748
751
  "hover": "linear-gradient(90deg, #f294f100 0%, #f294f1E6 22.4%, #f294f1E6 76.04%, #f294f100 100%)"
752
+ },
753
+ "vertical": {
754
+ "normal": "linear-gradient(0deg, #ffffff00 0%, #ffffff33 22.4%, #ffffff33 72.4%, #ffffff00 100%)",
755
+ "hover": "linear-gradient(0deg, #ffffff00 0%, #ffffff99 22.4%, #ffffff99 72.4%, #ffffff00 100%)"
749
756
  }
750
757
  },
751
758
  "avatar": {
@@ -301,6 +301,9 @@
301
301
  },
302
302
  "skeleton": {
303
303
  "normal": "#000000"
304
+ },
305
+ "glass": {
306
+ "normal": "#000000"
304
307
  }
305
308
  },
306
309
  "button": {
@@ -555,6 +558,10 @@
555
558
  "purple": {
556
559
  "normal": "#ffffff",
557
560
  "hover": "#ffffff"
561
+ },
562
+ "vertical": {
563
+ "normal": "#ffffff",
564
+ "hover": "#ffffff"
558
565
  }
559
566
  },
560
567
  "avatar": {
@@ -673,6 +680,9 @@
673
680
  "secondary": {
674
681
  "primary": "#ffffff",
675
682
  "disabled": "#3ff23f"
683
+ },
684
+ "warning": {
685
+ "normal": "#ffffff"
676
686
  }
677
687
  },
678
688
  "control": {