@fluentui/react-theme 0.0.0-nightlya0ab3454ed20211208.1 → 0.0.0-nightlya0aef7969220220228.1

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 (94) hide show
  1. package/CHANGELOG.json +84 -4
  2. package/CHANGELOG.md +28 -5
  3. package/dist/react-theme.d.ts +62 -51
  4. package/lib/alias/dark.js +6 -3
  5. package/lib/alias/dark.js.map +1 -1
  6. package/lib/alias/highContrast.js +7 -4
  7. package/lib/alias/highContrast.js.map +1 -1
  8. package/lib/alias/light.js +5 -2
  9. package/lib/alias/light.js.map +1 -1
  10. package/lib/alias/teamsDark.js +6 -3
  11. package/lib/alias/teamsDark.js.map +1 -1
  12. package/lib/global/borderRadius.js.map +1 -1
  13. package/lib/global/brandColors.js.map +1 -1
  14. package/lib/global/colors.js.map +1 -1
  15. package/lib/global/fonts.js.map +1 -1
  16. package/lib/global/index.js.map +1 -1
  17. package/lib/global/strokeWidths.js.map +1 -1
  18. package/lib/index.d.ts +2 -0
  19. package/lib/index.js +2 -0
  20. package/lib/index.js.map +1 -1
  21. package/lib/themeToTokensObject.d.ts +10 -0
  22. package/lib/themeToTokensObject.js +19 -0
  23. package/lib/themeToTokensObject.js.map +1 -0
  24. package/lib/themes/index.js.map +1 -1
  25. package/lib/themes/teams/darkTheme.js.map +1 -1
  26. package/lib/themes/teams/highContrastTheme.js.map +1 -1
  27. package/lib/themes/teams/index.js.map +1 -1
  28. package/lib/themes/teams/lightTheme.js.map +1 -1
  29. package/lib/themes/web/darkTheme.js.map +1 -1
  30. package/lib/themes/web/highContrastTheme.js.map +1 -1
  31. package/lib/themes/web/index.js.map +1 -1
  32. package/lib/themes/web/lightTheme.js.map +1 -1
  33. package/lib/tokens.d.ts +2 -0
  34. package/lib/tokens.js +687 -0
  35. package/lib/tokens.js.map +1 -0
  36. package/lib/types.d.ts +50 -49
  37. package/lib/types.js.map +1 -1
  38. package/lib/utils/createDarkTheme.js.map +1 -1
  39. package/lib/utils/createHighContrastTheme.js.map +1 -1
  40. package/lib/utils/createLightTheme.js.map +1 -1
  41. package/lib/utils/createTeamsDarkTheme.js.map +1 -1
  42. package/lib/utils/index.d.ts +0 -1
  43. package/lib/utils/index.js +0 -1
  44. package/lib/utils/index.js.map +1 -1
  45. package/lib/utils/shadows.js.map +1 -1
  46. package/lib-commonjs/alias/dark.js +6 -3
  47. package/lib-commonjs/alias/dark.js.map +1 -1
  48. package/lib-commonjs/alias/highContrast.js +6 -3
  49. package/lib-commonjs/alias/highContrast.js.map +1 -1
  50. package/lib-commonjs/alias/light.js +5 -2
  51. package/lib-commonjs/alias/light.js.map +1 -1
  52. package/lib-commonjs/alias/teamsDark.js +6 -3
  53. package/lib-commonjs/alias/teamsDark.js.map +1 -1
  54. package/lib-commonjs/global/borderRadius.js.map +1 -1
  55. package/lib-commonjs/global/brandColors.js.map +1 -1
  56. package/lib-commonjs/global/colors.js.map +1 -1
  57. package/lib-commonjs/global/fonts.js.map +1 -1
  58. package/lib-commonjs/global/index.js.map +1 -1
  59. package/lib-commonjs/global/strokeWidths.js.map +1 -1
  60. package/lib-commonjs/index.d.ts +2 -0
  61. package/lib-commonjs/index.js +19 -0
  62. package/lib-commonjs/index.js.map +1 -1
  63. package/lib-commonjs/themeToTokensObject.d.ts +10 -0
  64. package/lib-commonjs/themeToTokensObject.js +28 -0
  65. package/lib-commonjs/themeToTokensObject.js.map +1 -0
  66. package/lib-commonjs/themes/index.js.map +1 -1
  67. package/lib-commonjs/themes/teams/darkTheme.js.map +1 -1
  68. package/lib-commonjs/themes/teams/highContrastTheme.js.map +1 -1
  69. package/lib-commonjs/themes/teams/index.js.map +1 -1
  70. package/lib-commonjs/themes/teams/lightTheme.js.map +1 -1
  71. package/lib-commonjs/themes/web/darkTheme.js.map +1 -1
  72. package/lib-commonjs/themes/web/highContrastTheme.js.map +1 -1
  73. package/lib-commonjs/themes/web/index.js.map +1 -1
  74. package/lib-commonjs/themes/web/lightTheme.js.map +1 -1
  75. package/lib-commonjs/tokens.d.ts +2 -0
  76. package/lib-commonjs/tokens.js +693 -0
  77. package/lib-commonjs/tokens.js.map +1 -0
  78. package/lib-commonjs/types.d.ts +50 -49
  79. package/lib-commonjs/types.js.map +1 -1
  80. package/lib-commonjs/utils/createDarkTheme.js.map +1 -1
  81. package/lib-commonjs/utils/createHighContrastTheme.js.map +1 -1
  82. package/lib-commonjs/utils/createLightTheme.js.map +1 -1
  83. package/lib-commonjs/utils/createTeamsDarkTheme.js.map +1 -1
  84. package/lib-commonjs/utils/index.d.ts +0 -1
  85. package/lib-commonjs/utils/index.js +0 -10
  86. package/lib-commonjs/utils/index.js.map +1 -1
  87. package/lib-commonjs/utils/shadows.js.map +1 -1
  88. package/package.json +3 -3
  89. package/lib/utils/mergeThemes.d.ts +0 -2
  90. package/lib/utils/mergeThemes.js +0 -15
  91. package/lib/utils/mergeThemes.js.map +0 -1
  92. package/lib-commonjs/utils/mergeThemes.d.ts +0 -2
  93. package/lib-commonjs/utils/mergeThemes.js +0 -24
  94. package/lib-commonjs/utils/mergeThemes.js.map +0 -1
package/CHANGELOG.json CHANGED
@@ -2,16 +2,66 @@
2
2
  "name": "@fluentui/react-theme",
