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

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 (226) hide show
  1. package/CHANGELOG.json +16 -1
  2. package/CHANGELOG.md +11 -2
  3. package/dist/index.d.ts +439 -0
  4. package/lib/alias/darkColor.js +155 -0
  5. package/lib/alias/darkColor.js.map +1 -0
  6. package/lib/alias/darkColorPalette.js +44 -0
  7. package/lib/alias/darkColorPalette.js.map +1 -0
  8. package/lib/alias/highContrastColor.js +155 -0
  9. package/lib/alias/highContrastColor.js.map +1 -0
  10. package/lib/alias/highContrastColorPalette.js +34 -0
  11. package/lib/alias/highContrastColorPalette.js.map +1 -0
  12. package/lib/alias/lightColor.js +155 -0
  13. package/lib/alias/lightColor.js.map +1 -0
  14. package/lib/alias/lightColorPalette.js +35 -0
  15. package/lib/alias/lightColorPalette.js.map +1 -0
  16. package/lib/alias/teamsDarkColor.js +155 -0
  17. package/lib/alias/teamsDarkColor.js.map +1 -0
  18. package/lib/global/borderRadius.js +9 -0
  19. package/lib/global/borderRadius.js.map +1 -0
  20. package/lib/global/brandColors.js +55 -0
  21. package/lib/global/brandColors.js.map +1 -0
  22. package/lib/global/colorPalette.js +41 -0
  23. package/lib/global/colorPalette.js.map +1 -0
  24. package/lib/global/colors.js +789 -0
  25. package/lib/global/colors.js.map +1 -0
  26. package/lib/global/curves.js +12 -0
  27. package/lib/global/curves.js.map +1 -0
  28. package/lib/global/durations.js +10 -0
  29. package/lib/global/durations.js.map +1 -0
  30. package/lib/global/fonts.js +38 -0
  31. package/lib/global/fonts.js.map +1 -0
  32. package/lib/global/index.js +10 -0
  33. package/lib/global/index.js.map +1 -0
  34. package/lib/global/spacings.js +41 -0
  35. package/lib/global/spacings.js.map +1 -0
  36. package/lib/global/strokeWidths.js +7 -0
  37. package/lib/global/strokeWidths.js.map +1 -0
  38. package/lib/global/typographyStyles.js +110 -0
  39. package/lib/global/typographyStyles.js.map +1 -0
  40. package/lib/index.js +5 -1
  41. package/lib/index.js.map +1 -1
  42. package/lib/sharedColorNames.js +9 -0
  43. package/lib/sharedColorNames.js.map +1 -0
  44. package/lib/themeToTokensObject.js +19 -0
  45. package/lib/themeToTokensObject.js.map +1 -0
  46. package/lib/themes/index.js +3 -0
  47. package/lib/themes/index.js.map +1 -0
  48. package/lib/themes/teams/darkTheme.js +4 -0
  49. package/lib/themes/teams/darkTheme.js.map +1 -0
  50. package/lib/themes/teams/highContrastTheme.js +3 -0
  51. package/lib/themes/teams/highContrastTheme.js.map +1 -0
  52. package/lib/themes/teams/index.js +4 -0
  53. package/lib/themes/teams/index.js.map +1 -0
  54. package/lib/themes/teams/lightTheme.js +4 -0
  55. package/lib/themes/teams/lightTheme.js.map +1 -0
  56. package/lib/themes/web/darkTheme.js +4 -0
  57. package/lib/themes/web/darkTheme.js.map +1 -0
  58. package/lib/themes/web/index.js +3 -0
  59. package/lib/themes/web/index.js.map +1 -0
  60. package/lib/themes/web/lightTheme.js +4 -0
  61. package/lib/themes/web/lightTheme.js.map +1 -0
  62. package/lib/tokens.js +435 -0
  63. package/lib/tokens.js.map +1 -0
  64. package/lib/types.js +2 -0
  65. package/lib/types.js.map +1 -0
  66. package/lib/utils/createDarkTheme.js +26 -0
  67. package/lib/utils/createDarkTheme.js.map +1 -0
  68. package/lib/utils/createHighContrastTheme.js +26 -0
  69. package/lib/utils/createHighContrastTheme.js.map +1 -0
  70. package/lib/utils/createLightTheme.js +26 -0
  71. package/lib/utils/createLightTheme.js.map +1 -0
  72. package/lib/utils/createTeamsDarkTheme.js +26 -0
  73. package/lib/utils/createTeamsDarkTheme.js.map +1 -0
  74. package/lib/utils/index.js +5 -0
  75. package/lib/utils/index.js.map +1 -0
  76. package/lib/utils/shadows.js +11 -0
  77. package/lib/utils/shadows.js.map +1 -0
  78. package/lib-amd/alias/darkColor.js +158 -0
  79. package/lib-amd/alias/darkColor.js.map +1 -0
  80. package/lib-amd/alias/darkColorPalette.js +47 -0
  81. package/lib-amd/alias/darkColorPalette.js.map +1 -0
  82. package/lib-amd/alias/highContrastColor.js +158 -0
  83. package/lib-amd/alias/highContrastColor.js.map +1 -0
  84. package/lib-amd/alias/highContrastColorPalette.js +37 -0
  85. package/lib-amd/alias/highContrastColorPalette.js.map +1 -0
  86. package/lib-amd/alias/lightColor.js +158 -0
  87. package/lib-amd/alias/lightColor.js.map +1 -0
  88. package/lib-amd/alias/lightColorPalette.js +38 -0
  89. package/lib-amd/alias/lightColorPalette.js.map +1 -0
  90. package/lib-amd/alias/teamsDarkColor.js +158 -0
  91. package/lib-amd/alias/teamsDarkColor.js.map +1 -0
  92. package/lib-amd/global/borderRadius.js +14 -0
  93. package/lib-amd/global/borderRadius.js.map +1 -0
  94. package/lib-amd/global/brandColors.js +60 -0
  95. package/lib-amd/global/brandColors.js.map +1 -0
  96. package/lib-amd/global/colorPalette.js +45 -0
  97. package/lib-amd/global/colorPalette.js.map +1 -0
  98. package/lib-amd/global/colors.js +793 -0
  99. package/lib-amd/global/colors.js.map +1 -0
  100. package/lib-amd/global/curves.js +17 -0
  101. package/lib-amd/global/curves.js.map +1 -0
  102. package/lib-amd/global/durations.js +15 -0
  103. package/lib-amd/global/durations.js.map +1 -0
  104. package/lib-amd/global/fonts.js +45 -0
  105. package/lib-amd/global/fonts.js.map +1 -0
  106. package/lib-amd/global/index.js +14 -0
  107. package/lib-amd/global/index.js.map +1 -0
  108. package/lib-amd/global/spacings.js +46 -0
  109. package/lib-amd/global/spacings.js.map +1 -0
  110. package/lib-amd/global/strokeWidths.js +12 -0
  111. package/lib-amd/global/strokeWidths.js.map +1 -0
  112. package/lib-amd/global/typographyStyles.js +113 -0
  113. package/lib-amd/global/typographyStyles.js.map +1 -0
  114. package/lib-amd/index.js +14 -1
  115. package/lib-amd/index.js.map +1 -1
  116. package/lib-amd/sharedColorNames.js +64 -0
  117. package/lib-amd/sharedColorNames.js.map +1 -0
  118. package/lib-amd/themeToTokensObject.js +24 -0
  119. package/lib-amd/themeToTokensObject.js.map +1 -0
  120. package/lib-amd/themes/index.js +7 -0
  121. package/lib-amd/themes/index.js.map +1 -0
  122. package/lib-amd/themes/teams/darkTheme.js +7 -0
  123. package/lib-amd/themes/teams/darkTheme.js.map +1 -0
  124. package/lib-amd/themes/teams/highContrastTheme.js +7 -0
  125. package/lib-amd/themes/teams/highContrastTheme.js.map +1 -0
  126. package/lib-amd/themes/teams/index.js +8 -0
  127. package/lib-amd/themes/teams/index.js.map +1 -0
  128. package/lib-amd/themes/teams/lightTheme.js +7 -0
  129. package/lib-amd/themes/teams/lightTheme.js.map +1 -0
  130. package/lib-amd/themes/web/darkTheme.js +7 -0
  131. package/lib-amd/themes/web/darkTheme.js.map +1 -0
  132. package/lib-amd/themes/web/index.js +7 -0
  133. package/lib-amd/themes/web/index.js.map +1 -0
  134. package/lib-amd/themes/web/lightTheme.js +7 -0
  135. package/lib-amd/themes/web/lightTheme.js.map +1 -0
  136. package/lib-amd/tokens.js +440 -0
  137. package/lib-amd/tokens.js.map +1 -0
  138. package/lib-amd/types.js +5 -0
  139. package/lib-amd/types.js.map +1 -0
  140. package/lib-amd/utils/createDarkTheme.js +11 -0
  141. package/lib-amd/utils/createDarkTheme.js.map +1 -0
  142. package/lib-amd/utils/createHighContrastTheme.js +11 -0
  143. package/lib-amd/utils/createHighContrastTheme.js.map +1 -0
  144. package/lib-amd/utils/createLightTheme.js +11 -0
  145. package/lib-amd/utils/createLightTheme.js.map +1 -0
  146. package/lib-amd/utils/createTeamsDarkTheme.js +11 -0
  147. package/lib-amd/utils/createTeamsDarkTheme.js.map +1 -0
  148. package/lib-amd/utils/index.js +9 -0
  149. package/lib-amd/utils/index.js.map +1 -0
  150. package/lib-amd/utils/shadows.js +19 -0
  151. package/lib-amd/utils/shadows.js.map +1 -0
  152. package/lib-commonjs/alias/darkColor.js +165 -0
  153. package/lib-commonjs/alias/darkColor.js.map +1 -0
  154. package/lib-commonjs/alias/darkColorPalette.js +53 -0
  155. package/lib-commonjs/alias/darkColorPalette.js.map +1 -0
  156. package/lib-commonjs/alias/highContrastColor.js +165 -0
  157. package/lib-commonjs/alias/highContrastColor.js.map +1 -0
  158. package/lib-commonjs/alias/highContrastColorPalette.js +43 -0
  159. package/lib-commonjs/alias/highContrastColorPalette.js.map +1 -0
  160. package/lib-commonjs/alias/lightColor.js +165 -0
  161. package/lib-commonjs/alias/lightColor.js.map +1 -0
  162. package/lib-commonjs/alias/lightColorPalette.js +44 -0
  163. package/lib-commonjs/alias/lightColorPalette.js.map +1 -0
  164. package/lib-commonjs/alias/teamsDarkColor.js +165 -0
  165. package/lib-commonjs/alias/teamsDarkColor.js.map +1 -0
  166. package/lib-commonjs/global/borderRadius.js +15 -0
  167. package/lib-commonjs/global/borderRadius.js.map +1 -0
  168. package/lib-commonjs/global/brandColors.js +61 -0
  169. package/lib-commonjs/global/brandColors.js.map +1 -0
  170. package/lib-commonjs/global/colorPalette.js +49 -0
  171. package/lib-commonjs/global/colorPalette.js.map +1 -0
  172. package/lib-commonjs/global/colors.js +796 -0
  173. package/lib-commonjs/global/colors.js.map +1 -0
  174. package/lib-commonjs/global/curves.js +18 -0
  175. package/lib-commonjs/global/curves.js.map +1 -0
  176. package/lib-commonjs/global/durations.js +16 -0
  177. package/lib-commonjs/global/durations.js.map +1 -0
  178. package/lib-commonjs/global/fonts.js +44 -0
  179. package/lib-commonjs/global/fonts.js.map +1 -0
  180. package/lib-commonjs/global/index.js +26 -0
  181. package/lib-commonjs/global/index.js.map +1 -0
  182. package/lib-commonjs/global/spacings.js +47 -0
  183. package/lib-commonjs/global/spacings.js.map +1 -0
  184. package/lib-commonjs/global/strokeWidths.js +13 -0
  185. package/lib-commonjs/global/strokeWidths.js.map +1 -0
  186. package/lib-commonjs/global/typographyStyles.js +118 -0
  187. package/lib-commonjs/global/typographyStyles.js.map +1 -0
  188. package/lib-commonjs/index.js +88 -0
  189. package/lib-commonjs/index.js.map +1 -1
  190. package/lib-commonjs/sharedColorNames.js +16 -0
  191. package/lib-commonjs/sharedColorNames.js.map +1 -0
  192. package/lib-commonjs/themeToTokensObject.js +28 -0
  193. package/lib-commonjs/themeToTokensObject.js.map +1 -0
  194. package/lib-commonjs/themes/index.js +12 -0
  195. package/lib-commonjs/themes/index.js.map +1 -0
  196. package/lib-commonjs/themes/teams/darkTheme.js +13 -0
  197. package/lib-commonjs/themes/teams/darkTheme.js.map +1 -0
  198. package/lib-commonjs/themes/teams/highContrastTheme.js +11 -0
  199. package/lib-commonjs/themes/teams/highContrastTheme.js.map +1 -0
  200. package/lib-commonjs/themes/teams/index.js +14 -0
  201. package/lib-commonjs/themes/teams/index.js.map +1 -0
  202. package/lib-commonjs/themes/teams/lightTheme.js +13 -0
  203. package/lib-commonjs/themes/teams/lightTheme.js.map +1 -0
  204. package/lib-commonjs/themes/web/darkTheme.js +13 -0
  205. package/lib-commonjs/themes/web/darkTheme.js.map +1 -0
  206. package/lib-commonjs/themes/web/index.js +12 -0
  207. package/lib-commonjs/themes/web/index.js.map +1 -0
  208. package/lib-commonjs/themes/web/lightTheme.js +13 -0
  209. package/lib-commonjs/themes/web/lightTheme.js.map +1 -0
  210. package/lib-commonjs/tokens.js +441 -0
  211. package/lib-commonjs/tokens.js.map +1 -0
  212. package/lib-commonjs/types.js +6 -0
  213. package/lib-commonjs/types.js.map +1 -0
  214. package/lib-commonjs/utils/createDarkTheme.js +42 -0
  215. package/lib-commonjs/utils/createDarkTheme.js.map +1 -0
  216. package/lib-commonjs/utils/createHighContrastTheme.js +42 -0
  217. package/lib-commonjs/utils/createHighContrastTheme.js.map +1 -0
  218. package/lib-commonjs/utils/createLightTheme.js +42 -0
  219. package/lib-commonjs/utils/createLightTheme.js.map +1 -0
  220. package/lib-commonjs/utils/createTeamsDarkTheme.js +42 -0
  221. package/lib-commonjs/utils/createTeamsDarkTheme.js.map +1 -0
  222. package/lib-commonjs/utils/index.js +16 -0
  223. package/lib-commonjs/utils/index.js.map +1 -0
  224. package/lib-commonjs/utils/shadows.js +20 -0
  225. package/lib-commonjs/utils/shadows.js.map +1 -0
  226. package/package.json +2 -1
