@fluentui/tokens 1.0.0-alpha.2 → 1.0.0-alpha.20

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 (230) hide show
  1. package/CHANGELOG.md +167 -2
  2. package/dist/index.d.ts +44 -2
  3. package/lib/alias/darkColor.js +169 -155
  4. package/lib/alias/darkColor.js.map +1 -1
  5. package/lib/alias/darkColorPalette.js +57 -32
  6. package/lib/alias/darkColorPalette.js.map +1 -1
  7. package/lib/alias/highContrastColor.js +169 -155
  8. package/lib/alias/highContrastColor.js.map +1 -1
  9. package/lib/alias/highContrastColorPalette.js +50 -29
  10. package/lib/alias/highContrastColorPalette.js.map +1 -1
  11. package/lib/alias/lightColor.js +169 -155
  12. package/lib/alias/lightColor.js.map +1 -1
  13. package/lib/alias/lightColorPalette.js +53 -29
  14. package/lib/alias/lightColorPalette.js.map +1 -1
  15. package/lib/alias/teamsDarkColor.js +169 -155
  16. package/lib/alias/teamsDarkColor.js.map +1 -1
  17. package/lib/global/borderRadius.js +6 -7
  18. package/lib/global/borderRadius.js.map +1 -1
  19. package/lib/global/brandColors.js +48 -49
  20. package/lib/global/brandColors.js.map +1 -1
  21. package/lib/global/colorPalette.js +41 -37
  22. package/lib/global/colorPalette.js.map +1 -1
  23. package/lib/global/colors.js +693 -675
  24. package/lib/global/colors.js.map +1 -1
  25. package/lib/global/curves.js +9 -10
  26. package/lib/global/curves.js.map +1 -1
  27. package/lib/global/durations.js +8 -8
  28. package/lib/global/durations.js.map +1 -1
  29. package/lib/global/fonts.js +27 -30
  30. package/lib/global/fonts.js.map +1 -1
  31. package/lib/global/index.js +8 -10
  32. package/lib/global/index.js.map +1 -1
  33. package/lib/global/spacings.js +33 -34
  34. package/lib/global/spacings.js.map +1 -1
  35. package/lib/global/strokeWidths.js +4 -5
  36. package/lib/global/strokeWidths.js.map +1 -1
  37. package/lib/global/typographyStyles.js +104 -107
  38. package/lib/global/typographyStyles.js.map +1 -1
  39. package/lib/index.js +5 -6
  40. package/lib/index.js.map +1 -1
  41. package/lib/sharedColorNames.js +60 -9
  42. package/lib/sharedColorNames.js.map +1 -1
  43. package/lib/statusColorMapping.js +5 -0
  44. package/lib/statusColorMapping.js.map +1 -0
  45. package/lib/themeToTokensObject.js +7 -11
  46. package/lib/themeToTokensObject.js.map +1 -1
  47. package/lib/themes/index.js +2 -3
  48. package/lib/themes/index.js.map +1 -1
  49. package/lib/themes/teams/darkTheme.js +3 -4
  50. package/lib/themes/teams/darkTheme.js.map +1 -1
  51. package/lib/themes/teams/highContrastTheme.js +2 -3
  52. package/lib/themes/teams/highContrastTheme.js.map +1 -1
  53. package/lib/themes/teams/index.js +3 -4
  54. package/lib/themes/teams/index.js.map +1 -1
  55. package/lib/themes/teams/lightTheme.js +3 -4
  56. package/lib/themes/teams/lightTheme.js.map +1 -1
  57. package/lib/themes/web/darkTheme.js +3 -4
  58. package/lib/themes/web/darkTheme.js.map +1 -1
  59. package/lib/themes/web/index.js +2 -3
  60. package/lib/themes/web/index.js.map +1 -1
  61. package/lib/themes/web/lightTheme.js +3 -4
  62. package/lib/themes/web/lightTheme.js.map +1 -1
  63. package/lib/tokens.js +523 -433
  64. package/lib/tokens.js.map +1 -1
  65. package/lib/types.js +1 -2
  66. package/lib/types.js.map +1 -1
  67. package/lib/utils/createDarkTheme.js +26 -25
  68. package/lib/utils/createDarkTheme.js.map +1 -1
  69. package/lib/utils/createHighContrastTheme.js +26 -25
  70. package/lib/utils/createHighContrastTheme.js.map +1 -1
  71. package/lib/utils/createLightTheme.js +26 -25
  72. package/lib/utils/createLightTheme.js.map +1 -1
  73. package/lib/utils/createTeamsDarkTheme.js +26 -25
  74. package/lib/utils/createTeamsDarkTheme.js.map +1 -1
  75. package/lib/utils/index.js +4 -5
  76. package/lib/utils/index.js.map +1 -1
  77. package/lib/utils/shadows.js +8 -9
  78. package/lib/utils/shadows.js.map +1 -1
  79. package/lib-commonjs/alias/darkColor.js +176 -162
  80. package/lib-commonjs/alias/darkColor.js.map +1 -1
  81. package/lib-commonjs/alias/darkColorPalette.js +84 -50
  82. package/lib-commonjs/alias/darkColorPalette.js.map +1 -1
  83. package/lib-commonjs/alias/highContrastColor.js +176 -162
  84. package/lib-commonjs/alias/highContrastColor.js.map +1 -1
  85. package/lib-commonjs/alias/highContrastColorPalette.js +68 -38
  86. package/lib-commonjs/alias/highContrastColorPalette.js.map +1 -1
  87. package/lib-commonjs/alias/lightColor.js +176 -162
  88. package/lib-commonjs/alias/lightColor.js.map +1 -1
  89. package/lib-commonjs/alias/lightColorPalette.js +72 -39
  90. package/lib-commonjs/alias/lightColorPalette.js.map +1 -1
  91. package/lib-commonjs/alias/teamsDarkColor.js +176 -162
  92. package/lib-commonjs/alias/teamsDarkColor.js.map +1 -1
  93. package/lib-commonjs/global/borderRadius.js +14 -11
  94. package/lib-commonjs/global/borderRadius.js.map +1 -1
  95. package/lib-commonjs/global/brandColors.js +69 -55
  96. package/lib-commonjs/global/brandColors.js.map +1 -1
  97. package/lib-commonjs/global/colorPalette.js +61 -44
  98. package/lib-commonjs/global/colorPalette.js.map +1 -1
  99. package/lib-commonjs/global/colors.js +1012 -794
  100. package/lib-commonjs/global/colors.js.map +1 -1
  101. package/lib-commonjs/global/curves.js +17 -14
  102. package/lib-commonjs/global/curves.js.map +1 -1
  103. package/lib-commonjs/global/durations.js +16 -12
  104. package/lib-commonjs/global/durations.js.map +1 -1
  105. package/lib-commonjs/global/fonts.js +52 -37
  106. package/lib-commonjs/global/fonts.js.map +1 -1
  107. package/lib-commonjs/global/index.js +245 -23
  108. package/lib-commonjs/global/index.js.map +1 -1
  109. package/lib-commonjs/global/spacings.js +51 -40
  110. package/lib-commonjs/global/spacings.js.map +1 -1
  111. package/lib-commonjs/global/strokeWidths.js +12 -9
  112. package/lib-commonjs/global/strokeWidths.js.map +1 -1
  113. package/lib-commonjs/global/typographyStyles.js +111 -114
  114. package/lib-commonjs/global/typographyStyles.js.map +1 -1
  115. package/lib-commonjs/index.js +51 -92
  116. package/lib-commonjs/index.js.map +1 -1
  117. package/lib-commonjs/sharedColorNames.js +82 -14
  118. package/lib-commonjs/sharedColorNames.js.map +1 -1
  119. package/lib-commonjs/statusColorMapping.js +15 -0
  120. package/lib-commonjs/statusColorMapping.js.map +1 -0
  121. package/lib-commonjs/themeToTokensObject.js +13 -23
  122. package/lib-commonjs/themeToTokensObject.js.map +1 -1
  123. package/lib-commonjs/themes/index.js +26 -9
  124. package/lib-commonjs/themes/index.js.map +1 -1
  125. package/lib-commonjs/themes/teams/darkTheme.js +10 -10
  126. package/lib-commonjs/themes/teams/darkTheme.js.map +1 -1
  127. package/lib-commonjs/themes/teams/highContrastTheme.js +9 -8
  128. package/lib-commonjs/themes/teams/highContrastTheme.js.map +1 -1
  129. package/lib-commonjs/themes/teams/index.js +21 -11
  130. package/lib-commonjs/themes/teams/index.js.map +1 -1
  131. package/lib-commonjs/themes/teams/lightTheme.js +10 -10
  132. package/lib-commonjs/themes/teams/lightTheme.js.map +1 -1
  133. package/lib-commonjs/themes/web/darkTheme.js +10 -10
  134. package/lib-commonjs/themes/web/darkTheme.js.map +1 -1
  135. package/lib-commonjs/themes/web/index.js +17 -9
  136. package/lib-commonjs/themes/web/index.js.map +1 -1
  137. package/lib-commonjs/themes/web/lightTheme.js +10 -10
  138. package/lib-commonjs/themes/web/lightTheme.js.map +1 -1
  139. package/lib-commonjs/tokens.js +531 -437
  140. package/lib-commonjs/tokens.js.map +1 -1
  141. package/lib-commonjs/types.js +1 -3
  142. package/lib-commonjs/types.js.map +1 -1
  143. package/lib-commonjs/utils/createDarkTheme.js +33 -38
  144. package/lib-commonjs/utils/createDarkTheme.js.map +1 -1
  145. package/lib-commonjs/utils/createHighContrastTheme.js +33 -38
  146. package/lib-commonjs/utils/createHighContrastTheme.js.map +1 -1
  147. package/lib-commonjs/utils/createLightTheme.js +33 -38
  148. package/lib-commonjs/utils/createLightTheme.js.map +1 -1
  149. package/lib-commonjs/utils/createTeamsDarkTheme.js +33 -38
  150. package/lib-commonjs/utils/createTeamsDarkTheme.js.map +1 -1
  151. package/lib-commonjs/utils/index.js +25 -13
  152. package/lib-commonjs/utils/index.js.map +1 -1
  153. package/lib-commonjs/utils/shadows.js +15 -15
  154. package/lib-commonjs/utils/shadows.js.map +1 -1
  155. package/package.json +11 -15
  156. package/CHANGELOG.json +0 -35
  157. package/lib-amd/alias/darkColor.js +0 -158
  158. package/lib-amd/alias/darkColor.js.map +0 -1
  159. package/lib-amd/alias/darkColorPalette.js +0 -47
  160. package/lib-amd/alias/darkColorPalette.js.map +0 -1
  161. package/lib-amd/alias/highContrastColor.js +0 -158
  162. package/lib-amd/alias/highContrastColor.js.map +0 -1
  163. package/lib-amd/alias/highContrastColorPalette.js +0 -37
  164. package/lib-amd/alias/highContrastColorPalette.js.map +0 -1
  165. package/lib-amd/alias/lightColor.js +0 -158
  166. package/lib-amd/alias/lightColor.js.map +0 -1
  167. package/lib-amd/alias/lightColorPalette.js +0 -38
  168. package/lib-amd/alias/lightColorPalette.js.map +0 -1
  169. package/lib-amd/alias/teamsDarkColor.js +0 -158
  170. package/lib-amd/alias/teamsDarkColor.js.map +0 -1
  171. package/lib-amd/global/borderRadius.js +0 -14
  172. package/lib-amd/global/borderRadius.js.map +0 -1
  173. package/lib-amd/global/brandColors.js +0 -60
  174. package/lib-amd/global/brandColors.js.map +0 -1
  175. package/lib-amd/global/colorPalette.js +0 -45
  176. package/lib-amd/global/colorPalette.js.map +0 -1
  177. package/lib-amd/global/colors.js +0 -793
  178. package/lib-amd/global/colors.js.map +0 -1
  179. package/lib-amd/global/curves.js +0 -17
  180. package/lib-amd/global/curves.js.map +0 -1
  181. package/lib-amd/global/durations.js +0 -15
  182. package/lib-amd/global/durations.js.map +0 -1
  183. package/lib-amd/global/fonts.js +0 -45
  184. package/lib-amd/global/fonts.js.map +0 -1
  185. package/lib-amd/global/index.js +0 -14
  186. package/lib-amd/global/index.js.map +0 -1
  187. package/lib-amd/global/spacings.js +0 -46
  188. package/lib-amd/global/spacings.js.map +0 -1
  189. package/lib-amd/global/strokeWidths.js +0 -12
  190. package/lib-amd/global/strokeWidths.js.map +0 -1
  191. package/lib-amd/global/typographyStyles.js +0 -113
  192. package/lib-amd/global/typographyStyles.js.map +0 -1
  193. package/lib-amd/index.js +0 -18
  194. package/lib-amd/index.js.map +0 -1
  195. package/lib-amd/sharedColorNames.js +0 -64
  196. package/lib-amd/sharedColorNames.js.map +0 -1
  197. package/lib-amd/themeToTokensObject.js +0 -24
  198. package/lib-amd/themeToTokensObject.js.map +0 -1
  199. package/lib-amd/themes/index.js +0 -7
  200. package/lib-amd/themes/index.js.map +0 -1
  201. package/lib-amd/themes/teams/darkTheme.js +0 -7
  202. package/lib-amd/themes/teams/darkTheme.js.map +0 -1
  203. package/lib-amd/themes/teams/highContrastTheme.js +0 -7
  204. package/lib-amd/themes/teams/highContrastTheme.js.map +0 -1
  205. package/lib-amd/themes/teams/index.js +0 -8
  206. package/lib-amd/themes/teams/index.js.map +0 -1
  207. package/lib-amd/themes/teams/lightTheme.js +0 -7
  208. package/lib-amd/themes/teams/lightTheme.js.map +0 -1
  209. package/lib-amd/themes/web/darkTheme.js +0 -7
  210. package/lib-amd/themes/web/darkTheme.js.map +0 -1
  211. package/lib-amd/themes/web/index.js +0 -7
  212. package/lib-amd/themes/web/index.js.map +0 -1
  213. package/lib-amd/themes/web/lightTheme.js +0 -7
  214. package/lib-amd/themes/web/lightTheme.js.map +0 -1
  215. package/lib-amd/tokens.js +0 -440
  216. package/lib-amd/tokens.js.map +0 -1
  217. package/lib-amd/types.js +0 -5
  218. package/lib-amd/types.js.map +0 -1
  219. package/lib-amd/utils/createDarkTheme.js +0 -11
  220. package/lib-amd/utils/createDarkTheme.js.map +0 -1
  221. package/lib-amd/utils/createHighContrastTheme.js +0 -11
  222. package/lib-amd/utils/createHighContrastTheme.js.map +0 -1
  223. package/lib-amd/utils/createLightTheme.js +0 -11
  224. package/lib-amd/utils/createLightTheme.js.map +0 -1
  225. package/lib-amd/utils/createTeamsDarkTheme.js +0 -11
  226. package/lib-amd/utils/createTeamsDarkTheme.js.map +0 -1
  227. package/lib-amd/utils/index.js +0 -9
  228. package/lib-amd/utils/index.js.map +0 -1
  229. package/lib-amd/utils/shadows.js +0 -19
  230. package/lib-amd/utils/shadows.js.map +0 -1