3
3
  "entries": [
4
4
  {
5
- "date": "Wed, 08 Dec 2021 04:18:26 GMT",
6
- "tag": "@fluentui/react-theme_v0.0.0-nightlya0ab3454ed20211208.1",
7
- "version": "0.0.0-nightlya0ab3454ed20211208.1",
5
+ "date": "Mon, 28 Feb 2022 04:14:00 GMT",
6
+ "tag": "@fluentui/react-theme_v0.0.0-nightlya0aef7969220220228.1",
7
+ "version": "0.0.0-nightlya0aef7969220220228.1",
8
8
  "comments": {
9
9
  "prerelease": [
10
10
  {
11
11
  "author": "email not defined",
12
12
  "package": "@fluentui/react-theme",
13
- "commit": "bb962fc41a7769ab102b88c7cc76973034ede2d1",
13
+ "commit": "357dddd59345f57e77408824366096081c934571",
14
14
  "comment": "Release nightly v9"
15
+ }
16
+ ]
17
+ }
18
+ },
19
+ {
20
+ "date": "Fri, 18 Feb 2022 13:35:36 GMT",
21
+ "tag": "@fluentui/react-theme_v9.0.0-rc.3",
22
+ "version": "9.0.0-rc.3",
23
+ "comments": {
24
+ "prerelease": [
25
+ {
26
+ "author": "lingfangao@hotmail.com",
27
+ "package": "@fluentui/react-theme",
28
+ "commit": "1aa9e691fcccd9a64168cea7941c0f1e71fa1d14",
29
+ "comment": "fix: Source maps contain original source code"
30
+ }
31
+ ]
32
+ }
33
+ },
34
+ {
35
+ "date": "Thu, 10 Feb 2022 08:51:02 GMT",
36
+ "tag": "@fluentui/react-theme_v9.0.0-rc.1",
37
+ "version": "9.0.0-rc.1",
38
+ "comments": {
39
+ "none": [
40
+ {
41
+ "author": "olfedias@microsoft.com",
42
+ "package": "@fluentui/react-theme",
43
+ "commit": "c061e98be4b4a718c72a144a1f60bb5515824612",
44
+ "comment": "remove inline-style-expand-shorthand from tsconfigs"
45
+ },
46
+ {
47
+ "author": "miroslav.stastny@microsoft.com",
48
+ "package": "@fluentui/react-theme",
49
+ "commit": "636b848aa2323fd5d450e2206a71afad93aaa578",
50
+ "comment": "chore(react-theme) Add theme tokens bundle size fixture"
51
+ },
52
+ {
53
+ "author": "martinhochel@microsoft.com",
54
+ "package": "@fluentui/react-theme",
55
+ "commit": "8dfa712156b70414205b87b5b6d099367b0c297d",
56
+ "comment": "chore: use storybook runner for all vNext packages"
57
+ }
58
+ ],
59
+ "prerelease": [
60
+ {
61
+ "author": "miroslav.stastny@microsoft.com",
62
+ "package": "@fluentui/react-theme",
63
+ "commit": "fa3937813e6587d90ab5c43579321004fc37d6e9",
64
+ "comment": "feat(react-theme): Add colorNeutralForeground1Static token"
15
65
  },
16
66
  {
17
67
  "author": "andmarti@microsoft.com",
@@ -19,17 +69,47 @@
19
69
  "commit": "3ca42a594827a2ce3d5d18fcd4a399c92fda3bd7",
20
70
  "comment": "updating brand colors"
21
71
  },
72
+ {
73
+ "author": "Humberto.Morimoto@microsoft.com",
74
+ "package": "@fluentui/react-theme",
75
+ "commit": "b382d0421440e0854673a7967137d6c667544f91",
76
+ "comment": "feat: Export tokens as mapping to CSS variables"
77
+ },
22
78
  {
23
79
  "author": "miroslav.stastny@microsoft.com",
24
80
  "package": "@fluentui/react-theme",
25
81
  "commit": "d7479a7414e636731b678aebb6bf6295fd607fda",
26
82
  "comment": "Extend brand ramp from 13 to 16 tokens"
27
83
  },
84
+ {
85
+ "author": "martinhochel@microsoft.com",
86
+ "package": "@fluentui/react-theme",
87
+ "commit": "1dba2fca2365f1a748505896679ae160a6fec270",
88
+ "comment": "remove mergeThemes API"
89
+ },
90
+ {
91
+ "author": "Humberto.Morimoto@microsoft.com",
92
+ "package": "@fluentui/react-theme",
93
+ "commit": "1c2a4410205d3c86bc885fb74d6aede75d9bd99d",
94
+ "comment": "Theme: Adding function to programmatically generate tokens object based on a theme."
95
+ },
28
96
  {
29
97
  "author": "bsunderhus@microsoft.com",
30
98
  "package": "@fluentui/react-theme",
31
99
  "commit": "c9a03954ffd5d1a85284fb36ef4cd103ed8aa927",
32
100
  "comment": "Remove `themeToCSSVariables` function"
101
+ },
102
+ {
103
+ "author": "miroslav.stastny@microsoft.com",
104
+ "package": "@fluentui/react-theme",
105
+ "commit": "8985d65f0aac448c6766d27800922224555be0f4",
106
+ "comment": "feat(react-theme) Add border1 color token for shared colors"
107
+ },
108
+ {
109
+ "author": "lingfangao@hotmail.com",
110
+ "package": "@fluentui/react-theme",
111
+ "commit": "c00913d50e2dd15bbfbb0757cefe43b192ff1d7f",
112
+ "comment": "Bump Fluent UI packages to 9.0.0-rc"
33
113
  }
34
114
  ]
35
115
  }
package/CHANGELOG.md CHANGED
@@ -1,20 +1,43 @@
1
1
  # Change Log - @fluentui/react-theme
2
2
 
3
- This log was last generated on Wed, 08 Dec 2021 04:18:26 GMT and should not be manually modified.
3
+ This log was last generated on Mon, 28 Feb 2022 04:14:00 GMT and should not be manually modified.
4
4
 
5
5
  <!-- Start content -->
6
6
 
7
- ## [0.0.0-nightlya0ab3454ed20211208.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme_v0.0.0-nightlya0ab3454ed20211208.1)
7
+ ## [0.0.0-nightlya0aef7969220220228.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme_v0.0.0-nightlya0aef7969220220228.1)
8
8
 
9
- Wed, 08 Dec 2021 04:18:26 GMT
10
- [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme_v9.0.0-beta.4..@fluentui/react-theme_v0.0.0-nightlya0ab3454ed20211208.1)
9
+ Mon, 28 Feb 2022 04:14:00 GMT
10
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme_v9.0.0-rc.3..@fluentui/react-theme_v0.0.0-nightlya0aef7969220220228.1)
11
11
 
12
12
  ### Changes
13
13
 
14
- - Release nightly v9 ([commit](https://github.com/microsoft/fluentui/commit/bb962fc41a7769ab102b88c7cc76973034ede2d1) by email not defined)
14
+ - Release nightly v9 ([commit](https://github.com/microsoft/fluentui/commit/357dddd59345f57e77408824366096081c934571) by email not defined)
15
+
16
+ ## [9.0.0-rc.3](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme_v9.0.0-rc.3)
17
+
18
+ Fri, 18 Feb 2022 13:35:36 GMT
19
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme_v9.0.0-rc.1..@fluentui/react-theme_v9.0.0-rc.3)
20
+
21
+ ### Changes
22
+
23
+ - fix: Source maps contain original source code ([PR #21690](https://github.com/microsoft/fluentui/pull/21690) by lingfangao@hotmail.com)
24
+
25
+ ## [9.0.0-rc.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme_v9.0.0-rc.1)
26
+
27
+ Thu, 10 Feb 2022 08:51:02 GMT
28
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme_v9.0.0-beta.4..@fluentui/react-theme_v9.0.0-rc.1)
29
+
30
+ ### Changes
31
+
32
+ - feat(react-theme): Add colorNeutralForeground1Static token ([PR #21385](https://github.com/microsoft/fluentui/pull/21385) by miroslav.stastny@microsoft.com)
15
33
  - updating brand colors ([PR #20140](https://github.com/microsoft/fluentui/pull/20140) by andmarti@microsoft.com)
34
+ - feat: Export tokens as mapping to CSS variables ([PR #21026](https://github.com/microsoft/fluentui/pull/21026) by Humberto.Morimoto@microsoft.com)
16
35
  - Extend brand ramp from 13 to 16 tokens ([PR #20884](https://github.com/microsoft/fluentui/pull/20884) by miroslav.stastny@microsoft.com)
36
+ - remove mergeThemes API ([PR #21278](https://github.com/microsoft/fluentui/pull/21278) by martinhochel@microsoft.com)
37
+ - Theme: Adding function to programmatically generate tokens object based on a theme. ([PR #21548](https://github.com/microsoft/fluentui/pull/21548) by Humberto.Morimoto@microsoft.com)
17
38
  - Remove `themeToCSSVariables` function ([PR #20828](https://github.com/microsoft/fluentui/pull/20828) by bsunderhus@microsoft.com)
39
+ - feat(react-theme) Add border1 color token for shared colors ([PR #20963](https://github.com/microsoft/fluentui/pull/20963) by miroslav.stastny@microsoft.com)
40
+ - Bump Fluent UI packages to 9.0.0-rc ([PR #21623](https://github.com/microsoft/fluentui/pull/21623) by lingfangao@hotmail.com)
18
41
 
19
42
  ## [9.0.0-beta.4](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme_v9.0.0-beta.4)
20
43
 
@@ -11,105 +11,105 @@ export declare type Brands = 10 | 20 | 30 | 40 | 50 | 60 | 70 | 80 | 90 | 100 |
11
11
 
12
12
  export declare type BrandVariants = Record<Brands, string>;
13
13
 
14
- export declare type ColorPaletteAnchor = 'colorPaletteAnchorBackground1' | 'colorPaletteAnchorBackground2' | 'colorPaletteAnchorBackground3' | 'colorPaletteAnchorForeground1' | 'colorPaletteAnchorForeground2' | 'colorPaletteAnchorForeground3' | 'colorPaletteAnchorBorderActive' | 'colorPaletteAnchorBorder2';
14
+ export declare type ColorPaletteAnchor = 'colorPaletteAnchorBackground1' | 'colorPaletteAnchorBackground2' | 'colorPaletteAnchorBackground3' | 'colorPaletteAnchorForeground1' | 'colorPaletteAnchorForeground2' | 'colorPaletteAnchorForeground3' | 'colorPaletteAnchorBorderActive' | 'colorPaletteAnchorBorder1' | 'colorPaletteAnchorBorder2';
15
15
 
16
- export declare type ColorPaletteBeige = 'colorPaletteBeigeBackground1' | 'colorPaletteBeigeBackground2' | 'colorPaletteBeigeBackground3' | 'colorPaletteBeigeForeground1' | 'colorPaletteBeigeForeground2' | 'colorPaletteBeigeForeground3' | 'colorPaletteBeigeBorderActive' | 'colorPaletteBeigeBorder2';
16
+ export declare type ColorPaletteBeige = 'colorPaletteBeigeBackground1' | 'colorPaletteBeigeBackground2' | 'colorPaletteBeigeBackground3' | 'colorPaletteBeigeForeground1' | 'colorPaletteBeigeForeground2' | 'colorPaletteBeigeForeground3' | 'colorPaletteBeigeBorderActive' | 'colorPaletteBeigeBorder1' | 'colorPaletteBeigeBorder2';
17
17
 
18
- export declare type ColorPaletteBerry = 'colorPaletteBerryBackground1' | 'colorPaletteBerryBackground2' | 'colorPaletteBerryBackground3' | 'colorPaletteBerryForeground1' | 'colorPaletteBerryForeground2' | 'colorPaletteBerryForeground3' | 'colorPaletteBerryBorderActive' | 'colorPaletteBerryBorder2';
18
+ export declare type ColorPaletteBerry = 'colorPaletteBerryBackground1' | 'colorPaletteBerryBackground2' | 'colorPaletteBerryBackground3' | 'colorPaletteBerryForeground1' | 'colorPaletteBerryForeground2' | 'colorPaletteBerryForeground3' | 'colorPaletteBerryBorderActive' | 'colorPaletteBerryBorder1' | 'colorPaletteBerryBorder2';
19
19
 
20
- export declare type ColorPaletteBlue = 'colorPaletteBlueBackground1' | 'colorPaletteBlueBackground2' | 'colorPaletteBlueBackground3' | 'colorPaletteBlueForeground1' | 'colorPaletteBlueForeground2' | 'colorPaletteBlueForeground3' | 'colorPaletteBlueBorderActive' | 'colorPaletteBlueBorder2';
20
+ export declare type ColorPaletteBlue = 'colorPaletteBlueBackground1' | 'colorPaletteBlueBackground2' | 'colorPaletteBlueBackground3' | 'colorPaletteBlueForeground1' | 'colorPaletteBlueForeground2' | 'colorPaletteBlueForeground3' | 'colorPaletteBlueBorderActive' | 'colorPaletteBlueBorder1' | 'colorPaletteBlueBorder2';
21
21
 
22
- export declare type ColorPaletteBrass = 'colorPaletteBrassBackground1' | 'colorPaletteBrassBackground2' | 'colorPaletteBrassBackground3' | 'colorPaletteBrassForeground1' | 'colorPaletteBrassForeground2' | 'colorPaletteBrassForeground3' | 'colorPaletteBrassBorderActive' | 'colorPaletteBrassBorder2';
22
+ export declare type ColorPaletteBrass = 'colorPaletteBrassBackground1' | 'colorPaletteBrassBackground2' | 'colorPaletteBrassBackground3' | 'colorPaletteBrassForeground1' | 'colorPaletteBrassForeground2' | 'colorPaletteBrassForeground3' | 'colorPaletteBrassBorderActive' | 'colorPaletteBrassBorder1' | 'colorPaletteBrassBorder2';
23
23
 
24
- export declare type ColorPaletteBronze = 'colorPaletteBronzeBackground1' | 'colorPaletteBronzeBackground2' | 'colorPaletteBronzeBackground3' | 'colorPaletteBronzeForeground1' | 'colorPaletteBronzeForeground2' | 'colorPaletteBronzeForeground3' | 'colorPaletteBronzeBorderActive' | 'colorPaletteBronzeBorder2';
24
+ export declare type ColorPaletteBronze = 'colorPaletteBronzeBackground1' | 'colorPaletteBronzeBackground2' | 'colorPaletteBronzeBackground3' | 'colorPaletteBronzeForeground1' | 'colorPaletteBronzeForeground2' | 'colorPaletteBronzeForeground3' | 'colorPaletteBronzeBorderActive' | 'colorPaletteBronzeBorder1' | 'colorPaletteBronzeBorder2';
25
25
 
26
- export declare type ColorPaletteBrown = 'colorPaletteBrownBackground1' | 'colorPaletteBrownBackground2' | 'colorPaletteBrownBackground3' | 'colorPaletteBrownForeground1' | 'colorPaletteBrownForeground2' | 'colorPaletteBrownForeground3' | 'colorPaletteBrownBorderActive' | 'colorPaletteBrownBorder2';
26
+ export declare type ColorPaletteBrown = 'colorPaletteBrownBackground1' | 'colorPaletteBrownBackground2' | 'colorPaletteBrownBackground3' | 'colorPaletteBrownForeground1' | 'colorPaletteBrownForeground2' | 'colorPaletteBrownForeground3' | 'colorPaletteBrownBorderActive' | 'colorPaletteBrownBorder1' | 'colorPaletteBrownBorder2';
27
27
 
28
- export declare type ColorPaletteBurgundy = 'colorPaletteBurgundyBackground1' | 'colorPaletteBurgundyBackground2' | 'colorPaletteBurgundyBackground3' | 'colorPaletteBurgundyForeground1' | 'colorPaletteBurgundyForeground2' | 'colorPaletteBurgundyForeground3' | 'colorPaletteBurgundyBorderActive' | 'colorPaletteBurgundyBorder2';
28
+ export declare type ColorPaletteBurgundy = 'colorPaletteBurgundyBackground1' | 'colorPaletteBurgundyBackground2' | 'colorPaletteBurgundyBackground3' | 'colorPaletteBurgundyForeground1' | 'colorPaletteBurgundyForeground2' | 'colorPaletteBurgundyForeground3' | 'colorPaletteBurgundyBorderActive' | 'colorPaletteBurgundyBorder1' | 'colorPaletteBurgundyBorder2';
29
29
 
30
- export declare type ColorPaletteCharcoal = 'colorPaletteCharcoalBackground1' | 'colorPaletteCharcoalBackground2' | 'colorPaletteCharcoalBackground3' | 'colorPaletteCharcoalForeground1' | 'colorPaletteCharcoalForeground2' | 'colorPaletteCharcoalForeground3' | 'colorPaletteCharcoalBorderActive' | 'colorPaletteCharcoalBorder2';
30
+ export declare type ColorPaletteCharcoal = 'colorPaletteCharcoalBackground1' | 'colorPaletteCharcoalBackground2' | 'colorPaletteCharcoalBackground3' | 'colorPaletteCharcoalForeground1' | 'colorPaletteCharcoalForeground2' | 'colorPaletteCharcoalForeground3' | 'colorPaletteCharcoalBorderActive' | 'colorPaletteCharcoalBorder1' | 'colorPaletteCharcoalBorder2';
31
31
 
32
- export declare type ColorPaletteCornflower = 'colorPaletteCornflowerBackground1' | 'colorPaletteCornflowerBackground2' | 'colorPaletteCornflowerBackground3' | 'colorPaletteCornflowerForeground1' | 'colorPaletteCornflowerForeground2' | 'colorPaletteCornflowerForeground3' | 'colorPaletteCornflowerBorderActive' | 'colorPaletteCornflowerBorder2';
32
+ export declare type ColorPaletteCornflower = 'colorPaletteCornflowerBackground1' | 'colorPaletteCornflowerBackground2' | 'colorPaletteCornflowerBackground3' | 'colorPaletteCornflowerForeground1' | 'colorPaletteCornflowerForeground2' | 'colorPaletteCornflowerForeground3' | 'colorPaletteCornflowerBorderActive' | 'colorPaletteCornflowerBorder1' | 'colorPaletteCornflowerBorder2';
33
33
 
34
- export declare type ColorPaletteCranberry = 'colorPaletteCranberryBackground1' | 'colorPaletteCranberryBackground2' | 'colorPaletteCranberryBackground3' | 'colorPaletteCranberryForeground1' | 'colorPaletteCranberryForeground2' | 'colorPaletteCranberryForeground3' | 'colorPaletteCranberryBorderActive' | 'colorPaletteCranberryBorder2';
34
+ export declare type ColorPaletteCranberry = 'colorPaletteCranberryBackground1' | 'colorPaletteCranberryBackground2' | 'colorPaletteCranberryBackground3' | 'colorPaletteCranberryForeground1' | 'colorPaletteCranberryForeground2' | 'colorPaletteCranberryForeground3' | 'colorPaletteCranberryBorderActive' | 'colorPaletteCranberryBorder1' | 'colorPaletteCranberryBorder2';
35
35
 
36
- export declare type ColorPaletteCyan = 'colorPaletteCyanBackground1' | 'colorPaletteCyanBackground2' | 'colorPaletteCyanBackground3' | 'colorPaletteCyanForeground1' | 'colorPaletteCyanForeground2' | 'colorPaletteCyanForeground3' | 'colorPaletteCyanBorderActive' | 'colorPaletteCyanBorder2';
36
+ export declare type ColorPaletteCyan = 'colorPaletteCyanBackground1' | 'colorPaletteCyanBackground2' | 'colorPaletteCyanBackground3' | 'colorPaletteCyanForeground1' | 'colorPaletteCyanForeground2' | 'colorPaletteCyanForeground3' | 'colorPaletteCyanBorderActive' | 'colorPaletteCyanBorder1' | 'colorPaletteCyanBorder2';
37
37
 
38
- export declare type ColorPaletteDarkBlue = 'colorPaletteDarkBlueBackground1' | 'colorPaletteDarkBlueBackground2' | 'colorPaletteDarkBlueBackground3' | 'colorPaletteDarkBlueForeground1' | 'colorPaletteDarkBlueForeground2' | 'colorPaletteDarkBlueForeground3' | 'colorPaletteDarkBlueBorderActive' | 'colorPaletteDarkBlueBorder2';
38
+ export declare type ColorPaletteDarkBlue = 'colorPaletteDarkBlueBackground1' | 'colorPaletteDarkBlueBackground2' | 'colorPaletteDarkBlueBackground3' | 'colorPaletteDarkBlueForeground1' | 'colorPaletteDarkBlueForeground2' | 'colorPaletteDarkBlueForeground3' | 'colorPaletteDarkBlueBorderActive' | 'colorPaletteDarkBlueBorder1' | 'colorPaletteDarkBlueBorder2';
39
39
 
40
- export declare type ColorPaletteDarkBrown = 'colorPaletteDarkBrownBackground1' | 'colorPaletteDarkBrownBackground2' | 'colorPaletteDarkBrownBackground3' | 'colorPaletteDarkBrownForeground1' | 'colorPaletteDarkBrownForeground2' | 'colorPaletteDarkBrownForeground3' | 'colorPaletteDarkBrownBorderActive' | 'colorPaletteDarkBrownBorder2';
40
+ export declare type ColorPaletteDarkBrown = 'colorPaletteDarkBrownBackground1' | 'colorPaletteDarkBrownBackground2' | 'colorPaletteDarkBrownBackground3' | 'colorPaletteDarkBrownForeground1' | 'colorPaletteDarkBrownForeground2' | 'colorPaletteDarkBrownForeground3' | 'colorPaletteDarkBrownBorderActive' | 'colorPaletteDarkBrownBorder1' | 'colorPaletteDarkBrownBorder2';
41
41
 
42
- export declare type ColorPaletteDarkGreen = 'colorPaletteDarkGreenBackground1' | 'colorPaletteDarkGreenBackground2' | 'colorPaletteDarkGreenBackground3' | 'colorPaletteDarkGreenForeground1' | 'colorPaletteDarkGreenForeground2' | 'colorPaletteDarkGreenForeground3' | 'colorPaletteDarkGreenBorderActive' | 'colorPaletteDarkGreenBorder2';
42
+ export declare type ColorPaletteDarkGreen = 'colorPaletteDarkGreenBackground1' | 'colorPaletteDarkGreenBackground2' | 'colorPaletteDarkGreenBackground3' | 'colorPaletteDarkGreenForeground1' | 'colorPaletteDarkGreenForeground2' | 'colorPaletteDarkGreenForeground3' | 'colorPaletteDarkGreenBorderActive' | 'colorPaletteDarkGreenBorder1' | 'colorPaletteDarkGreenBorder2';
43
43
 
44
- export declare type ColorPaletteDarkOrange = 'colorPaletteDarkOrangeBackground1' | 'colorPaletteDarkOrangeBackground2' | 'colorPaletteDarkOrangeBackground3' | 'colorPaletteDarkOrangeForeground1' | 'colorPaletteDarkOrangeForeground2' | 'colorPaletteDarkOrangeForeground3' | 'colorPaletteDarkOrangeBorderActive' | 'colorPaletteDarkOrangeBorder2';
44
+ export declare type ColorPaletteDarkOrange = 'colorPaletteDarkOrangeBackground1' | 'colorPaletteDarkOrangeBackground2' | 'colorPaletteDarkOrangeBackground3' | 'colorPaletteDarkOrangeForeground1' | 'colorPaletteDarkOrangeForeground2' | 'colorPaletteDarkOrangeForeground3' | 'colorPaletteDarkOrangeBorderActive' | 'colorPaletteDarkOrangeBorder1' | 'colorPaletteDarkOrangeBorder2';
45
45
 
46
- export declare type ColorPaletteDarkPurple = 'colorPaletteDarkPurpleBackground1' | 'colorPaletteDarkPurpleBackground2' | 'colorPaletteDarkPurpleBackground3' | 'colorPaletteDarkPurpleForeground1' | 'colorPaletteDarkPurpleForeground2' | 'colorPaletteDarkPurpleForeground3' | 'colorPaletteDarkPurpleBorderActive' | 'colorPaletteDarkPurpleBorder2';
46
+ export declare type ColorPaletteDarkPurple = 'colorPaletteDarkPurpleBackground1' | 'colorPaletteDarkPurpleBackground2' | 'colorPaletteDarkPurpleBackground3' | 'colorPaletteDarkPurpleForeground1' | 'colorPaletteDarkPurpleForeground2' | 'colorPaletteDarkPurpleForeground3' | 'colorPaletteDarkPurpleBorderActive' | 'colorPaletteDarkPurpleBorder1' | 'colorPaletteDarkPurpleBorder2';
47
47
 
48
- export declare type ColorPaletteDarkRed = 'colorPaletteDarkRedBackground1' | 'colorPaletteDarkRedBackground2' | 'colorPaletteDarkRedBackground3' | 'colorPaletteDarkRedForeground1' | 'colorPaletteDarkRedForeground2' | 'colorPaletteDarkRedForeground3' | 'colorPaletteDarkRedBorderActive' | 'colorPaletteDarkRedBorder2';
48
+ export declare type ColorPaletteDarkRed = 'colorPaletteDarkRedBackground1' | 'colorPaletteDarkRedBackground2' | 'colorPaletteDarkRedBackground3' | 'colorPaletteDarkRedForeground1' | 'colorPaletteDarkRedForeground2' | 'colorPaletteDarkRedForeground3' | 'colorPaletteDarkRedBorderActive' | 'colorPaletteDarkRedBorder1' | 'colorPaletteDarkRedBorder2';
49
49
 
50
- export declare type ColorPaletteDarkTeal = 'colorPaletteDarkTealBackground1' | 'colorPaletteDarkTealBackground2' | 'colorPaletteDarkTealBackground3' | 'colorPaletteDarkTealForeground1' | 'colorPaletteDarkTealForeground2' | 'colorPaletteDarkTealForeground3' | 'colorPaletteDarkTealBorderActive' | 'colorPaletteDarkTealBorder2';
50
+ export declare type ColorPaletteDarkTeal = 'colorPaletteDarkTealBackground1' | 'colorPaletteDarkTealBackground2' | 'colorPaletteDarkTealBackground3' | 'colorPaletteDarkTealForeground1' | 'colorPaletteDarkTealForeground2' | 'colorPaletteDarkTealForeground3' | 'colorPaletteDarkTealBorderActive' | 'colorPaletteDarkTealBorder1' | 'colorPaletteDarkTealBorder2';
51
51
 
52
- export declare type ColorPaletteForest = 'colorPaletteForestBackground1' | 'colorPaletteForestBackground2' | 'colorPaletteForestBackground3' | 'colorPaletteForestForeground1' | 'colorPaletteForestForeground2' | 'colorPaletteForestForeground3' | 'colorPaletteForestBorderActive' | 'colorPaletteForestBorder2';
52
+ export declare type ColorPaletteForest = 'colorPaletteForestBackground1' | 'colorPaletteForestBackground2' | 'colorPaletteForestBackground3' | 'colorPaletteForestForeground1' | 'colorPaletteForestForeground2' | 'colorPaletteForestForeground3' | 'colorPaletteForestBorderActive' | 'colorPaletteForestBorder1' | 'colorPaletteForestBorder2';
53
53
 
54
- export declare type ColorPaletteGold = 'colorPaletteGoldBackground1' | 'colorPaletteGoldBackground2' | 'colorPaletteGoldBackground3' | 'colorPaletteGoldForeground1' | 'colorPaletteGoldForeground2' | 'colorPaletteGoldForeground3' | 'colorPaletteGoldBorderActive' | 'colorPaletteGoldBorder2';
54
+ export declare type ColorPaletteGold = 'colorPaletteGoldBackground1' | 'colorPaletteGoldBackground2' | 'colorPaletteGoldBackground3' | 'colorPaletteGoldForeground1' | 'colorPaletteGoldForeground2' | 'colorPaletteGoldForeground3' | 'colorPaletteGoldBorderActive' | 'colorPaletteGoldBorder1' | 'colorPaletteGoldBorder2';
55
55
 
56
- export declare type ColorPaletteGrape = 'colorPaletteGrapeBackground1' | 'colorPaletteGrapeBackground2' | 'colorPaletteGrapeBackground3' | 'colorPaletteGrapeForeground1' | 'colorPaletteGrapeForeground2' | 'colorPaletteGrapeForeground3' | 'colorPaletteGrapeBorderActive' | 'colorPaletteGrapeBorder2';
56
+ export declare type ColorPaletteGrape = 'colorPaletteGrapeBackground1' | 'colorPaletteGrapeBackground2' | 'colorPaletteGrapeBackground3' | 'colorPaletteGrapeForeground1' | 'colorPaletteGrapeForeground2' | 'colorPaletteGrapeForeground3' | 'colorPaletteGrapeBorderActive' | 'colorPaletteGrapeBorder1' | 'colorPaletteGrapeBorder2';
57
57
 
58
- export declare type ColorPaletteGreen = 'colorPaletteGreenBackground1' | 'colorPaletteGreenBackground2' | 'colorPaletteGreenBackground3' | 'colorPaletteGreenForeground1' | 'colorPaletteGreenForeground2' | 'colorPaletteGreenForeground3' | 'colorPaletteGreenBorderActive' | 'colorPaletteGreenBorder2';
58
+ export declare type ColorPaletteGreen = 'colorPaletteGreenBackground1' | 'colorPaletteGreenBackground2' | 'colorPaletteGreenBackground3' | 'colorPaletteGreenForeground1' | 'colorPaletteGreenForeground2' | 'colorPaletteGreenForeground3' | 'colorPaletteGreenBorderActive' | 'colorPaletteGreenBorder1' | 'colorPaletteGreenBorder2';
59
59
 
60
- export declare type ColorPaletteHotPink = 'colorPaletteHotPinkBackground1' | 'colorPaletteHotPinkBackground2' | 'colorPaletteHotPinkBackground3' | 'colorPaletteHotPinkForeground1' | 'colorPaletteHotPinkForeground2' | 'colorPaletteHotPinkForeground3' | 'colorPaletteHotPinkBorderActive' | 'colorPaletteHotPinkBorder2';
60
+ export declare type ColorPaletteHotPink = 'colorPaletteHotPinkBackground1' | 'colorPaletteHotPinkBackground2' | 'colorPaletteHotPinkBackground3' | 'colorPaletteHotPinkForeground1' | 'colorPaletteHotPinkForeground2' | 'colorPaletteHotPinkForeground3' | 'colorPaletteHotPinkBorderActive' | 'colorPaletteHotPinkBorder1' | 'colorPaletteHotPinkBorder2';
61
61
 
62
- export declare type ColorPaletteLavender = 'colorPaletteLavenderBackground1' | 'colorPaletteLavenderBackground2' | 'colorPaletteLavenderBackground3' | 'colorPaletteLavenderForeground1' | 'colorPaletteLavenderForeground2' | 'colorPaletteLavenderForeground3' | 'colorPaletteLavenderBorderActive' | 'colorPaletteLavenderBorder2';
62
+ export declare type ColorPaletteLavender = 'colorPaletteLavenderBackground1' | 'colorPaletteLavenderBackground2' | 'colorPaletteLavenderBackground3' | 'colorPaletteLavenderForeground1' | 'colorPaletteLavenderForeground2' | 'colorPaletteLavenderForeground3' | 'colorPaletteLavenderBorderActive' | 'colorPaletteLavenderBorder1' | 'colorPaletteLavenderBorder2';
63
63
 
64
- export declare type ColorPaletteLightBlue = 'colorPaletteLightBlueBackground1' | 'colorPaletteLightBlueBackground2' | 'colorPaletteLightBlueBackground3' | 'colorPaletteLightBlueForeground1' | 'colorPaletteLightBlueForeground2' | 'colorPaletteLightBlueForeground3' | 'colorPaletteLightBlueBorderActive' | 'colorPaletteLightBlueBorder2';
64
+ export declare type ColorPaletteLightBlue = 'colorPaletteLightBlueBackground1' | 'colorPaletteLightBlueBackground2' | 'colorPaletteLightBlueBackground3' | 'colorPaletteLightBlueForeground1' | 'colorPaletteLightBlueForeground2' | 'colorPaletteLightBlueForeground3' | 'colorPaletteLightBlueBorderActive' | 'colorPaletteLightBlueBorder1' | 'colorPaletteLightBlueBorder2';
65
65
 
66
- export declare type ColorPaletteLightGreen = 'colorPaletteLightGreenBackground1' | 'colorPaletteLightGreenBackground2' | 'colorPaletteLightGreenBackground3' | 'colorPaletteLightGreenForeground1' | 'colorPaletteLightGreenForeground2' | 'colorPaletteLightGreenForeground3' | 'colorPaletteLightGreenBorderActive' | 'colorPaletteLightGreenBorder2';
66
+ export declare type ColorPaletteLightGreen = 'colorPaletteLightGreenBackground1' | 'colorPaletteLightGreenBackground2' | 'colorPaletteLightGreenBackground3' | 'colorPaletteLightGreenForeground1' | 'colorPaletteLightGreenForeground2' | 'colorPaletteLightGreenForeground3' | 'colorPaletteLightGreenBorderActive' | 'colorPaletteLightGreenBorder1' | 'colorPaletteLightGreenBorder2';
67
67
 
68
- export declare type ColorPaletteLightTeal = 'colorPaletteLightTealBackground1' | 'colorPaletteLightTealBackground2' | 'colorPaletteLightTealBackground3' | 'colorPaletteLightTealForeground1' | 'colorPaletteLightTealForeground2' | 'colorPaletteLightTealForeground3' | 'colorPaletteLightTealBorderActive' | 'colorPaletteLightTealBorder2';
68
+ export declare type ColorPaletteLightTeal = 'colorPaletteLightTealBackground1' | 'colorPaletteLightTealBackground2' | 'colorPaletteLightTealBackground3' | 'colorPaletteLightTealForeground1' | 'colorPaletteLightTealForeground2' | 'colorPaletteLightTealForeground3' | 'colorPaletteLightTealBorderActive' | 'colorPaletteLightTealBorder1' | 'colorPaletteLightTealBorder2';
69
69
 
70
- export declare type ColorPaletteLilac = 'colorPaletteLilacBackground1' | 'colorPaletteLilacBackground2' | 'colorPaletteLilacBackground3' | 'colorPaletteLilacForeground1' | 'colorPaletteLilacForeground2' | 'colorPaletteLilacForeground3' | 'colorPaletteLilacBorderActive' | 'colorPaletteLilacBorder2';
70
+ export declare type ColorPaletteLilac = 'colorPaletteLilacBackground1' | 'colorPaletteLilacBackground2' | 'colorPaletteLilacBackground3' | 'colorPaletteLilacForeground1' | 'colorPaletteLilacForeground2' | 'colorPaletteLilacForeground3' | 'colorPaletteLilacBorderActive' | 'colorPaletteLilacBorder1' | 'colorPaletteLilacBorder2';
71
71
 
72
- export declare type ColorPaletteLime = 'colorPaletteLimeBackground1' | 'colorPaletteLimeBackground2' | 'colorPaletteLimeBackground3' | 'colorPaletteLimeForeground1' | 'colorPaletteLimeForeground2' | 'colorPaletteLimeForeground3' | 'colorPaletteLimeBorderActive' | 'colorPaletteLimeBorder2';
72
+ export declare type ColorPaletteLime = 'colorPaletteLimeBackground1' | 'colorPaletteLimeBackground2' | 'colorPaletteLimeBackground3' | 'colorPaletteLimeForeground1' | 'colorPaletteLimeForeground2' | 'colorPaletteLimeForeground3' | 'colorPaletteLimeBorderActive' | 'colorPaletteLimeBorder1' | 'colorPaletteLimeBorder2';
73
73
 
74
- export declare type ColorPaletteMagenta = 'colorPaletteMagentaBackground1' | 'colorPaletteMagentaBackground2' | 'colorPaletteMagentaBackground3' | 'colorPaletteMagentaForeground1' | 'colorPaletteMagentaForeground2' | 'colorPaletteMagentaForeground3' | 'colorPaletteMagentaBorderActive' | 'colorPaletteMagentaBorder2';
74
+ export declare type ColorPaletteMagenta = 'colorPaletteMagentaBackground1' | 'colorPaletteMagentaBackground2' | 'colorPaletteMagentaBackground3' | 'colorPaletteMagentaForeground1' | 'colorPaletteMagentaForeground2' | 'colorPaletteMagentaForeground3' | 'colorPaletteMagentaBorderActive' | 'colorPaletteMagentaBorder1' | 'colorPaletteMagentaBorder2';
75
75
 
76
- export declare type ColorPaletteMarigold = 'colorPaletteMarigoldBackground1' | 'colorPaletteMarigoldBackground2' | 'colorPaletteMarigoldBackground3' | 'colorPaletteMarigoldForeground1' | 'colorPaletteMarigoldForeground2' | 'colorPaletteMarigoldForeground3' | 'colorPaletteMarigoldBorderActive' | 'colorPaletteMarigoldBorder2';
76
+ export declare type ColorPaletteMarigold = 'colorPaletteMarigoldBackground1' | 'colorPaletteMarigoldBackground2' | 'colorPaletteMarigoldBackground3' | 'colorPaletteMarigoldForeground1' | 'colorPaletteMarigoldForeground2' | 'colorPaletteMarigoldForeground3' | 'colorPaletteMarigoldBorderActive' | 'colorPaletteMarigoldBorder1' | 'colorPaletteMarigoldBorder2';
77
77
 
78
- export declare type ColorPaletteMink = 'colorPaletteMinkBackground1' | 'colorPaletteMinkBackground2' | 'colorPaletteMinkBackground3' | 'colorPaletteMinkForeground1' | 'colorPaletteMinkForeground2' | 'colorPaletteMinkForeground3' | 'colorPaletteMinkBorderActive' | 'colorPaletteMinkBorder2';
78
+ export declare type ColorPaletteMink = 'colorPaletteMinkBackground1' | 'colorPaletteMinkBackground2' | 'colorPaletteMinkBackground3' | 'colorPaletteMinkForeground1' | 'colorPaletteMinkForeground2' | 'colorPaletteMinkForeground3' | 'colorPaletteMinkBorderActive' | 'colorPaletteMinkBorder1' | 'colorPaletteMinkBorder2';
79
79
 
80
- export declare type ColorPaletteNavy = 'colorPaletteNavyBackground1' | 'colorPaletteNavyBackground2' | 'colorPaletteNavyBackground3' | 'colorPaletteNavyForeground1' | 'colorPaletteNavyForeground2' | 'colorPaletteNavyForeground3' | 'colorPaletteNavyBorderActive' | 'colorPaletteNavyBorder2';
80
+ export declare type ColorPaletteNavy = 'colorPaletteNavyBackground1' | 'colorPaletteNavyBackground2' | 'colorPaletteNavyBackground3' | 'colorPaletteNavyForeground1' | 'colorPaletteNavyForeground2' | 'colorPaletteNavyForeground3' | 'colorPaletteNavyBorderActive' | 'colorPaletteNavyBorder1' | 'colorPaletteNavyBorder2';
81
81
 
82
- export declare type ColorPaletteOrange = 'colorPaletteOrangeBackground1' | 'colorPaletteOrangeBackground2' | 'colorPaletteOrangeBackground3' | 'colorPaletteOrangeForeground1' | 'colorPaletteOrangeForeground2' | 'colorPaletteOrangeForeground3' | 'colorPaletteOrangeBorderActive' | 'colorPaletteOrangeBorder2';
82
+ export declare type ColorPaletteOrange = 'colorPaletteOrangeBackground1' | 'colorPaletteOrangeBackground2' | 'colorPaletteOrangeBackground3' | 'colorPaletteOrangeForeground1' | 'colorPaletteOrangeForeground2' | 'colorPaletteOrangeForeground3' | 'colorPaletteOrangeBorderActive' | 'colorPaletteOrangeBorder1' | 'colorPaletteOrangeBorder2';
83
83
 
84
- export declare type ColorPaletteOrchid = 'colorPaletteOrchidBackground1' | 'colorPaletteOrchidBackground2' | 'colorPaletteOrchidBackground3' | 'colorPaletteOrchidForeground1' | 'colorPaletteOrchidForeground2' | 'colorPaletteOrchidForeground3' | 'colorPaletteOrchidBorderActive' | 'colorPaletteOrchidBorder2';
84
+ export declare type ColorPaletteOrchid = 'colorPaletteOrchidBackground1' | 'colorPaletteOrchidBackground2' | 'colorPaletteOrchidBackground3' | 'colorPaletteOrchidForeground1' | 'colorPaletteOrchidForeground2' | 'colorPaletteOrchidForeground3' | 'colorPaletteOrchidBorderActive' | 'colorPaletteOrchidBorder1' | 'colorPaletteOrchidBorder2';
85
85
 
86
- export declare type ColorPalettePeach = 'colorPalettePeachBackground1' | 'colorPalettePeachBackground2' | 'colorPalettePeachBackground3' | 'colorPalettePeachForeground1' | 'colorPalettePeachForeground2' | 'colorPalettePeachForeground3' | 'colorPalettePeachBorderActive' | 'colorPalettePeachBorder2';
86
+ export declare type ColorPalettePeach = 'colorPalettePeachBackground1' | 'colorPalettePeachBackground2' | 'colorPalettePeachBackground3' | 'colorPalettePeachForeground1' | 'colorPalettePeachForeground2' | 'colorPalettePeachForeground3' | 'colorPalettePeachBorderActive' | 'colorPalettePeachBorder1' | 'colorPalettePeachBorder2';
87
87
 
88
- export declare type ColorPalettePink = 'colorPalettePinkBackground1' | 'colorPalettePinkBackground2' | 'colorPalettePinkBackground3' | 'colorPalettePinkForeground1' | 'colorPalettePinkForeground2' | 'colorPalettePinkForeground3' | 'colorPalettePinkBorderActive' | 'colorPalettePinkBorder2';
88
+ export declare type ColorPalettePink = 'colorPalettePinkBackground1' | 'colorPalettePinkBackground2' | 'colorPalettePinkBackground3' | 'colorPalettePinkForeground1' | 'colorPalettePinkForeground2' | 'colorPalettePinkForeground3' | 'colorPalettePinkBorderActive' | 'colorPalettePinkBorder1' | 'colorPalettePinkBorder2';
89
89
 
90
- export declare type ColorPalettePlatinum = 'colorPalettePlatinumBackground1' | 'colorPalettePlatinumBackground2' | 'colorPalettePlatinumBackground3' | 'colorPalettePlatinumForeground1' | 'colorPalettePlatinumForeground2' | 'colorPalettePlatinumForeground3' | 'colorPalettePlatinumBorderActive' | 'colorPalettePlatinumBorder2';
90
+ export declare type ColorPalettePlatinum = 'colorPalettePlatinumBackground1' | 'colorPalettePlatinumBackground2' | 'colorPalettePlatinumBackground3' | 'colorPalettePlatinumForeground1' | 'colorPalettePlatinumForeground2' | 'colorPalettePlatinumForeground3' | 'colorPalettePlatinumBorderActive' | 'colorPalettePlatinumBorder1' | 'colorPalettePlatinumBorder2';
91
91
 
92
- export declare type ColorPalettePlum = 'colorPalettePlumBackground1' | 'colorPalettePlumBackground2' | 'colorPalettePlumBackground3' | 'colorPalettePlumForeground1' | 'colorPalettePlumForeground2' | 'colorPalettePlumForeground3' | 'colorPalettePlumBorderActive' | 'colorPalettePlumBorder2';
92
+ export declare type ColorPalettePlum = 'colorPalettePlumBackground1' | 'colorPalettePlumBackground2' | 'colorPalettePlumBackground3' | 'colorPalettePlumForeground1' | 'colorPalettePlumForeground2' | 'colorPalettePlumForeground3' | 'colorPalettePlumBorderActive' | 'colorPalettePlumBorder1' | 'colorPalettePlumBorder2';
93
93
 
94
- export declare type ColorPalettePumpkin = 'colorPalettePumpkinBackground1' | 'colorPalettePumpkinBackground2' | 'colorPalettePumpkinBackground3' | 'colorPalettePumpkinForeground1' | 'colorPalettePumpkinForeground2' | 'colorPalettePumpkinForeground3' | 'colorPalettePumpkinBorderActive' | 'colorPalettePumpkinBorder2';
94
+ export declare type ColorPalettePumpkin = 'colorPalettePumpkinBackground1' | 'colorPalettePumpkinBackground2' | 'colorPalettePumpkinBackground3' | 'colorPalettePumpkinForeground1' | 'colorPalettePumpkinForeground2' | 'colorPalettePumpkinForeground3' | 'colorPalettePumpkinBorderActive' | 'colorPalettePumpkinBorder1' | 'colorPalettePumpkinBorder2';
95
95
 
96
- export declare type ColorPalettePurple = 'colorPalettePurpleBackground1' | 'colorPalettePurpleBackground2' | 'colorPalettePurpleBackground3' | 'colorPalettePurpleForeground1' | 'colorPalettePurpleForeground2' | 'colorPalettePurpleForeground3' | 'colorPalettePurpleBorderActive' | 'colorPalettePurpleBorder2';
96
+ export declare type ColorPalettePurple = 'colorPalettePurpleBackground1' | 'colorPalettePurpleBackground2' | 'colorPalettePurpleBackground3' | 'colorPalettePurpleForeground1' | 'colorPalettePurpleForeground2' | 'colorPalettePurpleForeground3' | 'colorPalettePurpleBorderActive' | 'colorPalettePurpleBorder1' | 'colorPalettePurpleBorder2';
97
97
 
98
- export declare type ColorPaletteRed = 'colorPaletteRedBackground1' | 'colorPaletteRedBackground2' | 'colorPaletteRedBackground3' | 'colorPaletteRedForeground1' | 'colorPaletteRedForeground2' | 'colorPaletteRedForeground3' | 'colorPaletteRedBorderActive' | 'colorPaletteRedBorder2';
98
+ export declare type ColorPaletteRed = 'colorPaletteRedBackground1' | 'colorPaletteRedBackground2' | 'colorPaletteRedBackground3' | 'colorPaletteRedForeground1' | 'colorPaletteRedForeground2' | 'colorPaletteRedForeground3' | 'colorPaletteRedBorderActive' | 'colorPaletteRedBorder1' | 'colorPaletteRedBorder2';
99
99
 
100
- export declare type ColorPaletteRoyalBlue = 'colorPaletteRoyalBlueBackground1' | 'colorPaletteRoyalBlueBackground2' | 'colorPaletteRoyalBlueBackground3' | 'colorPaletteRoyalBlueForeground1' | 'colorPaletteRoyalBlueForeground2' | 'colorPaletteRoyalBlueForeground3' | 'colorPaletteRoyalBlueBorderActive' | 'colorPaletteRoyalBlueBorder2';
100
+ export declare type ColorPaletteRoyalBlue = 'colorPaletteRoyalBlueBackground1' | 'colorPaletteRoyalBlueBackground2' | 'colorPaletteRoyalBlueBackground3' | 'colorPaletteRoyalBlueForeground1' | 'colorPaletteRoyalBlueForeground2' | 'colorPaletteRoyalBlueForeground3' | 'colorPaletteRoyalBlueBorderActive' | 'colorPaletteRoyalBlueBorder1' | 'colorPaletteRoyalBlueBorder2';
101
101
 
102
- export declare type ColorPaletteSeafoam = 'colorPaletteSeafoamBackground1' | 'colorPaletteSeafoamBackground2' | 'colorPaletteSeafoamBackground3' | 'colorPaletteSeafoamForeground1' | 'colorPaletteSeafoamForeground2' | 'colorPaletteSeafoamForeground3' | 'colorPaletteSeafoamBorderActive' | 'colorPaletteSeafoamBorder2';
102
+ export declare type ColorPaletteSeafoam = 'colorPaletteSeafoamBackground1' | 'colorPaletteSeafoamBackground2' | 'colorPaletteSeafoamBackground3' | 'colorPaletteSeafoamForeground1' | 'colorPaletteSeafoamForeground2' | 'colorPaletteSeafoamForeground3' | 'colorPaletteSeafoamBorderActive' | 'colorPaletteSeafoamBorder1' | 'colorPaletteSeafoamBorder2';
103
103
 
104
- export declare type ColorPaletteSilver = 'colorPaletteSilverBackground1' | 'colorPaletteSilverBackground2' | 'colorPaletteSilverBackground3' | 'colorPaletteSilverForeground1' | 'colorPaletteSilverForeground2' | 'colorPaletteSilverForeground3' | 'colorPaletteSilverBorderActive' | 'colorPaletteSilverBorder2';
104
+ export declare type ColorPaletteSilver = 'colorPaletteSilverBackground1' | 'colorPaletteSilverBackground2' | 'colorPaletteSilverBackground3' | 'colorPaletteSilverForeground1' | 'colorPaletteSilverForeground2' | 'colorPaletteSilverForeground3' | 'colorPaletteSilverBorderActive' | 'colorPaletteSilverBorder1' | 'colorPaletteSilverBorder2';
105
105
 
106
- export declare type ColorPaletteSteel = 'colorPaletteSteelBackground1' | 'colorPaletteSteelBackground2' | 'colorPaletteSteelBackground3' | 'colorPaletteSteelForeground1' | 'colorPaletteSteelForeground2' | 'colorPaletteSteelForeground3' | 'colorPaletteSteelBorderActive' | 'colorPaletteSteelBorder2';
106
+ export declare type ColorPaletteSteel = 'colorPaletteSteelBackground1' | 'colorPaletteSteelBackground2' | 'colorPaletteSteelBackground3' | 'colorPaletteSteelForeground1' | 'colorPaletteSteelForeground2' | 'colorPaletteSteelForeground3' | 'colorPaletteSteelBorderActive' | 'colorPaletteSteelBorder1' | 'colorPaletteSteelBorder2';
107
107
 
108
- export declare type ColorPaletteTeal = 'colorPaletteTealBackground1' | 'colorPaletteTealBackground2' | 'colorPaletteTealBackground3' | 'colorPaletteTealForeground1' | 'colorPaletteTealForeground2' | 'colorPaletteTealForeground3' | 'colorPaletteTealBorderActive' | 'colorPaletteTealBorder2';
108
+ export declare type ColorPaletteTeal = 'colorPaletteTealBackground1' | 'colorPaletteTealBackground2' | 'colorPaletteTealBackground3' | 'colorPaletteTealForeground1' | 'colorPaletteTealForeground2' | 'colorPaletteTealForeground3' | 'colorPaletteTealBorderActive' | 'colorPaletteTealBorder1' | 'colorPaletteTealBorder2';
109
109
 
110
110
  export declare type ColorPaletteTokens = Record<ColorPaletteDarkRed | ColorPaletteBurgundy | ColorPaletteCranberry | ColorPaletteRed | ColorPaletteDarkOrange | ColorPaletteBronze | ColorPalettePumpkin | ColorPaletteOrange | ColorPalettePeach | ColorPaletteMarigold | ColorPaletteYellow | ColorPaletteGold | ColorPaletteBrass | ColorPaletteBrown | ColorPaletteDarkBrown | ColorPaletteLime | ColorPaletteForest | ColorPaletteSeafoam | ColorPaletteLightGreen | ColorPaletteGreen | ColorPaletteDarkGreen | ColorPaletteLightTeal | ColorPaletteTeal | ColorPaletteDarkTeal | ColorPaletteCyan | ColorPaletteSteel | ColorPaletteLightBlue | ColorPaletteBlue | ColorPaletteRoyalBlue | ColorPaletteDarkBlue | ColorPaletteCornflower | ColorPaletteNavy | ColorPaletteLavender | ColorPalettePurple | ColorPaletteDarkPurple | ColorPaletteOrchid | ColorPaletteGrape | ColorPaletteBerry | ColorPaletteLilac | ColorPalettePink | ColorPaletteHotPink | ColorPaletteMagenta | ColorPalettePlum | ColorPaletteBeige | ColorPaletteMink | ColorPaletteSilver | ColorPalettePlatinum | ColorPaletteAnchor | ColorPaletteCharcoal, string>;
111
111
 
112
- export declare type ColorPaletteYellow = 'colorPaletteYellowBackground1' | 'colorPaletteYellowBackground2' | 'colorPaletteYellowBackground3' | 'colorPaletteYellowForeground1' | 'colorPaletteYellowForeground2' | 'colorPaletteYellowForeground3' | 'colorPaletteYellowBorderActive' | 'colorPaletteYellowBorder2';
112
+ export declare type ColorPaletteYellow = 'colorPaletteYellowBackground1' | 'colorPaletteYellowBackground2' | 'colorPaletteYellowBackground3' | 'colorPaletteYellowForeground1' | 'colorPaletteYellowForeground2' | 'colorPaletteYellowForeground3' | 'colorPaletteYellowBorderActive' | 'colorPaletteYellowBorder1' | 'colorPaletteYellowBorder2';
113
113
 
114
114
  /**
115
115
  * Design tokens for alias colors
@@ -145,6 +145,7 @@ export declare type ColorTokens = {
145
145
  colorCompoundBrandForeground1Pressed: string;
146
146
  colorBrandForeground1: string;
147
147
  colorBrandForeground2: string;
148
+ colorNeutralForeground1Static: string;
148
149
  colorNeutralForegroundInverted: string;
149
150
  colorNeutralForegroundInvertedHover: string;
150
151
  colorNeutralForegroundInvertedPressed: string;
@@ -298,8 +299,6 @@ export declare type LineHeightTokens = {
298
299
  lineHeightHero1000: string;
299
300
  };
300
301
 
301
- export declare function mergeThemes(a: Theme | undefined, b: PartialTheme | Theme | undefined): Theme;
302
-
303
302
  export declare type PartialTheme = Partial<Theme>;
304
303
 
305
304
  export declare type ShadowBrandTokens = {
@@ -338,6 +337,18 @@ export declare const teamsLightTheme: Theme;
338
337
 
339
338
  export declare type Theme = FontSizeTokens & LineHeightTokens & BorderRadiusTokens & StrokeWidthTokens & ShadowTokens & ShadowBrandTokens & FontFamilyTokens & FontWeightTokens & ColorPaletteTokens & ColorTokens;
340
339
 
340
+ /**
341
+ * Programmatically generates a tokens to css variables mapping object from the keys in a theme.
342
+ * This helps with ease of use as a user of a custom theme does not have to manually construct this object, but it could
343
+ * affect tree-shaking since bundlers do not know the shape of the output.
344
+ *
345
+ * @param theme - Theme from which to get the keys to generate the tokens to css variables mapping object
346
+ * @returns Tokens to css variables mapping object corresponding to the passed theme
347
+ */
348
+ export declare function themeToTokensObject<TTheme extends Theme>(theme: TTheme): Record<keyof TTheme, string>;
349
+
350
+ export declare const tokens: Record<keyof Theme, string>;
351
+
341
352
  export declare const webDarkTheme: Theme;
342
353
 
343
354
  export declare const webHighContrastTheme: Theme;
package/lib/alias/dark.js CHANGED
@@ -30,6 +30,7 @@ export const generateColorTokens = brand => ({
30
30
  colorCompoundBrandForeground1Pressed: brand[80],
31
31
  colorBrandForeground1: brand[100],
32
32
  colorBrandForeground2: brand[110],
33
+ colorNeutralForeground1Static: grey[14],
33
34
  colorNeutralForegroundInverted: white,
34
35
  colorNeutralForegroundInvertedHover: white,
35
36
  colorNeutralForegroundInvertedPressed: white,
@@ -85,8 +86,8 @@ export const generateColorTokens = brand => ({
85
86
  colorTransparentBackgroundSelected: 'transparent',
86
87
  colorNeutralBackgroundDisabled: grey[8],
87
88
  colorNeutralBackgroundInvertedDisabled: whiteAlpha[10],
88
- colorNeutralStencil1: grey[20],
89
- colorNeutralStencil2: grey[34],
89
+ colorNeutralStencil1: grey[34],
90
+ colorNeutralStencil2: grey[20],
90
91
  colorBrandBackground: brand[70],
91
92
  colorBrandBackgroundHover: brand[80],
92
93
  colorBrandBackgroundPressed: brand[40],
@@ -134,7 +135,8 @@ export const generateColorTokens = brand => ({
134
135
  colorNeutralShadowAmbientDarker: 'rgba(0,0,0,0.40)',
135
136
  colorNeutralShadowKeyDarker: 'rgba(0,0,0,0.48)',
136
137
  colorBrandShadowAmbient: 'rgba(0,0,0,0.30)',
137
- colorBrandShadowKey: 'rgba(0,0,0,0.25)'
138
+ colorBrandShadowKey: 'rgba(0,0,0,0.25)' // rgba(0,0,0,0.25) undefined
139
+
138
140
  });
139
141
  export const colorPaletteTokens = /*#__PURE__*/Object.keys(sharedColors).reduce((acc, sharedColor) => {
140
142
  const color = sharedColor.slice(0, 1).toUpperCase() + sharedColor.slice(1);
@@ -146,6 +148,7 @@ export const colorPaletteTokens = /*#__PURE__*/Object.keys(sharedColors).reduce(
146
148
  [`colorPalette${color}Foreground2`]: sharedColors[sharedColor].tint40,
147
149
  [`colorPalette${color}Foreground3`]: sharedColors[sharedColor].tint20,
148
150
  [`colorPalette${color}BorderActive`]: sharedColors[sharedColor].tint30,
151
+ [`colorPalette${color}Border1`]: sharedColors[sharedColor].primary,
149
152
  [`colorPalette${color}Border2`]: sharedColors[sharedColor].tint20
150
153
  };
151
154
  return { ...acc,
@@ -1 +1 @@
1
- {"version":3,"sources":["../../src/alias/dark.ts"],"names":[],"mappings":"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","sourceRoot":""}
1
+ {"version":3,"sources":["alias/dark.ts"],"names":[],"mappings":"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","sourcesContent":["import { black, blackAlpha, grey, white, whiteAlpha, sharedColors } from '../global/colors';\nimport type { BrandVariants, GlobalSharedColors, ColorTokens, ColorPaletteTokens } from '../types';\n\nexport const generateColorTokens = (brand: BrandVariants): ColorTokens => ({\n colorNeutralForeground1: white, // #ffffff Global.Color.White\n colorNeutralForeground1Hover: white, // #ffffff Global.Color.White\n colorNeutralForeground1Pressed: white, // #ffffff Global.Color.White\n colorNeutralForeground1Selected: white, // #ffffff Global.Color.White\n colorNeutralForeground2: grey[84], // #d6d6d6 Global.Color.Grey.84\n colorNeutralForeground2Hover: white, // #ffffff Global.Color.White\n colorNeutralForeground2Pressed: white, // #ffffff Global.Color.White\n colorNeutralForeground2Selected: white, // #ffffff Global.Color.White\n colorNeutralForeground2BrandHover: brand[100], // #2899f5 Global.Color.Brand.100\n colorNeutralForeground2BrandPressed: brand[90], // #1890f1 Global.Color.Brand.90\n colorNeutralForeground2BrandSelected: brand[100], // #2899f5 Global.Color.Brand.100\n colorNeutralForeground3: grey[68], // #adadad Global.Color.Grey.68\n colorNeutralForeground3Hover: grey[84], // #d6d6d6 Global.Color.Grey.84\n colorNeutralForeground3Pressed: grey[84], // #d6d6d6 Global.Color.Grey.84\n colorNeutralForeground3Selected: grey[84], // #d6d6d6 Global.Color.Grey.84\n colorNeutralForeground3BrandHover: brand[100], // #2899f5 Global.Color.Brand.100\n colorNeutralForeground3BrandPressed: brand[90], // #1890f1 Global.Color.Brand.90\n colorNeutralForeground3BrandSelected: brand[100], // #2899f5 Global.Color.Brand.100\n colorNeutralForeground4: grey[60], // #999999 Global.Color.Grey.60\n colorNeutralForegroundDisabled: grey[36], // #5c5c5c Global.Color.Grey.36\n colorNeutralForegroundInvertedDisabled: whiteAlpha[40], // rgba(255, 255, 255, 0.4) Global.Color.WhiteAlpha.40\n colorBrandForegroundLink: brand[90], // #1890f1 Global.Color.Brand.90\n colorBrandForegroundLinkHover: brand[110], // #3aa0f3 Global.Color.Brand.110\n colorBrandForegroundLinkPressed: brand[100], // #2899f5 Global.Color.Brand.100\n colorBrandForegroundLinkSelected: brand[90], // #1890f1 Global.Color.Brand.90\n colorCompoundBrandForeground1: brand[90], // #1890f1 Global.Color.Brand.90\n colorCompoundBrandForeground1Hover: brand[100], // #2899f5 Global.Color.Brand.100\n colorCompoundBrandForeground1Pressed: brand[80], // #0078d4 Global.Color.Brand.80\n colorBrandForeground1: brand[100], // #2899f5 Global.Color.Brand.100\n colorBrandForeground2: brand[110], // #3aa0f3 Global.Color.Brand.110\n colorNeutralForeground1Static: grey[14], // #242424 Global.Color.Grey.14\n colorNeutralForegroundInverted: white, // #ffffff Global.Color.White\n colorNeutralForegroundInvertedHover: white, // #ffffff Global.Color.White\n colorNeutralForegroundInvertedPressed: white, // #ffffff Global.Color.White\n colorNeutralForegroundInvertedSelected: white, // #ffffff Global.Color.White\n colorNeutralForegroundOnBrand: white, // #ffffff Global.Color.White\n colorNeutralForegroundInvertedLink: white, // #ffffff Global.Color.White\n colorNeutralForegroundInvertedLinkHover: white, // #ffffff Global.Color.White\n colorNeutralForegroundInvertedLinkPressed: white, // #ffffff Global.Color.White\n colorNeutralForegroundInvertedLinkSelected: white, // #ffffff Global.Color.White\n colorBrandForegroundInverted: brand[100], // #2899f5 Global.Color.Brand.100\n colorBrandForegroundInvertedHover: brand[110], // #3aa0f3 Global.Color.Brand.110\n colorBrandForegroundInvertedPressed: brand[100], // #2899f5 Global.Color.Brand.100\n colorBrandForegroundOnLight: brand[80], // #0078d4 Global.Color.Brand.80\n colorBrandForegroundOnLightHover: brand[70], // #106ebe Global.Color.Brand.70\n colorBrandForegroundOnLightPressed: brand[50], // #004c87 Global.Color.Brand.50\n colorBrandForegroundOnLightSelected: brand[60], // #005a9e Global.Color.Brand.60\n colorNeutralBackground1: grey[16], // #292929 Global.Color.Grey.16\n colorNeutralBackground1Hover: grey[24], // #3d3d3d Global.Color.Grey.24\n colorNeutralBackground1Pressed: grey[12], // #1f1f1f Global.Color.Grey.12\n colorNeutralBackground1Selected: grey[22], // #383838 Global.Color.Grey.22\n colorNeutralBackground2: grey[12], // #1f1f1f Global.Color.Grey.12\n colorNeutralBackground2Hover: grey[20], // #333333 Global.Color.Grey.20\n colorNeutralBackground2Pressed: grey[8], // #141414 Global.Color.Grey.8\n colorNeutralBackground2Selected: grey[18], // #2e2e2e Global.Color.Grey.18\n colorNeutralBackground3: grey[8], // #141414 Global.Color.Grey.8\n colorNeutralBackground3Hover: grey[16], // #292929 Global.Color.Grey.16\n colorNeutralBackground3Pressed: grey[4], // #0a0a0a Global.Color.Grey.4\n colorNeutralBackground3Selected: grey[14], // #242424 Global.Color.Grey.14\n colorNeutralBackground4: grey[4], // #0a0a0a Global.Color.Grey.4\n colorNeutralBackground4Hover: grey[12], // #1f1f1f Global.Color.Grey.12\n colorNeutralBackground4Pressed: black, // #000000 Global.Color.Black\n colorNeutralBackground4Selected: grey[10], // #1a1a1a Global.Color.Grey.10\n colorNeutralBackground5: black, // #000000 Global.Color.Black\n colorNeutralBackground5Hover: grey[8], // #141414 Global.Color.Grey.8\n colorNeutralBackground5Pressed: grey[2], // #050505 Global.Color.Grey.2\n colorNeutralBackground5Selected: grey[6], // #0f0f0f Global.Color.Grey.6\n colorNeutralBackground6: grey[20], // #333333 Global.Color.Grey.20\n colorNeutralBackgroundInverted: grey[24], // #3d3d3d Global.Color.Grey.24\n colorSubtleBackground: 'transparent', // transparent undefined\n colorSubtleBackgroundHover: grey[22], // #383838 Global.Color.Grey.22\n colorSubtleBackgroundPressed: grey[18], // #2e2e2e Global.Color.Grey.18\n colorSubtleBackgroundSelected: grey[20], // #333333 Global.Color.Grey.20\n colorSubtleBackgroundLightAlphaHover: whiteAlpha[10], // rgba(255, 255, 255, 0.1) Global.Color.WhiteAlpha.10\n colorSubtleBackgroundLightAlphaPressed: whiteAlpha[5], // rgba(255, 255, 255, 0.05) Global.Color.WhiteAlpha.5\n colorSubtleBackgroundLightAlphaSelected: 'transparent', // transparent undefined\n colorSubtleBackgroundInverted: 'transparent', // transparent undefined\n colorSubtleBackgroundInvertedHover: blackAlpha[10], // rgba(0, 0, 0, 0.1) Global.Color.BlackAlpha.10\n colorSubtleBackgroundInvertedPressed: blackAlpha[30], // rgba(0, 0, 0, 0.3) Global.Color.BlackAlpha.30\n colorSubtleBackgroundInvertedSelected: blackAlpha[20], // rgba(0, 0, 0, 0.2) Global.Color.BlackAlpha.20\n colorTransparentBackground: 'transparent', // transparent undefined\n colorTransparentBackgroundHover: 'transparent', // transparent undefined\n colorTransparentBackgroundPressed: 'transparent', // transparent undefined\n colorTransparentBackgroundSelected: 'transparent', // transparent undefined\n colorNeutralBackgroundDisabled: grey[8], // #141414 Global.Color.Grey.8\n colorNeutralBackgroundInvertedDisabled: whiteAlpha[10], // rgba(255, 255, 255, 0.1) Global.Color.WhiteAlpha.10\n colorNeutralStencil1: grey[34], // #575757 Global.Color.Grey.34\n colorNeutralStencil2: grey[20], // #333333 Global.Color.Grey.20\n colorBrandBackground: brand[70], // #106ebe Global.Color.Brand.70\n colorBrandBackgroundHover: brand[80], // #0078d4 Global.Color.Brand.80\n colorBrandBackgroundPressed: brand[40], // #004578 Global.Color.Brand.40\n colorBrandBackgroundSelected: brand[60], // #005a9e Global.Color.Brand.60\n colorCompoundBrandBackground: brand[90], // #1890f1 Global.Color.Brand.90\n colorCompoundBrandBackgroundHover: brand[100], // #2899f5 Global.Color.Brand.100\n colorCompoundBrandBackgroundPressed: brand[80], // #0078d4 Global.Color.Brand.80\n colorBrandBackgroundStatic: brand[80], // #0078d4 Global.Color.Brand.80\n colorBrandBackground2: brand[40], // #004578 Global.Color.Brand.40\n colorBrandBackgroundInverted: white, // #ffffff Global.Color.White\n colorBrandBackgroundInvertedHover: brand[160], // #eff6fc Global.Color.Brand.160\n colorBrandBackgroundInvertedPressed: brand[140], // #c7e0f4 Global.Color.Brand.140\n colorBrandBackgroundInvertedSelected: brand[150], // #deecf9 Global.Color.Brand.150\n colorNeutralStrokeAccessible: grey[68], // #adadad Global.Color.Grey.68\n colorNeutralStrokeAccessibleHover: grey[74], // #bdbdbd Global.Color.Grey.74\n colorNeutralStrokeAccessiblePressed: grey[70], // #b3b3b3 Global.Color.Grey.70\n colorNeutralStrokeAccessibleSelected: brand[100], // #2899f5 Global.Color.Brand.100\n colorNeutralStroke1: grey[40], // #666666 Global.Color.Grey.40\n colorNeutralStroke1Hover: grey[46], // #757575 Global.Color.Grey.46\n colorNeutralStroke1Pressed: grey[42], // #6b6b6b Global.Color.Grey.42\n colorNeutralStroke1Selected: grey[44], // #707070 Global.Color.Grey.44\n colorNeutralStroke2: grey[32], // #525252 Global.Color.Grey.32\n colorNeutralStroke3: grey[24], // #3d3d3d Global.Color.Grey.24\n colorNeutralStrokeOnBrand: grey[16], // #292929 Global.Color.Grey.16\n colorNeutralStrokeOnBrand2: white, // #ffffff Global.Color.White\n colorNeutralStrokeOnBrand2Hover: white, // #ffffff Global.Color.White\n colorNeutralStrokeOnBrand2Pressed: white, // #ffffff Global.Color.White\n colorNeutralStrokeOnBrand2Selected: white, // #ffffff Global.Color.White\n colorBrandStroke1: brand[90], // #1890f1 Global.Color.Brand.90\n colorBrandStroke2: brand[50], // #004c87 Global.Color.Brand.50\n colorCompoundBrandStroke: brand[90], // #1890f1 Global.Color.Brand.90\n colorCompoundBrandStrokeHover: brand[100], // #2899f5 Global.Color.Brand.100\n colorCompoundBrandStrokePressed: brand[80], // #0078d4 Global.Color.Brand.80\n colorNeutralStrokeDisabled: grey[26], // #424242 Global.Color.Grey.26\n colorNeutralStrokeInvertedDisabled: whiteAlpha[40], // rgba(255, 255, 255, 0.4) Global.Color.WhiteAlpha.40\n colorTransparentStroke: 'transparent', // transparent undefined\n colorTransparentStrokeInteractive: 'transparent', // transparent undefined\n colorTransparentStrokeDisabled: 'transparent', // transparent undefined\n colorStrokeFocus1: black, // #000000 Global.Color.Black\n colorStrokeFocus2: white, // #ffffff Global.Color.White\n colorNeutralShadowAmbient: 'rgba(0,0,0,0.24)', // rgba(0,0,0,0.24) undefined\n colorNeutralShadowKey: 'rgba(0,0,0,0.28)', // rgba(0,0,0,0.28) undefined\n colorNeutralShadowAmbientLighter: 'rgba(0,0,0,0.12)', // rgba(0,0,0,0.12) undefined\n colorNeutralShadowKeyLighter: 'rgba(0,0,0,0.14)', // rgba(0,0,0,0.14) undefined\n colorNeutralShadowAmbientDarker: 'rgba(0,0,0,0.40)', // rgba(0,0,0,0.40) undefined\n colorNeutralShadowKeyDarker: 'rgba(0,0,0,0.48)', // rgba(0,0,0,0.48) undefined\n colorBrandShadowAmbient: 'rgba(0,0,0,0.30)', // rgba(0,0,0,0.30) undefined\n colorBrandShadowKey: 'rgba(0,0,0,0.25)', // rgba(0,0,0,0.25) undefined\n});\n\nexport const colorPaletteTokens: ColorPaletteTokens = (Object.keys(sharedColors) as Array<\n keyof GlobalSharedColors\n>).reduce((acc, sharedColor) => {\n const color = sharedColor.slice(0, 1).toUpperCase() + sharedColor.slice(1);\n const sharedColorTokens = {\n [`colorPalette${color}Background1`]: sharedColors[sharedColor].shade40,\n [`colorPalette${color}Background2`]: sharedColors[sharedColor].shade30,\n [`colorPalette${color}Background3`]: sharedColors[sharedColor].primary,\n [`colorPalette${color}Foreground1`]: sharedColors[sharedColor].tint30,\n [`colorPalette${color}Foreground2`]: sharedColors[sharedColor].tint40,\n [`colorPalette${color}Foreground3`]: sharedColors[sharedColor].tint20,\n [`colorPalette${color}BorderActive`]: sharedColors[sharedColor].tint30,\n [`colorPalette${color}Border1`]: sharedColors[sharedColor].primary,\n [`colorPalette${color}Border2`]: sharedColors[sharedColor].tint20,\n };\n\n return { ...acc, ...sharedColorTokens };\n}, {} as ColorPaletteTokens);\n"],"sourceRoot":"../src/"}
@@ -1,4 +1,4 @@
1
- import { grey, hcButtonFace, hcButtonText, hcCanvas, hcCanvasText, hcDisabled, hcHighlight, hcHighlightText, hcHyperlink, sharedColors, white, black } from '../global/colors';
1
+ import { hcButtonFace, hcButtonText, hcCanvas, hcCanvasText, hcDisabled, hcHighlight, hcHighlightText, hcHyperlink, sharedColors, white, black } from '../global/colors';
2
2
  export const generateColorTokens = () => ({
3
3
  colorNeutralForeground1: hcCanvasText,
4
4
  colorNeutralForeground1Hover: hcHighlightText,
@@ -30,6 +30,7 @@ export const generateColorTokens = () => ({
30
30
  colorCompoundBrandForeground1Pressed: hcHighlight,
31
31
  colorBrandForeground1: hcCanvasText,
32
32
  colorBrandForeground2: hcButtonText,
33
+ colorNeutralForeground1Static: hcCanvas,
33
34
  colorNeutralForegroundInverted: hcCanvasText,
34
35
  colorNeutralForegroundInvertedHover: hcHighlightText,
35
36
  colorNeutralForegroundInvertedPressed: hcHighlightText,
@@ -85,8 +86,8 @@ export const generateColorTokens = () => ({
85
86
  colorTransparentBackgroundSelected: hcHighlight,
86
87
  colorNeutralBackgroundDisabled: hcCanvas,
87
88
  colorNeutralBackgroundInvertedDisabled: hcCanvas,
88
- colorNeutralStencil1: grey[8],
89
- colorNeutralStencil2: grey[52],
89
+ colorNeutralStencil1: hcCanvasText,
90
+ colorNeutralStencil2: hcCanvasText,
90
91
  colorBrandBackground: hcButtonFace,
91
92
  colorBrandBackgroundHover: hcHighlight,
92
93
  colorBrandBackgroundPressed: hcHighlight,
@@ -134,7 +135,8 @@ export const generateColorTokens = () => ({
134
135
  colorNeutralShadowAmbientDarker: 'rgba(0,0,0,0.40)',
135
136
  colorNeutralShadowKeyDarker: 'rgba(0,0,0,0.48)',
136
137
  colorBrandShadowAmbient: 'rgba(0,0,0,0.30)',
137
- colorBrandShadowKey: 'rgba(0,0,0,0.25)'
138
+ colorBrandShadowKey: 'rgba(0,0,0,0.25)' // rgba(0,0,0,0.25) undefined
139
+
138
140
  });
139
141
  export const colorPaletteTokens = /*#__PURE__*/Object.keys(sharedColors).reduce((acc, sharedColor) => {
140
142
  const color = sharedColor.slice(0, 1).toUpperCase() + sharedColor.slice(1);
@@ -146,6 +148,7 @@ export const colorPaletteTokens = /*#__PURE__*/Object.keys(sharedColors).reduce(
146
148
  [`colorPalette${color}Foreground2`]: white,
147
149
  [`colorPalette${color}Foreground3`]: white,
148
150
  [`colorPalette${color}BorderActive`]: hcHighlight,
151
+ [`colorPalette${color}Border1`]: white,
149
152
  [`colorPalette${color}Border2`]: white
150
153
  };
151
154
  return { ...acc,