package/CHANGELOG.json CHANGED
@@ -2,7 +2,22 @@
2
2
  "name": "@fluentui/tokens",
3
3
  "entries": [
4
4
  {
5
- "date": "Tue, 20 Dec 2022 07:51:41 GMT",
5
+ "date": "Wed, 21 Dec 2022 10:17:15 GMT",
6
+ "tag": "@fluentui/tokens_v1.0.0-alpha.2",
7
+ "version": "1.0.0-alpha.2",
8
+ "comments": {
9
+ "prerelease": [
10
+ {
11
+ "author": "miroslav.stastny@microsoft.com",
12
+ "package": "@fluentui/tokens",
13
+ "commit": "97c1c1ab218afb20e37bfc35936fd88177d439b4",
14
+ "comment": "Hoist theme tokens from react-theme to tokens package"
15
+ }
16
+ ]
17
+ }
18
+ },
19
+ {
20
+ "date": "Tue, 20 Dec 2022 07:53:34 GMT",
6
21
  "tag": "@fluentui/tokens_v1.0.0-alpha.1",
7
22
  "version": "1.0.0-alpha.1",
8
23
  "comments": {
package/CHANGELOG.md CHANGED
@@ -1,12 +1,21 @@
1
1
  # Change Log - @fluentui/tokens
2
2
 
3
- This log was last generated on Tue, 20 Dec 2022 07:51:41 GMT and should not be manually modified.
3
+ This log was last generated on Wed, 21 Dec 2022 10:17:15 GMT and should not be manually modified.
4
4
 
5
5
  <!-- Start content -->
6
6
 
7
+ ## [1.0.0-alpha.2](https://github.com/microsoft/fluentui/tree/@fluentui/tokens_v1.0.0-alpha.2)
8
+
9
+ Wed, 21 Dec 2022 10:17:15 GMT
10
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/tokens_v1.0.0-alpha.1..@fluentui/tokens_v1.0.0-alpha.2)
11
+
12
+ ### Changes
13
+
14
+ - Hoist theme tokens from react-theme to tokens package ([PR #25966](https://github.com/microsoft/fluentui/pull/25966) by miroslav.stastny@microsoft.com)
15
+
7
16
  ## [1.0.0-alpha.1](https://github.com/microsoft/fluentui/tree/@fluentui/tokens_v1.0.0-alpha.1)
8
17
 
9
- Tue, 20 Dec 2022 07:51:41 GMT
18
+ Tue, 20 Dec 2022 07:53:34 GMT
10
19
 
11
20
  ### Changes
12
21
 
package/dist/index.d.ts CHANGED
@@ -1 +1,440 @@
1
+ export declare type BorderRadiusTokens = {
2
+ borderRadiusNone: string;
3
+ borderRadiusSmall: string;
4
+ borderRadiusMedium: string;
5
+ borderRadiusLarge: string;
6
+ borderRadiusXLarge: string;
7
+ borderRadiusCircular: string;
8
+ };
9
+
10
+ export declare type Brands = 10 | 20 | 30 | 40 | 50 | 60 | 70 | 80 | 90 | 100 | 110 | 120 | 130 | 140 | 150 | 160;
11
+
12
+ export declare type BrandVariants = Record<Brands, string>;
13
+
14
+ export declare type ColorPaletteAnchor = 'colorPaletteAnchorBackground2' | 'colorPaletteAnchorForeground2' | 'colorPaletteAnchorBorderActive';
15
+
16
+ export declare type ColorPaletteBeige = 'colorPaletteBeigeBackground2' | 'colorPaletteBeigeForeground2' | 'colorPaletteBeigeBorderActive';
17
+
18
+ export declare type ColorPaletteBerry = 'colorPaletteBerryBackground1' | 'colorPaletteBerryBackground2' | 'colorPaletteBerryBackground3' | 'colorPaletteBerryForeground1' | 'colorPaletteBerryForeground2' | 'colorPaletteBerryForeground3' | 'colorPaletteBerryBorderActive' | 'colorPaletteBerryBorder1' | 'colorPaletteBerryBorder2';
19
+
20
+ export declare type ColorPaletteBlue = 'colorPaletteBlueBackground2' | 'colorPaletteBlueForeground2' | 'colorPaletteBlueBorderActive';
21
+
22
+ export declare type ColorPaletteBrass = 'colorPaletteBrassBackground2' | 'colorPaletteBrassForeground2' | 'colorPaletteBrassBorderActive';
23
+
24
+ export declare type ColorPaletteBrown = 'colorPaletteBrownBackground2' | 'colorPaletteBrownForeground2' | 'colorPaletteBrownBorderActive';
25
+
26
+ export declare type ColorPaletteCornflower = 'colorPaletteCornflowerBackground2' | 'colorPaletteCornflowerForeground2' | 'colorPaletteCornflowerBorderActive';
27
+
28
+ export declare type ColorPaletteCranberry = 'colorPaletteCranberryBackground2' | 'colorPaletteCranberryForeground2' | 'colorPaletteCranberryBorderActive';
29
+
30
+ export declare type ColorPaletteDarkGreen = 'colorPaletteDarkGreenBackground2' | 'colorPaletteDarkGreenForeground2' | 'colorPaletteDarkGreenBorderActive';
31
+
32
+ export declare type ColorPaletteDarkOrange = 'colorPaletteDarkOrangeBackground1' | 'colorPaletteDarkOrangeBackground2' | 'colorPaletteDarkOrangeBackground3' | 'colorPaletteDarkOrangeForeground1' | 'colorPaletteDarkOrangeForeground2' | 'colorPaletteDarkOrangeForeground3' | 'colorPaletteDarkOrangeBorderActive' | 'colorPaletteDarkOrangeBorder1' | 'colorPaletteDarkOrangeBorder2';
33
+
34
+ export declare type ColorPaletteDarkRed = 'colorPaletteDarkRedBackground2' | 'colorPaletteDarkRedForeground2' | 'colorPaletteDarkRedBorderActive';
35
+
36
+ export declare type ColorPaletteForest = 'colorPaletteForestBackground2' | 'colorPaletteForestForeground2' | 'colorPaletteForestBorderActive';
37
+
38
+ export declare type ColorPaletteGold = 'colorPaletteGoldBackground2' | 'colorPaletteGoldForeground2' | 'colorPaletteGoldBorderActive';
39
+
40
+ export declare type ColorPaletteGrape = 'colorPaletteGrapeBackground2' | 'colorPaletteGrapeForeground2' | 'colorPaletteGrapeBorderActive';
41
+
42
+ export declare type ColorPaletteGreen = 'colorPaletteGreenBackground1' | 'colorPaletteGreenBackground2' | 'colorPaletteGreenBackground3' | 'colorPaletteGreenForeground1' | 'colorPaletteGreenForeground2' | 'colorPaletteGreenForeground3' | 'colorPaletteGreenForegroundInverted' | 'colorPaletteGreenBorderActive' | 'colorPaletteGreenBorder1' | 'colorPaletteGreenBorder2';
43
+
44
+ export declare type ColorPaletteLavender = 'colorPaletteLavenderBackground2' | 'colorPaletteLavenderForeground2' | 'colorPaletteLavenderBorderActive';
45
+
46
+ export declare type ColorPaletteLightGreen = 'colorPaletteLightGreenBackground1' | 'colorPaletteLightGreenBackground2' | 'colorPaletteLightGreenBackground3' | 'colorPaletteLightGreenForeground1' | 'colorPaletteLightGreenForeground2' | 'colorPaletteLightGreenForeground3' | 'colorPaletteLightGreenBorderActive' | 'colorPaletteLightGreenBorder1' | 'colorPaletteLightGreenBorder2';
47
+
48
+ export declare type ColorPaletteLightTeal = 'colorPaletteLightTealBackground2' | 'colorPaletteLightTealForeground2' | 'colorPaletteLightTealBorderActive';
49
+
50
+ export declare type ColorPaletteLilac = 'colorPaletteLilacBackground2' | 'colorPaletteLilacForeground2' | 'colorPaletteLilacBorderActive';
51
+
52
+ export declare type ColorPaletteMagenta = 'colorPaletteMagentaBackground2' | 'colorPaletteMagentaForeground2' | 'colorPaletteMagentaBorderActive';
53
+
54
+ export declare type ColorPaletteMarigold = 'colorPaletteMarigoldBackground1' | 'colorPaletteMarigoldBackground2' | 'colorPaletteMarigoldBackground3' | 'colorPaletteMarigoldForeground1' | 'colorPaletteMarigoldForeground2' | 'colorPaletteMarigoldForeground3' | 'colorPaletteMarigoldBorderActive' | 'colorPaletteMarigoldBorder1' | 'colorPaletteMarigoldBorder2';
55
+
56
+ export declare type ColorPaletteMink = 'colorPaletteMinkBackground2' | 'colorPaletteMinkForeground2' | 'colorPaletteMinkBorderActive';
57
+
58
+ export declare type ColorPaletteNavy = 'colorPaletteNavyBackground2' | 'colorPaletteNavyForeground2' | 'colorPaletteNavyBorderActive';
59
+
60
+ export declare type ColorPalettePeach = 'colorPalettePeachBackground2' | 'colorPalettePeachForeground2' | 'colorPalettePeachBorderActive';
61
+
62
+ export declare type ColorPalettePink = 'colorPalettePinkBackground2' | 'colorPalettePinkForeground2' | 'colorPalettePinkBorderActive';
63
+
64
+ export declare type ColorPalettePlatinum = 'colorPalettePlatinumBackground2' | 'colorPalettePlatinumForeground2' | 'colorPalettePlatinumBorderActive';
65
+
66
+ export declare type ColorPalettePlum = 'colorPalettePlumBackground2' | 'colorPalettePlumForeground2' | 'colorPalettePlumBorderActive';
67
+
68
+ export declare type ColorPalettePumpkin = 'colorPalettePumpkinBackground2' | 'colorPalettePumpkinForeground2' | 'colorPalettePumpkinBorderActive';
69
+
70
+ export declare type ColorPalettePurple = 'colorPalettePurpleBackground2' | 'colorPalettePurpleForeground2' | 'colorPalettePurpleBorderActive';
71
+
72
+ export declare type ColorPaletteRed = 'colorPaletteRedBackground1' | 'colorPaletteRedBackground2' | 'colorPaletteRedBackground3' | 'colorPaletteRedForeground1' | 'colorPaletteRedForeground2' | 'colorPaletteRedForeground3' | 'colorPaletteRedForegroundInverted' | 'colorPaletteRedBorderActive' | 'colorPaletteRedBorder1' | 'colorPaletteRedBorder2';
73
+
74
+ export declare type ColorPaletteRoyalBlue = 'colorPaletteRoyalBlueBackground2' | 'colorPaletteRoyalBlueForeground2' | 'colorPaletteRoyalBlueBorderActive';
75
+
76
+ export declare type ColorPaletteSeafoam = 'colorPaletteSeafoamBackground2' | 'colorPaletteSeafoamForeground2' | 'colorPaletteSeafoamBorderActive';
77
+
78
+ export declare type ColorPaletteSteel = 'colorPaletteSteelBackground2' | 'colorPaletteSteelForeground2' | 'colorPaletteSteelBorderActive';
79
+
80
+ export declare type ColorPaletteTeal = 'colorPaletteTealBackground2' | 'colorPaletteTealForeground2' | 'colorPaletteTealBorderActive';
81
+
82
+ export declare type ColorPaletteTokens = StatusColorPaletteTokens & PersonaColorPaletteTokens;
83
+
84
+ export declare type ColorPaletteYellow = 'colorPaletteYellowBackground1' | 'colorPaletteYellowBackground2' | 'colorPaletteYellowBackground3' | 'colorPaletteYellowForeground1' | 'colorPaletteYellowForeground2' | 'colorPaletteYellowForeground3' | 'colorPaletteYellowForegroundInverted' | 'colorPaletteYellowBorderActive' | 'colorPaletteYellowBorder1' | 'colorPaletteYellowBorder2';
85
+
86
+ /**
87
+ * Design tokens for alias colors
88
+ */
89
+ export declare type ColorTokens = {
90
+ colorNeutralForeground1: string;
91
+ colorNeutralForeground1Hover: string;
92
+ colorNeutralForeground1Pressed: string;
93
+ colorNeutralForeground1Selected: string;
94
+ colorNeutralForeground2: string;
95
+ colorNeutralForeground2Hover: string;
96
+ colorNeutralForeground2Pressed: string;
97
+ colorNeutralForeground2Selected: string;
98
+ colorNeutralForeground2BrandHover: string;
99
+ colorNeutralForeground2BrandPressed: string;
100
+ colorNeutralForeground2BrandSelected: string;
101
+ colorNeutralForeground3: string;
102
+ colorNeutralForeground3Hover: string;
103
+ colorNeutralForeground3Pressed: string;
104
+ colorNeutralForeground3Selected: string;
105
+ colorNeutralForeground3BrandHover: string;
106
+ colorNeutralForeground3BrandPressed: string;
107
+ colorNeutralForeground3BrandSelected: string;
108
+ colorNeutralForeground4: string;
109
+ colorNeutralForegroundDisabled: string;
110
+ colorNeutralForegroundInvertedDisabled: string;
111
+ colorBrandForegroundLink: string;
112
+ colorBrandForegroundLinkHover: string;
113
+ colorBrandForegroundLinkPressed: string;
114
+ colorBrandForegroundLinkSelected: string;
115
+ colorNeutralForeground2Link: string;
116
+ colorNeutralForeground2LinkHover: string;
117
+ colorNeutralForeground2LinkPressed: string;
118
+ colorNeutralForeground2LinkSelected: string;
119
+ colorCompoundBrandForeground1: string;
120
+ colorCompoundBrandForeground1Hover: string;
121
+ colorCompoundBrandForeground1Pressed: string;
122
+ colorBrandForeground1: string;
123
+ colorBrandForeground2: string;
124
+ colorNeutralForeground1Static: string;
125
+ colorNeutralForegroundInverted: string;
126
+ colorNeutralForegroundInvertedHover: string;
127
+ colorNeutralForegroundInvertedPressed: string;
128
+ colorNeutralForegroundInvertedSelected: string;
129
+ colorNeutralForegroundInverted2: string;
130
+ colorNeutralForegroundOnBrand: string;
131
+ colorNeutralForegroundStaticInverted: string;
132
+ colorNeutralForegroundInvertedLink: string;
133
+ colorNeutralForegroundInvertedLinkHover: string;
134
+ colorNeutralForegroundInvertedLinkPressed: string;
135
+ colorNeutralForegroundInvertedLinkSelected: string;
136
+ colorBrandForegroundInverted: string;
137
+ colorBrandForegroundInvertedHover: string;
138
+ colorBrandForegroundInvertedPressed: string;
139
+ colorBrandForegroundOnLight: string;
140
+ colorBrandForegroundOnLightHover: string;
141
+ colorBrandForegroundOnLightPressed: string;
142
+ colorBrandForegroundOnLightSelected: string;
143
+ colorNeutralBackground1: string;
144
+ colorNeutralBackground1Hover: string;
145
+ colorNeutralBackground1Pressed: string;
146
+ colorNeutralBackground1Selected: string;
147
+ colorNeutralBackground2: string;
148
+ colorNeutralBackground2Hover: string;
149
+ colorNeutralBackground2Pressed: string;
150
+ colorNeutralBackground2Selected: string;
151
+ colorNeutralBackground3: string;
152
+ colorNeutralBackground3Hover: string;
153
+ colorNeutralBackground3Pressed: string;
154
+ colorNeutralBackground3Selected: string;
155
+ colorNeutralBackground4: string;
156
+ colorNeutralBackground4Hover: string;
157
+ colorNeutralBackground4Pressed: string;
158
+ colorNeutralBackground4Selected: string;
159
+ colorNeutralBackground5: string;
160
+ colorNeutralBackground5Hover: string;
161
+ colorNeutralBackground5Pressed: string;
162
+ colorNeutralBackground5Selected: string;
163
+ colorNeutralBackground6: string;
164
+ colorNeutralBackgroundStatic: string;
165
+ colorNeutralBackgroundInverted: string;
166
+ colorSubtleBackground: string;
167
+ colorSubtleBackgroundHover: string;
168
+ colorSubtleBackgroundPressed: string;
169
+ colorSubtleBackgroundSelected: string;
170
+ colorSubtleBackgroundLightAlphaHover: string;
171
+ colorSubtleBackgroundLightAlphaPressed: string;
172
+ colorSubtleBackgroundLightAlphaSelected: string;
173
+ colorSubtleBackgroundInverted: string;
174
+ colorSubtleBackgroundInvertedHover: string;
175
+ colorSubtleBackgroundInvertedPressed: string;
176
+ colorSubtleBackgroundInvertedSelected: string;
177
+ colorTransparentBackground: string;
178
+ colorTransparentBackgroundHover: string;
179
+ colorTransparentBackgroundPressed: string;
180
+ colorTransparentBackgroundSelected: string;
181
+ colorNeutralBackgroundDisabled: string;
182
+ colorNeutralBackgroundInvertedDisabled: string;
183
+ colorNeutralStencil1: string;
184
+ colorNeutralStencil2: string;
185
+ colorNeutralStencil1Alpha: string;
186
+ colorNeutralStencil2Alpha: string;
187
+ colorBackgroundOverlay: string;
188
+ colorScrollbarOverlay: string;
189
+ colorBrandBackground: string;
190
+ colorBrandBackgroundHover: string;
191
+ colorBrandBackgroundPressed: string;
192
+ colorBrandBackgroundSelected: string;
193
+ colorCompoundBrandBackground: string;
194
+ colorCompoundBrandBackgroundHover: string;
195
+ colorCompoundBrandBackgroundPressed: string;
196
+ colorBrandBackgroundStatic: string;
197
+ colorBrandBackground2: string;
198
+ colorBrandBackgroundInverted: string;
199
+ colorBrandBackgroundInvertedHover: string;
200
+ colorBrandBackgroundInvertedPressed: string;
201
+ colorBrandBackgroundInvertedSelected: string;
202
+ colorNeutralStrokeAccessible: string;
203
+ colorNeutralStrokeAccessibleHover: string;
204
+ colorNeutralStrokeAccessiblePressed: string;
205
+ colorNeutralStrokeAccessibleSelected: string;
206
+ colorNeutralStroke1: string;
207
+ colorNeutralStroke1Hover: string;
208
+ colorNeutralStroke1Pressed: string;
209
+ colorNeutralStroke1Selected: string;
210
+ colorNeutralStroke2: string;
211
+ colorNeutralStroke3: string;
212
+ colorNeutralStrokeOnBrand: string;
213
+ colorNeutralStrokeOnBrand2: string;
214
+ colorNeutralStrokeOnBrand2Hover: string;
215
+ colorNeutralStrokeOnBrand2Pressed: string;
216
+ colorNeutralStrokeOnBrand2Selected: string;
217
+ colorBrandStroke1: string;
218
+ colorBrandStroke2: string;
219
+ colorCompoundBrandStroke: string;
220
+ colorCompoundBrandStrokeHover: string;
221
+ colorCompoundBrandStrokePressed: string;
222
+ colorNeutralStrokeDisabled: string;
223
+ colorNeutralStrokeInvertedDisabled: string;
224
+ colorTransparentStroke: string;
225
+ colorTransparentStrokeInteractive: string;
226
+ colorTransparentStrokeDisabled: string;
227
+ colorStrokeFocus1: string;
228
+ colorStrokeFocus2: string;
229
+ colorNeutralShadowAmbient: string;
230
+ colorNeutralShadowKey: string;
231
+ colorNeutralShadowAmbientLighter: string;
232
+ colorNeutralShadowKeyLighter: string;
233
+ colorNeutralShadowAmbientDarker: string;
234
+ colorNeutralShadowKeyDarker: string;
235
+ colorBrandShadowAmbient: string;
236
+ colorBrandShadowKey: string;
237
+ };
238
+
239
+ export declare const createDarkTheme: (brand: BrandVariants) => Theme;
240
+
241
+ export declare const createHighContrastTheme: () => Theme;
242
+
243
+ export declare const createLightTheme: (brand: BrandVariants) => Theme;
244
+
245
+ export declare const createTeamsDarkTheme: (brand: BrandVariants) => Theme;
246
+
247
+ export declare type CurveTokens = {
248
+ curveAccelerateMax: string;
249
+ curveAccelerateMid: string;
250
+ curveAccelerateMin: string;
251
+ curveDecelerateMax: string;
252
+ curveDecelerateMid: string;
253
+ curveDecelerateMin: string;
254
+ curveEasyEaseMax: string;
255
+ curveEasyEase: string;
256
+ curveLinear: string;
257
+ };
258
+
259
+ export declare type DurationTokens = {
260
+ durationUltraFast: string;
261
+ durationFaster: string;
262
+ durationFast: string;
263
+ durationNormal: string;
264
+ durationSlow: string;
265
+ durationSlower: string;
266
+ durationUltraSlow: string;
267
+ };
268
+
269
+ export declare type FontFamilyTokens = {
270
+ fontFamilyBase: string;
271
+ fontFamilyMonospace: string;
272
+ fontFamilyNumeric: string;
273
+ };
274
+
275
+ export declare type FontSizeTokens = {
276
+ fontSizeBase100: string;
277
+ fontSizeBase200: string;
278
+ fontSizeBase300: string;
279
+ fontSizeBase400: string;
280
+ fontSizeBase500: string;
281
+ fontSizeBase600: string;
282
+ fontSizeHero700: string;
283
+ fontSizeHero800: string;
284
+ fontSizeHero900: string;
285
+ fontSizeHero1000: string;
286
+ };
287
+
288
+ export declare type FontWeightTokens = {
289
+ fontWeightRegular: number;
290
+ fontWeightMedium: number;
291
+ fontWeightSemibold: number;
292
+ fontWeightBold: number;
293
+ };
294
+
295
+ export declare type HorizontalSpacingTokens = {
296
+ spacingHorizontalNone: string;
297
+ spacingHorizontalXXS: string;
298
+ spacingHorizontalXS: string;
299
+ spacingHorizontalSNudge: string;
300
+ spacingHorizontalS: string;
301
+ spacingHorizontalMNudge: string;
302
+ spacingHorizontalM: string;
303
+ spacingHorizontalL: string;
304
+ spacingHorizontalXL: string;
305
+ spacingHorizontalXXL: string;
306
+ spacingHorizontalXXXL: string;
307
+ };
308
+
309
+ export declare type LineHeightTokens = {
310
+ lineHeightBase100: string;
311
+ lineHeightBase200: string;
312
+ lineHeightBase300: string;
313
+ lineHeightBase400: string;
314
+ lineHeightBase500: string;
315
+ lineHeightBase600: string;
316
+ lineHeightHero700: string;
317
+ lineHeightHero800: string;
318
+ lineHeightHero900: string;
319
+ lineHeightHero1000: string;
320
+ };
321
+
322
+ export declare type PartialTheme = Partial<Theme>;
323
+
324
+ declare type PersonaColorPaletteTokens = Record<ColorPaletteDarkRed | ColorPaletteCranberry | ColorPalettePumpkin | ColorPalettePeach | ColorPaletteGold | ColorPaletteBrass | ColorPaletteBrown | ColorPaletteForest | ColorPaletteSeafoam | ColorPaletteDarkGreen | ColorPaletteLightTeal | ColorPaletteTeal | ColorPaletteSteel | ColorPaletteBlue | ColorPaletteRoyalBlue | ColorPaletteCornflower | ColorPaletteNavy | ColorPaletteLavender | ColorPalettePurple | ColorPaletteGrape | ColorPaletteLilac | ColorPalettePink | ColorPaletteMagenta | ColorPalettePlum | ColorPaletteBeige | ColorPaletteMink | ColorPalettePlatinum | ColorPaletteAnchor, string>;
325
+
326
+ export declare type ShadowBrandTokens = {
327
+ shadow2Brand: string;
328
+ shadow4Brand: string;
329
+ shadow8Brand: string;
330
+ shadow16Brand: string;
331
+ shadow28Brand: string;
332
+ shadow64Brand: string;
333
+ };
334
+
335
+ /**
336
+ * Design tokens for shadow levels
337
+ */
338
+ export declare type ShadowTokens = {
339
+ shadow2: string;
340
+ shadow4: string;
341
+ shadow8: string;
342
+ shadow16: string;
343
+ shadow28: string;
344
+ shadow64: string;
345
+ };
346
+
347
+ export declare type SpacingTokens = {
348
+ none: string;
349
+ xxs: string;
350
+ xs: string;
351
+ sNudge: string;
352
+ s: string;
353
+ mNudge: string;
354
+ m: string;
355
+ l: string;
356
+ xl: string;
357
+ xxl: string;
358
+ xxxl: string;
359
+ };
360
+
361
+ declare type StatusColorPaletteTokens = Record<ColorPaletteRed | ColorPaletteGreen | ColorPaletteDarkOrange | ColorPaletteYellow | ColorPaletteBerry | ColorPaletteMarigold | ColorPaletteLightGreen, string>;
362
+
363
+ export declare type StrokeWidthTokens = {
364
+ strokeWidthThin: string;
365
+ strokeWidthThick: string;
366
+ strokeWidthThicker: string;
367
+ strokeWidthThickest: string;
368
+ };
369
+
370
+ export declare const teamsDarkTheme: Theme;
371
+
372
+ export declare const teamsHighContrastTheme: Theme;
373
+
374
+ export declare const teamsLightTheme: Theme;
375
+
376
+ export declare type Theme = FontSizeTokens & LineHeightTokens & BorderRadiusTokens & StrokeWidthTokens & HorizontalSpacingTokens & VerticalSpacingTokens & DurationTokens & CurveTokens & ShadowTokens & ShadowBrandTokens & FontFamilyTokens & FontWeightTokens & ColorPaletteTokens & ColorTokens;
377
+
378
+ /**
379
+ * Programmatically generates a tokens to css variables mapping object from the keys in a theme.
380
+ * This helps with ease of use as a user of a custom theme does not have to manually construct this object, but it could
381
+ * affect tree-shaking since bundlers do not know the shape of the output.
382
+ *
383
+ * @param theme - Theme from which to get the keys to generate the tokens to css variables mapping object
384
+ * @returns Tokens to css variables mapping object corresponding to the passed theme
385
+ */
386
+ export declare function themeToTokensObject<TTheme extends Theme>(theme: TTheme): Record<keyof TTheme, string>;
387
+
388
+ export declare const tokens: Record<keyof Theme, string>;
389
+
390
+ export declare type TypographyStyle = {
391
+ fontFamily: string;
392
+ fontSize: string;
393
+ fontWeight: string;
394
+ lineHeight: string;
395
+ };
396
+
397
+ export declare type TypographyStyles = {
398
+ body1: TypographyStyle;
399
+ body1Strong: TypographyStyle;
400
+ body1Stronger: TypographyStyle;
401
+ body2: TypographyStyle;
402
+ caption1: TypographyStyle;
403
+ caption1Strong: TypographyStyle;
404
+ caption1Stronger: TypographyStyle;
405
+ caption2: TypographyStyle;
406
+ caption2Strong: TypographyStyle;
407
+ subtitle1: TypographyStyle;
408
+ subtitle2: TypographyStyle;
409
+ subtitle2Stronger: TypographyStyle;
410
+ title1: TypographyStyle;
411
+ title2: TypographyStyle;
412
+ title3: TypographyStyle;
413
+ largeTitle: TypographyStyle;
414
+ display: TypographyStyle;
415
+ };
416
+
417
+ /**
418
+ * Global typography styles (fontSize, fontWeight, and lineHeight)
419
+ */
420
+ export declare const typographyStyles: TypographyStyles;
421
+
422
+ export declare type VerticalSpacingTokens = {
423
+ spacingVerticalNone: string;
424
+ spacingVerticalXXS: string;
425
+ spacingVerticalXS: string;
426
+ spacingVerticalSNudge: string;
427
+ spacingVerticalS: string;
428
+ spacingVerticalMNudge: string;
429
+ spacingVerticalM: string;
430
+ spacingVerticalL: string;
431
+ spacingVerticalXL: string;
432
+ spacingVerticalXXL: string;
433
+ spacingVerticalXXXL: string;
434
+ };
435
+
436
+ export declare const webDarkTheme: Theme;
437
+
438
+ export declare const webLightTheme: Theme;
439
+
1
440
  export { }
@@ -0,0 +1,155 @@
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