package/CHANGELOG.md CHANGED
@@ -1,12 +1,177 @@
1
1
  # Change Log - @fluentui/tokens
2
2
 
3
- This log was last generated on Wed, 21 Dec 2022 10:17:15 GMT and should not be manually modified.
3
+ This log was last generated on Fri, 06 Dec 2024 12:49:19 GMT and should not be manually modified.
4
4
 
5
5
  <!-- Start content -->
6
6
 
7
+ ## [1.0.0-alpha.20](https://github.com/microsoft/fluentui/tree/@fluentui/tokens_v1.0.0-alpha.20)
8
+
9
+ Fri, 06 Dec 2024 12:49:19 GMT
10
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/tokens_v1.0.0-alpha.19..@fluentui/tokens_v1.0.0-alpha.20)
11
+
12
+ ### Changes
13
+
14
+ - chore: remove usage of "export *" ([PR #33380](https://github.com/microsoft/fluentui/pull/33380) by olfedias@microsoft.com)
15
+
16
+ ## [1.0.0-alpha.19](https://github.com/microsoft/fluentui/tree/@fluentui/tokens_v1.0.0-alpha.19)
17
+
18
+ Mon, 11 Nov 2024 10:00:39 GMT
19
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/tokens_v1.0.0-alpha.18..@fluentui/tokens_v1.0.0-alpha.19)
20
+
21
+ ### Changes
22
+
23
+ - chore: replace npm-scripts and just-scrtips with nx inferred tasks ([PR #33074](https://github.com/microsoft/fluentui/pull/33074) by martinhochel@microsoft.com)
24
+
25
+ ## [1.0.0-alpha.18](https://github.com/microsoft/fluentui/tree/@fluentui/tokens_v1.0.0-alpha.18)
26
+
27
+ Tue, 15 Oct 2024 17:17:52 GMT
28
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/tokens_v1.0.0-alpha.17..@fluentui/tokens_v1.0.0-alpha.18)
29
+
30
+ ### Changes
31
+
32
+ - feat: add explicit .js file extensions to all relative import/export statement within built output to support native ESM within browser ([PR #30770](https://github.com/microsoft/fluentui/pull/30770) by martinhochel@microsoft.com)
33
+
34
+ ## [1.0.0-alpha.17](https://github.com/microsoft/fluentui/tree/@fluentui/tokens_v1.0.0-alpha.17)
35
+
36
+ Mon, 23 Sep 2024 12:40:16 GMT
37
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/tokens_v1.0.0-alpha.16..@fluentui/tokens_v1.0.0-alpha.17)
38
+
39
+ ### Changes
40
+
41
+ - feat: add z-index tokens ([PR #32356](https://github.com/microsoft/fluentui/pull/32356) by marcosvmmoura@gmail.com)
42
+
43
+ ## [1.0.0-alpha.16](https://github.com/microsoft/fluentui/tree/@fluentui/tokens_v1.0.0-alpha.16)
44
+
45
+ Mon, 18 Mar 2024 19:50:46 GMT
46
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/tokens_v1.0.0-alpha.15..@fluentui/tokens_v1.0.0-alpha.16)
47
+
48
+ ### Changes
49
+
50
+ - reverting #30770 which caused compilation issues ([PR #30803](https://github.com/microsoft/fluentui/pull/30803) by mgodbolt@microsoft.com)
51
+
52
+ ## [1.0.0-alpha.15](https://github.com/microsoft/fluentui/tree/@fluentui/tokens_v1.0.0-alpha.15)
53
+
54
+ Fri, 15 Mar 2024 21:43:49 GMT
55
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/tokens_v1.0.0-alpha.14..@fluentui/tokens_v1.0.0-alpha.15)
56
+
57
+ ### Changes
58
+
59
+ - feat: enable .js extension addition and directory import/export unwrapping in build output ([PR #30770](https://github.com/microsoft/fluentui/pull/30770) by martinhochel@microsoft.com)
60
+
61
+ ## [1.0.0-alpha.14](https://github.com/microsoft/fluentui/tree/@fluentui/tokens_v1.0.0-alpha.14)
62
+
63
+ Thu, 07 Mar 2024 19:33:27 GMT
64
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/tokens_v1.0.0-alpha.13..@fluentui/tokens_v1.0.0-alpha.14)
65
+
66
+ ### Changes
67
+
68
+ - feat: Add/update color tokens ([PR #30412](https://github.com/microsoft/fluentui/pull/30412) by miroslav.stastny@microsoft.com)
69
+
70
+ ## [1.0.0-alpha.13](https://github.com/microsoft/fluentui/tree/@fluentui/tokens_v1.0.0-alpha.13)
71
+
72
+ Thu, 09 Nov 2023 17:29:48 GMT
73
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/tokens_v1.0.0-alpha.12..@fluentui/tokens_v1.0.0-alpha.13)
74
+
75
+ ### Changes
76
+
77
+ - chore: use package.json#files setup instead of npmignore for all v9 libraries ([PR #29734](https://github.com/microsoft/fluentui/pull/29734) by martinhochel@microsoft.com)
78
+
79
+ ## [1.0.0-alpha.12](https://github.com/microsoft/fluentui/tree/@fluentui/tokens_v1.0.0-alpha.12)
80
+
81
+ Wed, 01 Nov 2023 12:55:59 GMT
82
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/tokens_v1.0.0-alpha.11..@fluentui/tokens_v1.0.0-alpha.12)
83
+
84
+ ### Changes
85
+
86
+ - fix(tokens): Fix motion curves to match design ([PR #29546](https://github.com/microsoft/fluentui/pull/29546) by robertpenner@microsoft.com)
87
+
88
+ ## [1.0.0-alpha.11](https://github.com/microsoft/fluentui/tree/@fluentui/tokens_v1.0.0-alpha.11)
89
+
90
+ Tue, 26 Sep 2023 17:49:15 GMT
91
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/tokens_v1.0.0-alpha.10..@fluentui/tokens_v1.0.0-alpha.11)
92
+
93
+ ### Changes
94
+
95
+ - chore: trigger manual version bump after broken release ([PR #29303](https://github.com/microsoft/fluentui/pull/29303) by yuanboxue@microsoft.com)
96
+
97
+ ## [1.0.0-alpha.10](https://github.com/microsoft/fluentui/tree/@fluentui/tokens_v1.0.0-alpha.10)
98
+
99
+ Tue, 26 Sep 2023 15:31:40 GMT
100
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/tokens_v1.0.0-alpha.9..@fluentui/tokens_v1.0.0-alpha.10)
101
+
102
+ ### Changes
103
+
104
+ - fix: bump swc core to mitigate transpilation memory leaks ([PR #29253](https://github.com/microsoft/fluentui/pull/29253) by martinhochel@microsoft.com)
105
+
106
+ ## [1.0.0-alpha.9](https://github.com/microsoft/fluentui/tree/@fluentui/tokens_v1.0.0-alpha.9)
107
+
108
+ Tue, 05 Sep 2023 13:29:13 GMT
109
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/tokens_v1.0.0-alpha.8..@fluentui/tokens_v1.0.0-alpha.9)
110
+
111
+ ### Changes
112
+
113
+ - bumps @swc/helpers version to 0.5.1 ([PR #28989](https://github.com/microsoft/fluentui/pull/28989) by bernardo.sunderhus@gmail.com)
114
+
115
+ ## [1.0.0-alpha.8](https://github.com/microsoft/fluentui/tree/@fluentui/tokens_v1.0.0-alpha.8)
116
+
117
+ Wed, 09 Aug 2023 13:17:11 GMT
118
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/tokens_v1.0.0-alpha.7..@fluentui/tokens_v1.0.0-alpha.8)
119
+
120
+ ### Changes
121
+
122
+ - feat: add durationGentle ([PR #28770](https://github.com/microsoft/fluentui/pull/28770) by miroslav.stastny@microsoft.com)
123
+
124
+ ## [1.0.0-alpha.7](https://github.com/microsoft/fluentui/tree/@fluentui/tokens_v1.0.0-alpha.7)
125
+
126
+ Fri, 04 Aug 2023 08:52:58 GMT
127
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/tokens_v1.0.0-alpha.6..@fluentui/tokens_v1.0.0-alpha.7)
128
+
129
+ ### Changes
130
+
131
+ - feat: add status color tokens ([PR #28006](https://github.com/microsoft/fluentui/pull/28006) by miroslav.stastny@microsoft.com)
132
+ - Add colorBrandStroke2Contrast and colorNeutralStrokeAlpha2 ([PR #28638](https://github.com/microsoft/fluentui/pull/28638) by miroslav.stastny@microsoft.com)
133
+
134
+ ## [1.0.0-alpha.6](https://github.com/microsoft/fluentui/tree/@fluentui/tokens_v1.0.0-alpha.6)
135
+
136
+ Tue, 20 Jun 2023 12:39:07 GMT
137
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/tokens_v1.0.0-alpha.5..@fluentui/tokens_v1.0.0-alpha.6)
138
+
139
+ ### Changes
140
+
141
+ - Add/update theme tokens ([PR #27791](https://github.com/microsoft/fluentui/pull/27791) by miroslav.stastny@microsoft.com)
142
+ - fix: cast to String keys interpolated within string literals ([PR #28067](https://github.com/microsoft/fluentui/pull/28067) by martinhochel@microsoft.com)
143
+
144
+ ## [1.0.0-alpha.5](https://github.com/microsoft/fluentui/tree/@fluentui/tokens_v1.0.0-alpha.5)
145
+
146
+ Fri, 12 May 2023 20:28:07 GMT
147
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/tokens_v1.0.0-alpha.4..@fluentui/tokens_v1.0.0-alpha.5)
148
+
149
+ ### Changes
150
+
151
+ - chore: exclude .swcrc from being published ([PR #27740](https://github.com/microsoft/fluentui/pull/27740) by olfedias@microsoft.com)
152
+
153
+ ## [1.0.0-alpha.4](https://github.com/microsoft/fluentui/tree/@fluentui/tokens_v1.0.0-alpha.4)
154
+
155
+ Tue, 21 Mar 2023 21:23:17 GMT
156
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/tokens_v1.0.0-alpha.3..@fluentui/tokens_v1.0.0-alpha.4)
157
+
158
+ ### Changes
159
+
160
+ - chore: migrate to swc transpilation approach. ([PR #27250](https://github.com/microsoft/fluentui/pull/27250) by tristan.watanabe@gmail.com)
161
+ - fix: add node field to package.json exports map. ([PR #27154](https://github.com/microsoft/fluentui/pull/27154) by tristan.watanabe@gmail.com)
162
+
163
+ ## [1.0.0-alpha.3](https://github.com/microsoft/fluentui/tree/@fluentui/tokens_v1.0.0-alpha.3)
164
+
165
+ Wed, 15 Mar 2023 10:19:53 GMT
166
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/tokens_v1.0.0-alpha.2..@fluentui/tokens_v1.0.0-alpha.3)
167
+
168
+ ### Changes
169
+
170
+ - feat(tokens): Add colorNeutralBackgroundAlpha and colorNeutralStrokeAlpha tokens ([PR #27034](https://github.com/microsoft/fluentui/pull/27034) by miroslav.stastny@microsoft.com)
171
+
7
172
  ## [1.0.0-alpha.2](https://github.com/microsoft/fluentui/tree/@fluentui/tokens_v1.0.0-alpha.2)
8
173
 
9
- Wed, 21 Dec 2022 10:17:15 GMT
174
+ Wed, 21 Dec 2022 10:20:33 GMT
10
175
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/tokens_v1.0.0-alpha.1..@fluentui/tokens_v1.0.0-alpha.2)
11
176
 
12
177
  ### Changes
package/dist/index.d.ts CHANGED
@@ -83,6 +83,14 @@ export declare type ColorPaletteTokens = StatusColorPaletteTokens & PersonaColor
83
83
 
84
84
  export declare type ColorPaletteYellow = 'colorPaletteYellowBackground1' | 'colorPaletteYellowBackground2' | 'colorPaletteYellowBackground3' | 'colorPaletteYellowForeground1' | 'colorPaletteYellowForeground2' | 'colorPaletteYellowForeground3' | 'colorPaletteYellowForegroundInverted' | 'colorPaletteYellowBorderActive' | 'colorPaletteYellowBorder1' | 'colorPaletteYellowBorder2';
85
85
 
86
+ declare type ColorStatusDanger = 'colorStatusDangerBackground1' | 'colorStatusDangerBackground2' | 'colorStatusDangerBackground3' | 'colorStatusDangerBackground3Hover' | 'colorStatusDangerBackground3Pressed' | 'colorStatusDangerForeground1' | 'colorStatusDangerForeground2' | 'colorStatusDangerForeground3' | 'colorStatusDangerForegroundInverted' | 'colorStatusDangerBorderActive' | 'colorStatusDangerBorder1' | 'colorStatusDangerBorder2';
87
+
88
+ declare type ColorStatusSuccess = 'colorStatusSuccessBackground1' | 'colorStatusSuccessBackground2' | 'colorStatusSuccessBackground3' | 'colorStatusSuccessForeground1' | 'colorStatusSuccessForeground2' | 'colorStatusSuccessForeground3' | 'colorStatusSuccessForegroundInverted' | 'colorStatusSuccessBorderActive' | 'colorStatusSuccessBorder1' | 'colorStatusSuccessBorder2';
89
+
90
+ declare type ColorStatusTokens = Record<ColorStatusSuccess | ColorStatusWarning | ColorStatusDanger, string>;
91
+
92
+ declare type ColorStatusWarning = 'colorStatusWarningBackground1' | 'colorStatusWarningBackground2' | 'colorStatusWarningBackground3' | 'colorStatusWarningForeground1' | 'colorStatusWarningForeground2' | 'colorStatusWarningForeground3' | 'colorStatusWarningForegroundInverted' | 'colorStatusWarningBorderActive' | 'colorStatusWarningBorder1' | 'colorStatusWarningBorder2';
93
+
86
94
  /**
87
95
  * Design tokens for alias colors
88
96
  */
@@ -121,6 +129,8 @@ export declare type ColorTokens = {
121
129
  colorCompoundBrandForeground1Pressed: string;
122
130
  colorBrandForeground1: string;
123
131
  colorBrandForeground2: string;
132
+ colorBrandForeground2Hover: string;
133
+ colorBrandForeground2Pressed: string;
124
134
  colorNeutralForeground1Static: string;
125
135
  colorNeutralForegroundInverted: string;
126
136
  colorNeutralForegroundInvertedHover: string;
@@ -161,8 +171,10 @@ export declare type ColorTokens = {
161
171
  colorNeutralBackground5Pressed: string;
162
172
  colorNeutralBackground5Selected: string;
163
173
  colorNeutralBackground6: string;
164
- colorNeutralBackgroundStatic: string;
165
174
  colorNeutralBackgroundInverted: string;
175
+ colorNeutralBackgroundStatic: string;
176
+ colorNeutralBackgroundAlpha: string;
177
+ colorNeutralBackgroundAlpha2: string;
166
178
  colorSubtleBackground: string;
167
179
  colorSubtleBackgroundHover: string;
168
180
  colorSubtleBackgroundPressed: string;
@@ -195,10 +207,19 @@ export declare type ColorTokens = {
195
207
  colorCompoundBrandBackgroundPressed: string;
196
208
  colorBrandBackgroundStatic: string;
197
209
  colorBrandBackground2: string;
210
+ colorBrandBackground2Hover: string;
211
+ colorBrandBackground2Pressed: string;
212
+ colorBrandBackground3Static: string;
213
+ colorBrandBackground4Static: string;
198
214
  colorBrandBackgroundInverted: string;
199
215
  colorBrandBackgroundInvertedHover: string;
200
216
  colorBrandBackgroundInvertedPressed: string;
201
217
  colorBrandBackgroundInvertedSelected: string;
218
+ colorNeutralCardBackground: string;
219
+ colorNeutralCardBackgroundHover: string;
220
+ colorNeutralCardBackgroundPressed: string;
221
+ colorNeutralCardBackgroundSelected: string;
222
+ colorNeutralCardBackgroundDisabled: string;
202
223
  colorNeutralStrokeAccessible: string;
203
224
  colorNeutralStrokeAccessibleHover: string;
204
225
  colorNeutralStrokeAccessiblePressed: string;
@@ -209,6 +230,7 @@ export declare type ColorTokens = {
209
230
  colorNeutralStroke1Selected: string;
210
231
  colorNeutralStroke2: string;
211
232
  colorNeutralStroke3: string;
233
+ colorNeutralStrokeSubtle: string;
212
234
  colorNeutralStrokeOnBrand: string;
213
235
  colorNeutralStrokeOnBrand2: string;
214
236
  colorNeutralStrokeOnBrand2Hover: string;
@@ -216,6 +238,9 @@ export declare type ColorTokens = {
216
238
  colorNeutralStrokeOnBrand2Selected: string;
217
239
  colorBrandStroke1: string;
218
240
  colorBrandStroke2: string;
241
+ colorBrandStroke2Hover: string;
242
+ colorBrandStroke2Pressed: string;
243
+ colorBrandStroke2Contrast: string;
219
244
  colorCompoundBrandStroke: string;
220
245
  colorCompoundBrandStrokeHover: string;
221
246
  colorCompoundBrandStrokePressed: string;
@@ -224,6 +249,8 @@ export declare type ColorTokens = {
224
249
  colorTransparentStroke: string;
225
250
  colorTransparentStrokeInteractive: string;
226
251
  colorTransparentStrokeDisabled: string;
252
+ colorNeutralStrokeAlpha: string;
253
+ colorNeutralStrokeAlpha2: string;
227
254
  colorStrokeFocus1: string;
228
255
  colorStrokeFocus2: string;
229
256
  colorNeutralShadowAmbient: string;
@@ -261,6 +288,7 @@ export declare type DurationTokens = {
261
288
  durationFaster: string;
262
289
  durationFast: string;
263
290
  durationNormal: string;
291
+ durationGentle: string;
264
292
  durationSlow: string;
265
293
  durationSlower: string;
266
294
  durationUltraSlow: string;
@@ -373,7 +401,7 @@ export declare const teamsHighContrastTheme: Theme;
373
401
 
374
402
  export declare const teamsLightTheme: Theme;
375
403
 
376
- export declare type Theme = FontSizeTokens & LineHeightTokens & BorderRadiusTokens & StrokeWidthTokens & HorizontalSpacingTokens & VerticalSpacingTokens & DurationTokens & CurveTokens & ShadowTokens & ShadowBrandTokens & FontFamilyTokens & FontWeightTokens & ColorPaletteTokens & ColorTokens;
404
+ export declare type Theme = FontSizeTokens & LineHeightTokens & BorderRadiusTokens & StrokeWidthTokens & HorizontalSpacingTokens & VerticalSpacingTokens & DurationTokens & CurveTokens & ShadowTokens & ShadowBrandTokens & FontFamilyTokens & FontWeightTokens & ColorPaletteTokens & ColorStatusTokens & ColorTokens & ZIndexTokens;
377
405
 
378
406
  /**
379
407
  * Programmatically generates a tokens to css variables mapping object from the keys in a theme.
@@ -437,4 +465,18 @@ export declare const webDarkTheme: Theme;
437
465
 
438
466
  export declare const webLightTheme: Theme;
439
467
 
468
+ /**
469
+ * Design tokens for z-index groups and levels
470
+ */
471
+ export declare type ZIndexTokens = {
472
+ zIndexBackground?: string;
473
+ zIndexContent?: string;
474
+ zIndexOverlay?: string;
475
+ zIndexPopup?: string;
476
+ zIndexMessages?: string;
477
+ zIndexFloating?: string;
478
+ zIndexPriority?: string;
479
+ zIndexDebug?: string;
480
+ };
481
+
440
482
  export { }
@@ -1,155 +1,169 @@
1
- /* !!! DO NOT EDIT !!! */
2
-
3
- /* This file has been generated by the token pipeline */
4
- import { black, blackAlpha, grey, grey14Alpha, white, whiteAlpha } from '../global/colors';
5
- export const generateColorTokens = brand => ({
6
- colorNeutralForeground1: white,
7
- colorNeutralForeground1Hover: white,
8
- colorNeutralForeground1Pressed: white,
9
- colorNeutralForeground1Selected: white,
10
- colorNeutralForeground2: grey[84],
11
- colorNeutralForeground2Hover: white,
12
- colorNeutralForeground2Pressed: white,
13
- colorNeutralForeground2Selected: white,
14
- colorNeutralForeground2BrandHover: brand[100],
15
- colorNeutralForeground2BrandPressed: brand[90],
16
- colorNeutralForeground2BrandSelected: brand[100],
17
- colorNeutralForeground3: grey[68],
18
- colorNeutralForeground3Hover: grey[84],
19
- colorNeutralForeground3Pressed: grey[84],
20
- colorNeutralForeground3Selected: grey[84],
21
- colorNeutralForeground3BrandHover: brand[100],
22
- colorNeutralForeground3BrandPressed: brand[90],
23
- colorNeutralForeground3BrandSelected: brand[100],
24
- colorNeutralForeground4: grey[60],
25
- colorNeutralForegroundDisabled: grey[36],
26
- colorNeutralForegroundInvertedDisabled: whiteAlpha[40],
27
- colorBrandForegroundLink: brand[100],
28
- colorBrandForegroundLinkHover: brand[110],
29
- colorBrandForegroundLinkPressed: brand[90],
30
- colorBrandForegroundLinkSelected: brand[100],
31
- colorNeutralForeground2Link: grey[84],
32
- colorNeutralForeground2LinkHover: white,
33
- colorNeutralForeground2LinkPressed: white,
34
- colorNeutralForeground2LinkSelected: white,
35
- colorCompoundBrandForeground1: brand[100],
36
- colorCompoundBrandForeground1Hover: brand[110],
37
- colorCompoundBrandForeground1Pressed: brand[90],
38
- colorBrandForeground1: brand[100],
39
- colorBrandForeground2: brand[110],
40
- colorNeutralForeground1Static: grey[14],
41
- colorNeutralForegroundStaticInverted: white,
42
- colorNeutralForegroundInverted: grey[14],
43
- colorNeutralForegroundInvertedHover: grey[14],
44
- colorNeutralForegroundInvertedPressed: grey[14],
45
- colorNeutralForegroundInvertedSelected: grey[14],
46
- colorNeutralForegroundInverted2: grey[14],
47
- colorNeutralForegroundOnBrand: white,
48
- colorNeutralForegroundInvertedLink: white,
49
- colorNeutralForegroundInvertedLinkHover: white,
50
- colorNeutralForegroundInvertedLinkPressed: white,
51
- colorNeutralForegroundInvertedLinkSelected: white,
52
- colorBrandForegroundInverted: brand[80],
53
- colorBrandForegroundInvertedHover: brand[70],
54
- colorBrandForegroundInvertedPressed: brand[60],
55
- colorBrandForegroundOnLight: brand[80],
56
- colorBrandForegroundOnLightHover: brand[70],
57
- colorBrandForegroundOnLightPressed: brand[50],
58
- colorBrandForegroundOnLightSelected: brand[60],
59
- colorNeutralBackground1: grey[16],
60
- colorNeutralBackground1Hover: grey[24],
61
- colorNeutralBackground1Pressed: grey[12],
62
- colorNeutralBackground1Selected: grey[22],
63
- colorNeutralBackground2: grey[12],
64
- colorNeutralBackground2Hover: grey[20],
65
- colorNeutralBackground2Pressed: grey[8],
66
- colorNeutralBackground2Selected: grey[18],
67
- colorNeutralBackground3: grey[8],
68
- colorNeutralBackground3Hover: grey[16],
69
- colorNeutralBackground3Pressed: grey[4],
70
- colorNeutralBackground3Selected: grey[14],
71
- colorNeutralBackground4: grey[4],
72
- colorNeutralBackground4Hover: grey[12],
73
- colorNeutralBackground4Pressed: black,
74
- colorNeutralBackground4Selected: grey[10],
75
- colorNeutralBackground5: black,
76
- colorNeutralBackground5Hover: grey[8],
77
- colorNeutralBackground5Pressed: grey[2],
78
- colorNeutralBackground5Selected: grey[6],
79
- colorNeutralBackground6: grey[20],
80
- colorNeutralBackgroundInverted: white,
81
- colorNeutralBackgroundStatic: grey[24],
82
- colorSubtleBackground: 'transparent',
83
- colorSubtleBackgroundHover: grey[22],
84
- colorSubtleBackgroundPressed: grey[18],
85
- colorSubtleBackgroundSelected: grey[20],
86
- colorSubtleBackgroundLightAlphaHover: grey14Alpha[80],
87
- colorSubtleBackgroundLightAlphaPressed: grey14Alpha[50],
88
- colorSubtleBackgroundLightAlphaSelected: 'transparent',
89
- colorSubtleBackgroundInverted: 'transparent',
90
- colorSubtleBackgroundInvertedHover: blackAlpha[10],
91
- colorSubtleBackgroundInvertedPressed: blackAlpha[30],
92
- colorSubtleBackgroundInvertedSelected: blackAlpha[20],
93
- colorTransparentBackground: 'transparent',
94
- colorTransparentBackgroundHover: 'transparent',
95
- colorTransparentBackgroundPressed: 'transparent',
96
- colorTransparentBackgroundSelected: 'transparent',
97
- colorNeutralBackgroundDisabled: grey[8],
98
- colorNeutralBackgroundInvertedDisabled: whiteAlpha[10],
99
- colorNeutralStencil1: grey[34],
100
- colorNeutralStencil2: grey[20],
101
- colorNeutralStencil1Alpha: whiteAlpha[10],
102
- colorNeutralStencil2Alpha: whiteAlpha[5],
103
- colorBackgroundOverlay: blackAlpha[50],
104
- colorScrollbarOverlay: whiteAlpha[60],
105
- colorBrandBackground: brand[70],
106
- colorBrandBackgroundHover: brand[80],
107
- colorBrandBackgroundPressed: brand[40],
108
- colorBrandBackgroundSelected: brand[60],
109
- colorCompoundBrandBackground: brand[100],
110
- colorCompoundBrandBackgroundHover: brand[110],
111
- colorCompoundBrandBackgroundPressed: brand[90],
112
- colorBrandBackgroundStatic: brand[80],
113
- colorBrandBackground2: brand[40],
114
- colorBrandBackgroundInverted: white,
115
- colorBrandBackgroundInvertedHover: brand[160],
116
- colorBrandBackgroundInvertedPressed: brand[140],
117
- colorBrandBackgroundInvertedSelected: brand[150],
118
- colorNeutralStrokeAccessible: grey[68],
119
- colorNeutralStrokeAccessibleHover: grey[74],
120
- colorNeutralStrokeAccessiblePressed: grey[70],
121
- colorNeutralStrokeAccessibleSelected: brand[100],
122
- colorNeutralStroke1: grey[40],
123
- colorNeutralStroke1Hover: grey[46],
124
- colorNeutralStroke1Pressed: grey[42],
125
- colorNeutralStroke1Selected: grey[44],
126
- colorNeutralStroke2: grey[32],
127
- colorNeutralStroke3: grey[24],
128
- colorNeutralStrokeOnBrand: grey[16],
129
- colorNeutralStrokeOnBrand2: white,
130
- colorNeutralStrokeOnBrand2Hover: white,
131
- colorNeutralStrokeOnBrand2Pressed: white,
132
- colorNeutralStrokeOnBrand2Selected: white,
133
- colorBrandStroke1: brand[100],
134
- colorBrandStroke2: brand[50],
135
- colorCompoundBrandStroke: brand[100],
136
- colorCompoundBrandStrokeHover: brand[110],
137
- colorCompoundBrandStrokePressed: brand[90],
138
- colorNeutralStrokeDisabled: grey[26],
139
- colorNeutralStrokeInvertedDisabled: whiteAlpha[40],
140
- colorTransparentStroke: 'transparent',
141
- colorTransparentStrokeInteractive: 'transparent',
142
- colorTransparentStrokeDisabled: 'transparent',
143
- colorStrokeFocus1: black,
144
- colorStrokeFocus2: white,
145
- colorNeutralShadowAmbient: 'rgba(0,0,0,0.24)',
146
- colorNeutralShadowKey: 'rgba(0,0,0,0.28)',
147
- colorNeutralShadowAmbientLighter: 'rgba(0,0,0,0.12)',
148
- colorNeutralShadowKeyLighter: 'rgba(0,0,0,0.14)',
149
- colorNeutralShadowAmbientDarker: 'rgba(0,0,0,0.40)',
150
- colorNeutralShadowKeyDarker: 'rgba(0,0,0,0.48)',
151
- colorBrandShadowAmbient: 'rgba(0,0,0,0.30)',
152
- colorBrandShadowKey: 'rgba(0,0,0,0.25)' // rgba(0,0,0,0.25) undefined
153
-
154
- });
155
- //# sourceMappingURL=darkColor.js.map
1
+ /* !!! DO NOT EDIT !!! */ /* This file has been generated by the token pipeline */ import { black, blackAlpha, grey, grey10Alpha, grey12Alpha, grey14Alpha, white, whiteAlpha } from "../global/colors.js";
2
+ export const generateColorTokens = (brand)=>({
3
+ colorNeutralForeground1: white,
4
+ colorNeutralForeground1Hover: white,
5
+ colorNeutralForeground1Pressed: white,
6
+ colorNeutralForeground1Selected: white,
7
+ colorNeutralForeground2: grey[84],
8
+ colorNeutralForeground2Hover: white,
9
+ colorNeutralForeground2Pressed: white,
10
+ colorNeutralForeground2Selected: white,
11
+ colorNeutralForeground2BrandHover: brand[100],
12
+ colorNeutralForeground2BrandPressed: brand[90],
13
+ colorNeutralForeground2BrandSelected: brand[100],
14
+ colorNeutralForeground3: grey[68],
15
+ colorNeutralForeground3Hover: grey[84],
16
+ colorNeutralForeground3Pressed: grey[84],
17
+ colorNeutralForeground3Selected: grey[84],
18
+ colorNeutralForeground3BrandHover: brand[100],
19
+ colorNeutralForeground3BrandPressed: brand[90],
20
+ colorNeutralForeground3BrandSelected: brand[100],
21
+ colorNeutralForeground4: grey[60],
22
+ colorNeutralForegroundDisabled: grey[36],
23
+ colorNeutralForegroundInvertedDisabled: whiteAlpha[40],
24
+ colorBrandForegroundLink: brand[100],
25
+ colorBrandForegroundLinkHover: brand[110],
26
+ colorBrandForegroundLinkPressed: brand[90],
27
+ colorBrandForegroundLinkSelected: brand[100],
28
+ colorNeutralForeground2Link: grey[84],
29
+ colorNeutralForeground2LinkHover: white,
30
+ colorNeutralForeground2LinkPressed: white,
31
+ colorNeutralForeground2LinkSelected: white,
32
+ colorCompoundBrandForeground1: brand[100],
33
+ colorCompoundBrandForeground1Hover: brand[110],
34
+ colorCompoundBrandForeground1Pressed: brand[90],
35
+ colorBrandForeground1: brand[100],
36
+ colorBrandForeground2: brand[110],
37
+ colorBrandForeground2Hover: brand[130],
38
+ colorBrandForeground2Pressed: brand[160],
39
+ colorNeutralForeground1Static: grey[14],
40
+ colorNeutralForegroundStaticInverted: white,
41
+ colorNeutralForegroundInverted: grey[14],
42
+ colorNeutralForegroundInvertedHover: grey[14],
43
+ colorNeutralForegroundInvertedPressed: grey[14],
44
+ colorNeutralForegroundInvertedSelected: grey[14],
45
+ colorNeutralForegroundInverted2: grey[14],
46
+ colorNeutralForegroundOnBrand: white,
47
+ colorNeutralForegroundInvertedLink: white,
48
+ colorNeutralForegroundInvertedLinkHover: white,
49
+ colorNeutralForegroundInvertedLinkPressed: white,
50
+ colorNeutralForegroundInvertedLinkSelected: white,
51
+ colorBrandForegroundInverted: brand[80],
52
+ colorBrandForegroundInvertedHover: brand[70],
53
+ colorBrandForegroundInvertedPressed: brand[60],
54
+ colorBrandForegroundOnLight: brand[80],
55
+ colorBrandForegroundOnLightHover: brand[70],
56
+ colorBrandForegroundOnLightPressed: brand[50],
57
+ colorBrandForegroundOnLightSelected: brand[60],
58
+ colorNeutralBackground1: grey[16],
59
+ colorNeutralBackground1Hover: grey[24],
60
+ colorNeutralBackground1Pressed: grey[12],
61
+ colorNeutralBackground1Selected: grey[22],
62
+ colorNeutralBackground2: grey[12],
63
+ colorNeutralBackground2Hover: grey[20],
64
+ colorNeutralBackground2Pressed: grey[8],
65
+ colorNeutralBackground2Selected: grey[18],
66
+ colorNeutralBackground3: grey[8],
67
+ colorNeutralBackground3Hover: grey[16],
68
+ colorNeutralBackground3Pressed: grey[4],
69
+ colorNeutralBackground3Selected: grey[14],
70
+ colorNeutralBackground4: grey[4],
71
+ colorNeutralBackground4Hover: grey[12],
72
+ colorNeutralBackground4Pressed: black,
73
+ colorNeutralBackground4Selected: grey[10],
74
+ colorNeutralBackground5: black,
75
+ colorNeutralBackground5Hover: grey[8],
76
+ colorNeutralBackground5Pressed: grey[2],
77
+ colorNeutralBackground5Selected: grey[6],
78
+ colorNeutralBackground6: grey[20],
79
+ colorNeutralBackgroundInverted: white,
80
+ colorNeutralBackgroundStatic: grey[24],
81
+ colorNeutralBackgroundAlpha: grey10Alpha[50],
82
+ colorNeutralBackgroundAlpha2: grey12Alpha[70],
83
+ colorSubtleBackground: 'transparent',
84
+ colorSubtleBackgroundHover: grey[22],
85
+ colorSubtleBackgroundPressed: grey[18],
86
+ colorSubtleBackgroundSelected: grey[20],
87
+ colorSubtleBackgroundLightAlphaHover: grey14Alpha[80],
88
+ colorSubtleBackgroundLightAlphaPressed: grey14Alpha[50],
89
+ colorSubtleBackgroundLightAlphaSelected: 'transparent',
90
+ colorSubtleBackgroundInverted: 'transparent',
91
+ colorSubtleBackgroundInvertedHover: blackAlpha[10],
92
+ colorSubtleBackgroundInvertedPressed: blackAlpha[30],
93
+ colorSubtleBackgroundInvertedSelected: blackAlpha[20],
94
+ colorTransparentBackground: 'transparent',
95
+ colorTransparentBackgroundHover: 'transparent',
96
+ colorTransparentBackgroundPressed: 'transparent',
97
+ colorTransparentBackgroundSelected: 'transparent',
98
+ colorNeutralBackgroundDisabled: grey[8],
99
+ colorNeutralBackgroundInvertedDisabled: whiteAlpha[10],
100
+ colorNeutralStencil1: grey[34],
101
+ colorNeutralStencil2: grey[20],
102
+ colorNeutralStencil1Alpha: whiteAlpha[10],
103
+ colorNeutralStencil2Alpha: whiteAlpha[5],
104
+ colorBackgroundOverlay: blackAlpha[50],
105
+ colorScrollbarOverlay: whiteAlpha[60],
106
+ colorBrandBackground: brand[70],
107
+ colorBrandBackgroundHover: brand[80],
108
+ colorBrandBackgroundPressed: brand[40],
109
+ colorBrandBackgroundSelected: brand[60],
110
+ colorCompoundBrandBackground: brand[100],
111
+ colorCompoundBrandBackgroundHover: brand[110],
112
+ colorCompoundBrandBackgroundPressed: brand[90],
113
+ colorBrandBackgroundStatic: brand[80],
114
+ colorBrandBackground2: brand[20],
115
+ colorBrandBackground2Hover: brand[40],
116
+ colorBrandBackground2Pressed: brand[10],
117
+ colorBrandBackground3Static: brand[60],
118
+ colorBrandBackground4Static: brand[40],
119
+ colorBrandBackgroundInverted: white,
120
+ colorBrandBackgroundInvertedHover: brand[160],
121
+ colorBrandBackgroundInvertedPressed: brand[140],
122
+ colorBrandBackgroundInvertedSelected: brand[150],
123
+ colorNeutralCardBackground: grey[20],
124
+ colorNeutralCardBackgroundHover: grey[24],
125
+ colorNeutralCardBackgroundPressed: grey[18],
126
+ colorNeutralCardBackgroundSelected: grey[22],
127
+ colorNeutralCardBackgroundDisabled: grey[8],
128
+ colorNeutralStrokeAccessible: grey[68],
129
+ colorNeutralStrokeAccessibleHover: grey[74],
130
+ colorNeutralStrokeAccessiblePressed: grey[70],
131
+ colorNeutralStrokeAccessibleSelected: brand[100],
132
+ colorNeutralStroke1: grey[40],
133
+ colorNeutralStroke1Hover: grey[46],
134
+ colorNeutralStroke1Pressed: grey[42],
135
+ colorNeutralStroke1Selected: grey[44],
136
+ colorNeutralStroke2: grey[32],
137
+ colorNeutralStroke3: grey[24],
138
+ colorNeutralStrokeSubtle: grey[4],
139
+ colorNeutralStrokeOnBrand: grey[16],
140
+ colorNeutralStrokeOnBrand2: white,
141
+ colorNeutralStrokeOnBrand2Hover: white,
142
+ colorNeutralStrokeOnBrand2Pressed: white,
143
+ colorNeutralStrokeOnBrand2Selected: white,
144
+ colorBrandStroke1: brand[100],
145
+ colorBrandStroke2: brand[50],
146
+ colorBrandStroke2Hover: brand[50],
147
+ colorBrandStroke2Pressed: brand[30],
148
+ colorBrandStroke2Contrast: brand[50],
149
+ colorCompoundBrandStroke: brand[100],
150
+ colorCompoundBrandStrokeHover: brand[110],
151
+ colorCompoundBrandStrokePressed: brand[90],
152
+ colorNeutralStrokeDisabled: grey[26],
153
+ colorNeutralStrokeInvertedDisabled: whiteAlpha[40],
154
+ colorTransparentStroke: 'transparent',
155
+ colorTransparentStrokeInteractive: 'transparent',
156
+ colorTransparentStrokeDisabled: 'transparent',
157
+ colorNeutralStrokeAlpha: whiteAlpha[10],
158
+ colorNeutralStrokeAlpha2: whiteAlpha[20],
159
+ colorStrokeFocus1: black,
160
+ colorStrokeFocus2: white,
161
+ colorNeutralShadowAmbient: 'rgba(0,0,0,0.24)',
162
+ colorNeutralShadowKey: 'rgba(0,0,0,0.28)',
163
+ colorNeutralShadowAmbientLighter: 'rgba(0,0,0,0.12)',
164
+ colorNeutralShadowKeyLighter: 'rgba(0,0,0,0.14)',
165
+ colorNeutralShadowAmbientDarker: 'rgba(0,0,0,0.40)',
166
+ colorNeutralShadowKeyDarker: 'rgba(0,0,0,0.48)',
167
+ colorBrandShadowAmbient: 'rgba(0,0,0,0.30)',
168
+ colorBrandShadowKey: 'rgba(0,0,0,0.25)'
169
+ });