@fluentui/react-theme 0.0.0-nightlyed2d7c8d6320211111.1 → 0.0.0-nightlyf1be0a972820211214.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 (70) hide show
  1. package/CHANGELOG.json +74 -4
  2. package/CHANGELOG.md +27 -5
  3. package/dist/react-theme.d.ts +94 -73
  4. package/lib/alias/dark.js +68 -34
  5. package/lib/alias/dark.js.map +1 -1
  6. package/lib/alias/highContrast.js +38 -4
  7. package/lib/alias/highContrast.js.map +1 -1
  8. package/lib/alias/light.js +67 -33
  9. package/lib/alias/light.js.map +1 -1
  10. package/lib/alias/teamsDark.js +67 -33
  11. package/lib/alias/teamsDark.js.map +1 -1
  12. package/lib/global/brandColors.d.ts +1 -0
  13. package/lib/global/brandColors.js +51 -29
  14. package/lib/global/brandColors.js.map +1 -1
  15. package/lib/global/colors.d.ts +2 -2
  16. package/lib/global/colors.js +14 -14
  17. package/lib/global/colors.js.map +1 -1
  18. package/lib/index.d.ts +1 -1
  19. package/lib/types.d.ts +91 -77
  20. package/lib/utils/createDarkTheme.js +2 -1
  21. package/lib/utils/createDarkTheme.js.map +1 -1
  22. package/lib/utils/createHighContrastTheme.js +2 -1
  23. package/lib/utils/createHighContrastTheme.js.map +1 -1
  24. package/lib/utils/createLightTheme.js +2 -1
  25. package/lib/utils/createLightTheme.js.map +1 -1
  26. package/lib/utils/createTeamsDarkTheme.js +2 -1
  27. package/lib/utils/createTeamsDarkTheme.js.map +1 -1
  28. package/lib/utils/index.d.ts +0 -1
  29. package/lib/utils/index.js +0 -1
  30. package/lib/utils/index.js.map +1 -1
  31. package/lib/utils/shadows.d.ts +2 -1
  32. package/lib/utils/shadows.js +7 -7
  33. package/lib/utils/shadows.js.map +1 -1
  34. package/lib-commonjs/alias/dark.js +67 -33
  35. package/lib-commonjs/alias/dark.js.map +1 -1
  36. package/lib-commonjs/alias/highContrast.js +37 -3
  37. package/lib-commonjs/alias/highContrast.js.map +1 -1
  38. package/lib-commonjs/alias/light.js +66 -32
  39. package/lib-commonjs/alias/light.js.map +1 -1
  40. package/lib-commonjs/alias/teamsDark.js +66 -32
  41. package/lib-commonjs/alias/teamsDark.js.map +1 -1
  42. package/lib-commonjs/global/brandColors.d.ts +1 -0
  43. package/lib-commonjs/global/brandColors.js +52 -30
  44. package/lib-commonjs/global/brandColors.js.map +1 -1
  45. package/lib-commonjs/global/colors.d.ts +2 -2
  46. package/lib-commonjs/global/colors.js +15 -15
  47. package/lib-commonjs/global/colors.js.map +1 -1
  48. package/lib-commonjs/index.d.ts +1 -1
  49. package/lib-commonjs/types.d.ts +91 -77
  50. package/lib-commonjs/utils/createDarkTheme.js +2 -1
  51. package/lib-commonjs/utils/createDarkTheme.js.map +1 -1
  52. package/lib-commonjs/utils/createHighContrastTheme.js +2 -1
  53. package/lib-commonjs/utils/createHighContrastTheme.js.map +1 -1
  54. package/lib-commonjs/utils/createLightTheme.js +2 -1
  55. package/lib-commonjs/utils/createLightTheme.js.map +1 -1
  56. package/lib-commonjs/utils/createTeamsDarkTheme.js +2 -1
  57. package/lib-commonjs/utils/createTeamsDarkTheme.js.map +1 -1
  58. package/lib-commonjs/utils/index.d.ts +0 -1
  59. package/lib-commonjs/utils/index.js +0 -2
  60. package/lib-commonjs/utils/index.js.map +1 -1
  61. package/lib-commonjs/utils/shadows.d.ts +2 -1
  62. package/lib-commonjs/utils/shadows.js +7 -7
  63. package/lib-commonjs/utils/shadows.js.map +1 -1
  64. package/package.json +4 -4
  65. package/lib/utils/themeToCSSVariables.d.ts +0 -2
  66. package/lib/utils/themeToCSSVariables.js +0 -12
  67. package/lib/utils/themeToCSSVariables.js.map +0 -1
  68. package/lib-commonjs/utils/themeToCSSVariables.d.ts +0 -2
  69. package/lib-commonjs/utils/themeToCSSVariables.js +0 -21
  70. package/lib-commonjs/utils/themeToCSSVariables.js.map +0 -1
package/lib/types.d.ts CHANGED
@@ -3,6 +3,9 @@
3
3
  */
4
4
  export declare type ColorTokens = {
5
5
  colorNeutralForeground1: string;
6
+ colorNeutralForeground1Hover: string;
7
+ colorNeutralForeground1Pressed: string;
8
+ colorNeutralForeground1Selected: string;
6
9
  colorNeutralForeground2: string;
7
10
  colorNeutralForeground2Hover: string;
8
11
  colorNeutralForeground2Pressed: string;
@@ -19,6 +22,7 @@ export declare type ColorTokens = {
19
22
  colorNeutralForeground3BrandSelected: string;
20
23
  colorNeutralForeground4: string;
21
24
  colorNeutralForegroundDisabled: string;
25
+ colorNeutralForegroundInvertedDisabled: string;
22
26
  colorBrandForegroundLink: string;
23
27
  colorBrandForegroundLinkHover: string;
24
28
  colorBrandForegroundLinkPressed: string;
@@ -29,11 +33,21 @@ export declare type ColorTokens = {
29
33
  colorBrandForeground1: string;
30
34
  colorBrandForeground2: string;
31
35
  colorNeutralForegroundInverted: string;
36
+ colorNeutralForegroundInvertedHover: string;
37
+ colorNeutralForegroundInvertedPressed: string;
38
+ colorNeutralForegroundInvertedSelected: string;
32
39
  colorNeutralForegroundOnBrand: string;
33
40
  colorNeutralForegroundInvertedLink: string;
34
41
  colorNeutralForegroundInvertedLinkHover: string;
35
42
  colorNeutralForegroundInvertedLinkPressed: string;
36
43
  colorNeutralForegroundInvertedLinkSelected: string;
44
+ colorBrandForegroundInverted: string;
45
+ colorBrandForegroundInvertedHover: string;
46
+ colorBrandForegroundInvertedPressed: string;
47
+ colorBrandForegroundOnLight: string;
48
+ colorBrandForegroundOnLightHover: string;
49
+ colorBrandForegroundOnLightPressed: string;
50
+ colorBrandForegroundOnLightSelected: string;
37
51
  colorNeutralBackground1: string;
38
52
  colorNeutralBackground1Hover: string;
39
53
  colorNeutralBackground1Pressed: string;
@@ -60,11 +74,19 @@ export declare type ColorTokens = {
60
74
  colorSubtleBackgroundHover: string;
61
75
  colorSubtleBackgroundPressed: string;
62
76
  colorSubtleBackgroundSelected: string;
77
+ colorSubtleBackgroundLightAlphaHover: string;
78
+ colorSubtleBackgroundLightAlphaPressed: string;
79
+ colorSubtleBackgroundLightAlphaSelected: string;
80
+ colorSubtleBackgroundInverted: string;
81
+ colorSubtleBackgroundInvertedHover: string;
82
+ colorSubtleBackgroundInvertedPressed: string;
83
+ colorSubtleBackgroundInvertedSelected: string;
63
84
  colorTransparentBackground: string;
64
85
  colorTransparentBackgroundHover: string;
65
86
  colorTransparentBackgroundPressed: string;
66
87
  colorTransparentBackgroundSelected: string;
67
88
  colorNeutralBackgroundDisabled: string;
89
+ colorNeutralBackgroundInvertedDisabled: string;
68
90
  colorNeutralStencil1: string;
69
91
  colorNeutralStencil2: string;
70
92
  colorBrandBackground: string;
@@ -76,6 +98,10 @@ export declare type ColorTokens = {
76
98
  colorCompoundBrandBackgroundPressed: string;
77
99
  colorBrandBackgroundStatic: string;
78
100
  colorBrandBackground2: string;
101
+ colorBrandBackgroundInverted: string;
102
+ colorBrandBackgroundInvertedHover: string;
103
+ colorBrandBackgroundInvertedPressed: string;
104
+ colorBrandBackgroundInvertedSelected: string;
79
105
  colorNeutralStrokeAccessible: string;
80
106
  colorNeutralStrokeAccessibleHover: string;
81
107
  colorNeutralStrokeAccessiblePressed: string;
@@ -86,12 +112,18 @@ export declare type ColorTokens = {
86
112
  colorNeutralStroke1Selected: string;
87
113
  colorNeutralStroke2: string;
88
114
  colorNeutralStroke3: string;
115
+ colorNeutralStrokeOnBrand: string;
116
+ colorNeutralStrokeOnBrand2: string;
117
+ colorNeutralStrokeOnBrand2Hover: string;
118
+ colorNeutralStrokeOnBrand2Pressed: string;
119
+ colorNeutralStrokeOnBrand2Selected: string;
89
120
  colorBrandStroke1: string;
90
121
  colorBrandStroke2: string;
91
122
  colorCompoundBrandStroke: string;
92
123
  colorCompoundBrandStrokeHover: string;
93
124
  colorCompoundBrandStrokePressed: string;
94
125
  colorNeutralStrokeDisabled: string;
126
+ colorNeutralStrokeInvertedDisabled: string;
95
127
  colorTransparentStroke: string;
96
128
  colorTransparentStrokeInteractive: string;
97
129
  colorTransparentStrokeDisabled: string;
@@ -106,55 +138,55 @@ export declare type ColorTokens = {
106
138
  colorBrandShadowAmbient: string;
107
139
  colorBrandShadowKey: string;
108
140
  };
109
- export declare type ColorPaletteDarkRed = 'colorPaletteDarkRedBackground1' | 'colorPaletteDarkRedBackground2' | 'colorPaletteDarkRedBackground3' | 'colorPaletteDarkRedForeground1' | 'colorPaletteDarkRedForeground2' | 'colorPaletteDarkRedForeground3' | 'colorPaletteDarkRedBorderActive' | 'colorPaletteDarkRedBorder2';
110
- export declare type ColorPaletteBurgundy = 'colorPaletteBurgundyBackground1' | 'colorPaletteBurgundyBackground2' | 'colorPaletteBurgundyBackground3' | 'colorPaletteBurgundyForeground1' | 'colorPaletteBurgundyForeground2' | 'colorPaletteBurgundyForeground3' | 'colorPaletteBurgundyBorderActive' | 'colorPaletteBurgundyBorder2';
111
- export declare type ColorPaletteCranberry = 'colorPaletteCranberryBackground1' | 'colorPaletteCranberryBackground2' | 'colorPaletteCranberryBackground3' | 'colorPaletteCranberryForeground1' | 'colorPaletteCranberryForeground2' | 'colorPaletteCranberryForeground3' | 'colorPaletteCranberryBorderActive' | 'colorPaletteCranberryBorder2';
112
- export declare type ColorPaletteRed = 'colorPaletteRedBackground1' | 'colorPaletteRedBackground2' | 'colorPaletteRedBackground3' | 'colorPaletteRedForeground1' | 'colorPaletteRedForeground2' | 'colorPaletteRedForeground3' | 'colorPaletteRedBorderActive' | 'colorPaletteRedBorder2';
113
- export declare type ColorPaletteDarkOrange = 'colorPaletteDarkOrangeBackground1' | 'colorPaletteDarkOrangeBackground2' | 'colorPaletteDarkOrangeBackground3' | 'colorPaletteDarkOrangeForeground1' | 'colorPaletteDarkOrangeForeground2' | 'colorPaletteDarkOrangeForeground3' | 'colorPaletteDarkOrangeBorderActive' | 'colorPaletteDarkOrangeBorder2';
114
- export declare type ColorPaletteBronze = 'colorPaletteBronzeBackground1' | 'colorPaletteBronzeBackground2' | 'colorPaletteBronzeBackground3' | 'colorPaletteBronzeForeground1' | 'colorPaletteBronzeForeground2' | 'colorPaletteBronzeForeground3' | 'colorPaletteBronzeBorderActive' | 'colorPaletteBronzeBorder2';
115
- export declare type ColorPalettePumpkin = 'colorPalettePumpkinBackground1' | 'colorPalettePumpkinBackground2' | 'colorPalettePumpkinBackground3' | 'colorPalettePumpkinForeground1' | 'colorPalettePumpkinForeground2' | 'colorPalettePumpkinForeground3' | 'colorPalettePumpkinBorderActive' | 'colorPalettePumpkinBorder2';
116
- export declare type ColorPaletteOrange = 'colorPaletteOrangeBackground1' | 'colorPaletteOrangeBackground2' | 'colorPaletteOrangeBackground3' | 'colorPaletteOrangeForeground1' | 'colorPaletteOrangeForeground2' | 'colorPaletteOrangeForeground3' | 'colorPaletteOrangeBorderActive' | 'colorPaletteOrangeBorder2';
117
- export declare type ColorPalettePeach = 'colorPalettePeachBackground1' | 'colorPalettePeachBackground2' | 'colorPalettePeachBackground3' | 'colorPalettePeachForeground1' | 'colorPalettePeachForeground2' | 'colorPalettePeachForeground3' | 'colorPalettePeachBorderActive' | 'colorPalettePeachBorder2';
118
- export declare type ColorPaletteMarigold = 'colorPaletteMarigoldBackground1' | 'colorPaletteMarigoldBackground2' | 'colorPaletteMarigoldBackground3' | 'colorPaletteMarigoldForeground1' | 'colorPaletteMarigoldForeground2' | 'colorPaletteMarigoldForeground3' | 'colorPaletteMarigoldBorderActive' | 'colorPaletteMarigoldBorder2';
119
- export declare type ColorPaletteYellow = 'colorPaletteYellowBackground1' | 'colorPaletteYellowBackground2' | 'colorPaletteYellowBackground3' | 'colorPaletteYellowForeground1' | 'colorPaletteYellowForeground2' | 'colorPaletteYellowForeground3' | 'colorPaletteYellowBorderActive' | 'colorPaletteYellowBorder2';
120
- export declare type ColorPaletteGold = 'colorPaletteGoldBackground1' | 'colorPaletteGoldBackground2' | 'colorPaletteGoldBackground3' | 'colorPaletteGoldForeground1' | 'colorPaletteGoldForeground2' | 'colorPaletteGoldForeground3' | 'colorPaletteGoldBorderActive' | 'colorPaletteGoldBorder2';
121
- export declare type ColorPaletteBrass = 'colorPaletteBrassBackground1' | 'colorPaletteBrassBackground2' | 'colorPaletteBrassBackground3' | 'colorPaletteBrassForeground1' | 'colorPaletteBrassForeground2' | 'colorPaletteBrassForeground3' | 'colorPaletteBrassBorderActive' | 'colorPaletteBrassBorder2';
122
- export declare type ColorPaletteBrown = 'colorPaletteBrownBackground1' | 'colorPaletteBrownBackground2' | 'colorPaletteBrownBackground3' | 'colorPaletteBrownForeground1' | 'colorPaletteBrownForeground2' | 'colorPaletteBrownForeground3' | 'colorPaletteBrownBorderActive' | 'colorPaletteBrownBorder2';
123
- export declare type ColorPaletteDarkBrown = 'colorPaletteDarkBrownBackground1' | 'colorPaletteDarkBrownBackground2' | 'colorPaletteDarkBrownBackground3' | 'colorPaletteDarkBrownForeground1' | 'colorPaletteDarkBrownForeground2' | 'colorPaletteDarkBrownForeground3' | 'colorPaletteDarkBrownBorderActive' | 'colorPaletteDarkBrownBorder2';
124
- export declare type ColorPaletteLime = 'colorPaletteLimeBackground1' | 'colorPaletteLimeBackground2' | 'colorPaletteLimeBackground3' | 'colorPaletteLimeForeground1' | 'colorPaletteLimeForeground2' | 'colorPaletteLimeForeground3' | 'colorPaletteLimeBorderActive' | 'colorPaletteLimeBorder2';
125
- export declare type ColorPaletteForest = 'colorPaletteForestBackground1' | 'colorPaletteForestBackground2' | 'colorPaletteForestBackground3' | 'colorPaletteForestForeground1' | 'colorPaletteForestForeground2' | 'colorPaletteForestForeground3' | 'colorPaletteForestBorderActive' | 'colorPaletteForestBorder2';
126
- export declare type ColorPaletteSeafoam = 'colorPaletteSeafoamBackground1' | 'colorPaletteSeafoamBackground2' | 'colorPaletteSeafoamBackground3' | 'colorPaletteSeafoamForeground1' | 'colorPaletteSeafoamForeground2' | 'colorPaletteSeafoamForeground3' | 'colorPaletteSeafoamBorderActive' | 'colorPaletteSeafoamBorder2';
127
- export declare type ColorPaletteLightGreen = 'colorPaletteLightGreenBackground1' | 'colorPaletteLightGreenBackground2' | 'colorPaletteLightGreenBackground3' | 'colorPaletteLightGreenForeground1' | 'colorPaletteLightGreenForeground2' | 'colorPaletteLightGreenForeground3' | 'colorPaletteLightGreenBorderActive' | 'colorPaletteLightGreenBorder2';
128
- export declare type ColorPaletteGreen = 'colorPaletteGreenBackground1' | 'colorPaletteGreenBackground2' | 'colorPaletteGreenBackground3' | 'colorPaletteGreenForeground1' | 'colorPaletteGreenForeground2' | 'colorPaletteGreenForeground3' | 'colorPaletteGreenBorderActive' | 'colorPaletteGreenBorder2';
129
- export declare type ColorPaletteDarkGreen = 'colorPaletteDarkGreenBackground1' | 'colorPaletteDarkGreenBackground2' | 'colorPaletteDarkGreenBackground3' | 'colorPaletteDarkGreenForeground1' | 'colorPaletteDarkGreenForeground2' | 'colorPaletteDarkGreenForeground3' | 'colorPaletteDarkGreenBorderActive' | 'colorPaletteDarkGreenBorder2';
130
- export declare type ColorPaletteLightTeal = 'colorPaletteLightTealBackground1' | 'colorPaletteLightTealBackground2' | 'colorPaletteLightTealBackground3' | 'colorPaletteLightTealForeground1' | 'colorPaletteLightTealForeground2' | 'colorPaletteLightTealForeground3' | 'colorPaletteLightTealBorderActive' | 'colorPaletteLightTealBorder2';
131
- export declare type ColorPaletteTeal = 'colorPaletteTealBackground1' | 'colorPaletteTealBackground2' | 'colorPaletteTealBackground3' | 'colorPaletteTealForeground1' | 'colorPaletteTealForeground2' | 'colorPaletteTealForeground3' | 'colorPaletteTealBorderActive' | 'colorPaletteTealBorder2';
132
- export declare type ColorPaletteDarkTeal = 'colorPaletteDarkTealBackground1' | 'colorPaletteDarkTealBackground2' | 'colorPaletteDarkTealBackground3' | 'colorPaletteDarkTealForeground1' | 'colorPaletteDarkTealForeground2' | 'colorPaletteDarkTealForeground3' | 'colorPaletteDarkTealBorderActive' | 'colorPaletteDarkTealBorder2';
133
- export declare type ColorPaletteCyan = 'colorPaletteCyanBackground1' | 'colorPaletteCyanBackground2' | 'colorPaletteCyanBackground3' | 'colorPaletteCyanForeground1' | 'colorPaletteCyanForeground2' | 'colorPaletteCyanForeground3' | 'colorPaletteCyanBorderActive' | 'colorPaletteCyanBorder2';
134
- export declare type ColorPaletteSteel = 'colorPaletteSteelBackground1' | 'colorPaletteSteelBackground2' | 'colorPaletteSteelBackground3' | 'colorPaletteSteelForeground1' | 'colorPaletteSteelForeground2' | 'colorPaletteSteelForeground3' | 'colorPaletteSteelBorderActive' | 'colorPaletteSteelBorder2';
135
- export declare type ColorPaletteLightBlue = 'colorPaletteLightBlueBackground1' | 'colorPaletteLightBlueBackground2' | 'colorPaletteLightBlueBackground3' | 'colorPaletteLightBlueForeground1' | 'colorPaletteLightBlueForeground2' | 'colorPaletteLightBlueForeground3' | 'colorPaletteLightBlueBorderActive' | 'colorPaletteLightBlueBorder2';
136
- export declare type ColorPaletteBlue = 'colorPaletteBlueBackground1' | 'colorPaletteBlueBackground2' | 'colorPaletteBlueBackground3' | 'colorPaletteBlueForeground1' | 'colorPaletteBlueForeground2' | 'colorPaletteBlueForeground3' | 'colorPaletteBlueBorderActive' | 'colorPaletteBlueBorder2';
137
- export declare type ColorPaletteRoyalBlue = 'colorPaletteRoyalBlueBackground1' | 'colorPaletteRoyalBlueBackground2' | 'colorPaletteRoyalBlueBackground3' | 'colorPaletteRoyalBlueForeground1' | 'colorPaletteRoyalBlueForeground2' | 'colorPaletteRoyalBlueForeground3' | 'colorPaletteRoyalBlueBorderActive' | 'colorPaletteRoyalBlueBorder2';
138
- export declare type ColorPaletteDarkBlue = 'colorPaletteDarkBlueBackground1' | 'colorPaletteDarkBlueBackground2' | 'colorPaletteDarkBlueBackground3' | 'colorPaletteDarkBlueForeground1' | 'colorPaletteDarkBlueForeground2' | 'colorPaletteDarkBlueForeground3' | 'colorPaletteDarkBlueBorderActive' | 'colorPaletteDarkBlueBorder2';
139
- export declare type ColorPaletteCornflower = 'colorPaletteCornflowerBackground1' | 'colorPaletteCornflowerBackground2' | 'colorPaletteCornflowerBackground3' | 'colorPaletteCornflowerForeground1' | 'colorPaletteCornflowerForeground2' | 'colorPaletteCornflowerForeground3' | 'colorPaletteCornflowerBorderActive' | 'colorPaletteCornflowerBorder2';
140
- export declare type ColorPaletteNavy = 'colorPaletteNavyBackground1' | 'colorPaletteNavyBackground2' | 'colorPaletteNavyBackground3' | 'colorPaletteNavyForeground1' | 'colorPaletteNavyForeground2' | 'colorPaletteNavyForeground3' | 'colorPaletteNavyBorderActive' | 'colorPaletteNavyBorder2';
141
- export declare type ColorPaletteLavender = 'colorPaletteLavenderBackground1' | 'colorPaletteLavenderBackground2' | 'colorPaletteLavenderBackground3' | 'colorPaletteLavenderForeground1' | 'colorPaletteLavenderForeground2' | 'colorPaletteLavenderForeground3' | 'colorPaletteLavenderBorderActive' | 'colorPaletteLavenderBorder2';
142
- export declare type ColorPalettePurple = 'colorPalettePurpleBackground1' | 'colorPalettePurpleBackground2' | 'colorPalettePurpleBackground3' | 'colorPalettePurpleForeground1' | 'colorPalettePurpleForeground2' | 'colorPalettePurpleForeground3' | 'colorPalettePurpleBorderActive' | 'colorPalettePurpleBorder2';
143
- export declare type ColorPaletteDarkPurple = 'colorPaletteDarkPurpleBackground1' | 'colorPaletteDarkPurpleBackground2' | 'colorPaletteDarkPurpleBackground3' | 'colorPaletteDarkPurpleForeground1' | 'colorPaletteDarkPurpleForeground2' | 'colorPaletteDarkPurpleForeground3' | 'colorPaletteDarkPurpleBorderActive' | 'colorPaletteDarkPurpleBorder2';
144
- export declare type ColorPaletteOrchid = 'colorPaletteOrchidBackground1' | 'colorPaletteOrchidBackground2' | 'colorPaletteOrchidBackground3' | 'colorPaletteOrchidForeground1' | 'colorPaletteOrchidForeground2' | 'colorPaletteOrchidForeground3' | 'colorPaletteOrchidBorderActive' | 'colorPaletteOrchidBorder2';
145
- export declare type ColorPaletteGrape = 'colorPaletteGrapeBackground1' | 'colorPaletteGrapeBackground2' | 'colorPaletteGrapeBackground3' | 'colorPaletteGrapeForeground1' | 'colorPaletteGrapeForeground2' | 'colorPaletteGrapeForeground3' | 'colorPaletteGrapeBorderActive' | 'colorPaletteGrapeBorder2';
146
- export declare type ColorPaletteBerry = 'colorPaletteBerryBackground1' | 'colorPaletteBerryBackground2' | 'colorPaletteBerryBackground3' | 'colorPaletteBerryForeground1' | 'colorPaletteBerryForeground2' | 'colorPaletteBerryForeground3' | 'colorPaletteBerryBorderActive' | 'colorPaletteBerryBorder2';
147
- export declare type ColorPaletteLilac = 'colorPaletteLilacBackground1' | 'colorPaletteLilacBackground2' | 'colorPaletteLilacBackground3' | 'colorPaletteLilacForeground1' | 'colorPaletteLilacForeground2' | 'colorPaletteLilacForeground3' | 'colorPaletteLilacBorderActive' | 'colorPaletteLilacBorder2';
148
- export declare type ColorPalettePink = 'colorPalettePinkBackground1' | 'colorPalettePinkBackground2' | 'colorPalettePinkBackground3' | 'colorPalettePinkForeground1' | 'colorPalettePinkForeground2' | 'colorPalettePinkForeground3' | 'colorPalettePinkBorderActive' | 'colorPalettePinkBorder2';
149
- export declare type ColorPaletteHotPink = 'colorPaletteHotPinkBackground1' | 'colorPaletteHotPinkBackground2' | 'colorPaletteHotPinkBackground3' | 'colorPaletteHotPinkForeground1' | 'colorPaletteHotPinkForeground2' | 'colorPaletteHotPinkForeground3' | 'colorPaletteHotPinkBorderActive' | 'colorPaletteHotPinkBorder2';
150
- export declare type ColorPaletteMagenta = 'colorPaletteMagentaBackground1' | 'colorPaletteMagentaBackground2' | 'colorPaletteMagentaBackground3' | 'colorPaletteMagentaForeground1' | 'colorPaletteMagentaForeground2' | 'colorPaletteMagentaForeground3' | 'colorPaletteMagentaBorderActive' | 'colorPaletteMagentaBorder2';
151
- export declare type ColorPalettePlum = 'colorPalettePlumBackground1' | 'colorPalettePlumBackground2' | 'colorPalettePlumBackground3' | 'colorPalettePlumForeground1' | 'colorPalettePlumForeground2' | 'colorPalettePlumForeground3' | 'colorPalettePlumBorderActive' | 'colorPalettePlumBorder2';
152
- export declare type ColorPaletteBeige = 'colorPaletteBeigeBackground1' | 'colorPaletteBeigeBackground2' | 'colorPaletteBeigeBackground3' | 'colorPaletteBeigeForeground1' | 'colorPaletteBeigeForeground2' | 'colorPaletteBeigeForeground3' | 'colorPaletteBeigeBorderActive' | 'colorPaletteBeigeBorder2';
153
- export declare type ColorPaletteMink = 'colorPaletteMinkBackground1' | 'colorPaletteMinkBackground2' | 'colorPaletteMinkBackground3' | 'colorPaletteMinkForeground1' | 'colorPaletteMinkForeground2' | 'colorPaletteMinkForeground3' | 'colorPaletteMinkBorderActive' | 'colorPaletteMinkBorder2';
154
- export declare type ColorPaletteSilver = 'colorPaletteSilverBackground1' | 'colorPaletteSilverBackground2' | 'colorPaletteSilverBackground3' | 'colorPaletteSilverForeground1' | 'colorPaletteSilverForeground2' | 'colorPaletteSilverForeground3' | 'colorPaletteSilverBorderActive' | 'colorPaletteSilverBorder2';
155
- export declare type ColorPalettePlatinum = 'colorPalettePlatinumBackground1' | 'colorPalettePlatinumBackground2' | 'colorPalettePlatinumBackground3' | 'colorPalettePlatinumForeground1' | 'colorPalettePlatinumForeground2' | 'colorPalettePlatinumForeground3' | 'colorPalettePlatinumBorderActive' | 'colorPalettePlatinumBorder2';
156
- export declare type ColorPaletteAnchor = 'colorPaletteAnchorBackground1' | 'colorPaletteAnchorBackground2' | 'colorPaletteAnchorBackground3' | 'colorPaletteAnchorForeground1' | 'colorPaletteAnchorForeground2' | 'colorPaletteAnchorForeground3' | 'colorPaletteAnchorBorderActive' | 'colorPaletteAnchorBorder2';
157
- export declare type ColorPaletteCharcoal = 'colorPaletteCharcoalBackground1' | 'colorPaletteCharcoalBackground2' | 'colorPaletteCharcoalBackground3' | 'colorPaletteCharcoalForeground1' | 'colorPaletteCharcoalForeground2' | 'colorPaletteCharcoalForeground3' | 'colorPaletteCharcoalBorderActive' | 'colorPaletteCharcoalBorder2';
141
+ export declare type ColorPaletteDarkRed = 'colorPaletteDarkRedBackground1' | 'colorPaletteDarkRedBackground2' | 'colorPaletteDarkRedBackground3' | 'colorPaletteDarkRedForeground1' | 'colorPaletteDarkRedForeground2' | 'colorPaletteDarkRedForeground3' | 'colorPaletteDarkRedBorderActive' | 'colorPaletteDarkRedBorder1' | 'colorPaletteDarkRedBorder2';
142
+ export declare type ColorPaletteBurgundy = 'colorPaletteBurgundyBackground1' | 'colorPaletteBurgundyBackground2' | 'colorPaletteBurgundyBackground3' | 'colorPaletteBurgundyForeground1' | 'colorPaletteBurgundyForeground2' | 'colorPaletteBurgundyForeground3' | 'colorPaletteBurgundyBorderActive' | 'colorPaletteBurgundyBorder1' | 'colorPaletteBurgundyBorder2';
143
+ export declare type ColorPaletteCranberry = 'colorPaletteCranberryBackground1' | 'colorPaletteCranberryBackground2' | 'colorPaletteCranberryBackground3' | 'colorPaletteCranberryForeground1' | 'colorPaletteCranberryForeground2' | 'colorPaletteCranberryForeground3' | 'colorPaletteCranberryBorderActive' | 'colorPaletteCranberryBorder1' | 'colorPaletteCranberryBorder2';
144
+ export declare type ColorPaletteRed = 'colorPaletteRedBackground1' | 'colorPaletteRedBackground2' | 'colorPaletteRedBackground3' | 'colorPaletteRedForeground1' | 'colorPaletteRedForeground2' | 'colorPaletteRedForeground3' | 'colorPaletteRedBorderActive' | 'colorPaletteRedBorder1' | 'colorPaletteRedBorder2';
145
+ export declare type ColorPaletteDarkOrange = 'colorPaletteDarkOrangeBackground1' | 'colorPaletteDarkOrangeBackground2' | 'colorPaletteDarkOrangeBackground3' | 'colorPaletteDarkOrangeForeground1' | 'colorPaletteDarkOrangeForeground2' | 'colorPaletteDarkOrangeForeground3' | 'colorPaletteDarkOrangeBorderActive' | 'colorPaletteDarkOrangeBorder1' | 'colorPaletteDarkOrangeBorder2';
146
+ export declare type ColorPaletteBronze = 'colorPaletteBronzeBackground1' | 'colorPaletteBronzeBackground2' | 'colorPaletteBronzeBackground3' | 'colorPaletteBronzeForeground1' | 'colorPaletteBronzeForeground2' | 'colorPaletteBronzeForeground3' | 'colorPaletteBronzeBorderActive' | 'colorPaletteBronzeBorder1' | 'colorPaletteBronzeBorder2';
147
+ export declare type ColorPalettePumpkin = 'colorPalettePumpkinBackground1' | 'colorPalettePumpkinBackground2' | 'colorPalettePumpkinBackground3' | 'colorPalettePumpkinForeground1' | 'colorPalettePumpkinForeground2' | 'colorPalettePumpkinForeground3' | 'colorPalettePumpkinBorderActive' | 'colorPalettePumpkinBorder1' | 'colorPalettePumpkinBorder2';
148
+ export declare type ColorPaletteOrange = 'colorPaletteOrangeBackground1' | 'colorPaletteOrangeBackground2' | 'colorPaletteOrangeBackground3' | 'colorPaletteOrangeForeground1' | 'colorPaletteOrangeForeground2' | 'colorPaletteOrangeForeground3' | 'colorPaletteOrangeBorderActive' | 'colorPaletteOrangeBorder1' | 'colorPaletteOrangeBorder2';
149
+ export declare type ColorPalettePeach = 'colorPalettePeachBackground1' | 'colorPalettePeachBackground2' | 'colorPalettePeachBackground3' | 'colorPalettePeachForeground1' | 'colorPalettePeachForeground2' | 'colorPalettePeachForeground3' | 'colorPalettePeachBorderActive' | 'colorPalettePeachBorder1' | 'colorPalettePeachBorder2';
150
+ export declare type ColorPaletteMarigold = 'colorPaletteMarigoldBackground1' | 'colorPaletteMarigoldBackground2' | 'colorPaletteMarigoldBackground3' | 'colorPaletteMarigoldForeground1' | 'colorPaletteMarigoldForeground2' | 'colorPaletteMarigoldForeground3' | 'colorPaletteMarigoldBorderActive' | 'colorPaletteMarigoldBorder1' | 'colorPaletteMarigoldBorder2';
151
+ export declare type ColorPaletteYellow = 'colorPaletteYellowBackground1' | 'colorPaletteYellowBackground2' | 'colorPaletteYellowBackground3' | 'colorPaletteYellowForeground1' | 'colorPaletteYellowForeground2' | 'colorPaletteYellowForeground3' | 'colorPaletteYellowBorderActive' | 'colorPaletteYellowBorder1' | 'colorPaletteYellowBorder2';
152
+ export declare type ColorPaletteGold = 'colorPaletteGoldBackground1' | 'colorPaletteGoldBackground2' | 'colorPaletteGoldBackground3' | 'colorPaletteGoldForeground1' | 'colorPaletteGoldForeground2' | 'colorPaletteGoldForeground3' | 'colorPaletteGoldBorderActive' | 'colorPaletteGoldBorder1' | 'colorPaletteGoldBorder2';
153
+ export declare type ColorPaletteBrass = 'colorPaletteBrassBackground1' | 'colorPaletteBrassBackground2' | 'colorPaletteBrassBackground3' | 'colorPaletteBrassForeground1' | 'colorPaletteBrassForeground2' | 'colorPaletteBrassForeground3' | 'colorPaletteBrassBorderActive' | 'colorPaletteBrassBorder1' | 'colorPaletteBrassBorder2';
154
+ export declare type ColorPaletteBrown = 'colorPaletteBrownBackground1' | 'colorPaletteBrownBackground2' | 'colorPaletteBrownBackground3' | 'colorPaletteBrownForeground1' | 'colorPaletteBrownForeground2' | 'colorPaletteBrownForeground3' | 'colorPaletteBrownBorderActive' | 'colorPaletteBrownBorder1' | 'colorPaletteBrownBorder2';
155
+ export declare type ColorPaletteDarkBrown = 'colorPaletteDarkBrownBackground1' | 'colorPaletteDarkBrownBackground2' | 'colorPaletteDarkBrownBackground3' | 'colorPaletteDarkBrownForeground1' | 'colorPaletteDarkBrownForeground2' | 'colorPaletteDarkBrownForeground3' | 'colorPaletteDarkBrownBorderActive' | 'colorPaletteDarkBrownBorder1' | 'colorPaletteDarkBrownBorder2';
156
+ export declare type ColorPaletteLime = 'colorPaletteLimeBackground1' | 'colorPaletteLimeBackground2' | 'colorPaletteLimeBackground3' | 'colorPaletteLimeForeground1' | 'colorPaletteLimeForeground2' | 'colorPaletteLimeForeground3' | 'colorPaletteLimeBorderActive' | 'colorPaletteLimeBorder1' | 'colorPaletteLimeBorder2';
157
+ export declare type ColorPaletteForest = 'colorPaletteForestBackground1' | 'colorPaletteForestBackground2' | 'colorPaletteForestBackground3' | 'colorPaletteForestForeground1' | 'colorPaletteForestForeground2' | 'colorPaletteForestForeground3' | 'colorPaletteForestBorderActive' | 'colorPaletteForestBorder1' | 'colorPaletteForestBorder2';
158
+ export declare type ColorPaletteSeafoam = 'colorPaletteSeafoamBackground1' | 'colorPaletteSeafoamBackground2' | 'colorPaletteSeafoamBackground3' | 'colorPaletteSeafoamForeground1' | 'colorPaletteSeafoamForeground2' | 'colorPaletteSeafoamForeground3' | 'colorPaletteSeafoamBorderActive' | 'colorPaletteSeafoamBorder1' | 'colorPaletteSeafoamBorder2';
159
+ export declare type ColorPaletteLightGreen = 'colorPaletteLightGreenBackground1' | 'colorPaletteLightGreenBackground2' | 'colorPaletteLightGreenBackground3' | 'colorPaletteLightGreenForeground1' | 'colorPaletteLightGreenForeground2' | 'colorPaletteLightGreenForeground3' | 'colorPaletteLightGreenBorderActive' | 'colorPaletteLightGreenBorder1' | 'colorPaletteLightGreenBorder2';
160
+ export declare type ColorPaletteGreen = 'colorPaletteGreenBackground1' | 'colorPaletteGreenBackground2' | 'colorPaletteGreenBackground3' | 'colorPaletteGreenForeground1' | 'colorPaletteGreenForeground2' | 'colorPaletteGreenForeground3' | 'colorPaletteGreenBorderActive' | 'colorPaletteGreenBorder1' | 'colorPaletteGreenBorder2';
161
+ export declare type ColorPaletteDarkGreen = 'colorPaletteDarkGreenBackground1' | 'colorPaletteDarkGreenBackground2' | 'colorPaletteDarkGreenBackground3' | 'colorPaletteDarkGreenForeground1' | 'colorPaletteDarkGreenForeground2' | 'colorPaletteDarkGreenForeground3' | 'colorPaletteDarkGreenBorderActive' | 'colorPaletteDarkGreenBorder1' | 'colorPaletteDarkGreenBorder2';
162
+ export declare type ColorPaletteLightTeal = 'colorPaletteLightTealBackground1' | 'colorPaletteLightTealBackground2' | 'colorPaletteLightTealBackground3' | 'colorPaletteLightTealForeground1' | 'colorPaletteLightTealForeground2' | 'colorPaletteLightTealForeground3' | 'colorPaletteLightTealBorderActive' | 'colorPaletteLightTealBorder1' | 'colorPaletteLightTealBorder2';
163
+ export declare type ColorPaletteTeal = 'colorPaletteTealBackground1' | 'colorPaletteTealBackground2' | 'colorPaletteTealBackground3' | 'colorPaletteTealForeground1' | 'colorPaletteTealForeground2' | 'colorPaletteTealForeground3' | 'colorPaletteTealBorderActive' | 'colorPaletteTealBorder1' | 'colorPaletteTealBorder2';
164
+ export declare type ColorPaletteDarkTeal = 'colorPaletteDarkTealBackground1' | 'colorPaletteDarkTealBackground2' | 'colorPaletteDarkTealBackground3' | 'colorPaletteDarkTealForeground1' | 'colorPaletteDarkTealForeground2' | 'colorPaletteDarkTealForeground3' | 'colorPaletteDarkTealBorderActive' | 'colorPaletteDarkTealBorder1' | 'colorPaletteDarkTealBorder2';
165
+ export declare type ColorPaletteCyan = 'colorPaletteCyanBackground1' | 'colorPaletteCyanBackground2' | 'colorPaletteCyanBackground3' | 'colorPaletteCyanForeground1' | 'colorPaletteCyanForeground2' | 'colorPaletteCyanForeground3' | 'colorPaletteCyanBorderActive' | 'colorPaletteCyanBorder1' | 'colorPaletteCyanBorder2';
166
+ export declare type ColorPaletteSteel = 'colorPaletteSteelBackground1' | 'colorPaletteSteelBackground2' | 'colorPaletteSteelBackground3' | 'colorPaletteSteelForeground1' | 'colorPaletteSteelForeground2' | 'colorPaletteSteelForeground3' | 'colorPaletteSteelBorderActive' | 'colorPaletteSteelBorder1' | 'colorPaletteSteelBorder2';
167
+ export declare type ColorPaletteLightBlue = 'colorPaletteLightBlueBackground1' | 'colorPaletteLightBlueBackground2' | 'colorPaletteLightBlueBackground3' | 'colorPaletteLightBlueForeground1' | 'colorPaletteLightBlueForeground2' | 'colorPaletteLightBlueForeground3' | 'colorPaletteLightBlueBorderActive' | 'colorPaletteLightBlueBorder1' | 'colorPaletteLightBlueBorder2';
168
+ export declare type ColorPaletteBlue = 'colorPaletteBlueBackground1' | 'colorPaletteBlueBackground2' | 'colorPaletteBlueBackground3' | 'colorPaletteBlueForeground1' | 'colorPaletteBlueForeground2' | 'colorPaletteBlueForeground3' | 'colorPaletteBlueBorderActive' | 'colorPaletteBlueBorder1' | 'colorPaletteBlueBorder2';
169
+ export declare type ColorPaletteRoyalBlue = 'colorPaletteRoyalBlueBackground1' | 'colorPaletteRoyalBlueBackground2' | 'colorPaletteRoyalBlueBackground3' | 'colorPaletteRoyalBlueForeground1' | 'colorPaletteRoyalBlueForeground2' | 'colorPaletteRoyalBlueForeground3' | 'colorPaletteRoyalBlueBorderActive' | 'colorPaletteRoyalBlueBorder1' | 'colorPaletteRoyalBlueBorder2';
170
+ export declare type ColorPaletteDarkBlue = 'colorPaletteDarkBlueBackground1' | 'colorPaletteDarkBlueBackground2' | 'colorPaletteDarkBlueBackground3' | 'colorPaletteDarkBlueForeground1' | 'colorPaletteDarkBlueForeground2' | 'colorPaletteDarkBlueForeground3' | 'colorPaletteDarkBlueBorderActive' | 'colorPaletteDarkBlueBorder1' | 'colorPaletteDarkBlueBorder2';
171
+ export declare type ColorPaletteCornflower = 'colorPaletteCornflowerBackground1' | 'colorPaletteCornflowerBackground2' | 'colorPaletteCornflowerBackground3' | 'colorPaletteCornflowerForeground1' | 'colorPaletteCornflowerForeground2' | 'colorPaletteCornflowerForeground3' | 'colorPaletteCornflowerBorderActive' | 'colorPaletteCornflowerBorder1' | 'colorPaletteCornflowerBorder2';
172
+ export declare type ColorPaletteNavy = 'colorPaletteNavyBackground1' | 'colorPaletteNavyBackground2' | 'colorPaletteNavyBackground3' | 'colorPaletteNavyForeground1' | 'colorPaletteNavyForeground2' | 'colorPaletteNavyForeground3' | 'colorPaletteNavyBorderActive' | 'colorPaletteNavyBorder1' | 'colorPaletteNavyBorder2';
173
+ export declare type ColorPaletteLavender = 'colorPaletteLavenderBackground1' | 'colorPaletteLavenderBackground2' | 'colorPaletteLavenderBackground3' | 'colorPaletteLavenderForeground1' | 'colorPaletteLavenderForeground2' | 'colorPaletteLavenderForeground3' | 'colorPaletteLavenderBorderActive' | 'colorPaletteLavenderBorder1' | 'colorPaletteLavenderBorder2';
174
+ export declare type ColorPalettePurple = 'colorPalettePurpleBackground1' | 'colorPalettePurpleBackground2' | 'colorPalettePurpleBackground3' | 'colorPalettePurpleForeground1' | 'colorPalettePurpleForeground2' | 'colorPalettePurpleForeground3' | 'colorPalettePurpleBorderActive' | 'colorPalettePurpleBorder1' | 'colorPalettePurpleBorder2';
175
+ export declare type ColorPaletteDarkPurple = 'colorPaletteDarkPurpleBackground1' | 'colorPaletteDarkPurpleBackground2' | 'colorPaletteDarkPurpleBackground3' | 'colorPaletteDarkPurpleForeground1' | 'colorPaletteDarkPurpleForeground2' | 'colorPaletteDarkPurpleForeground3' | 'colorPaletteDarkPurpleBorderActive' | 'colorPaletteDarkPurpleBorder1' | 'colorPaletteDarkPurpleBorder2';
176
+ export declare type ColorPaletteOrchid = 'colorPaletteOrchidBackground1' | 'colorPaletteOrchidBackground2' | 'colorPaletteOrchidBackground3' | 'colorPaletteOrchidForeground1' | 'colorPaletteOrchidForeground2' | 'colorPaletteOrchidForeground3' | 'colorPaletteOrchidBorderActive' | 'colorPaletteOrchidBorder1' | 'colorPaletteOrchidBorder2';
177
+ export declare type ColorPaletteGrape = 'colorPaletteGrapeBackground1' | 'colorPaletteGrapeBackground2' | 'colorPaletteGrapeBackground3' | 'colorPaletteGrapeForeground1' | 'colorPaletteGrapeForeground2' | 'colorPaletteGrapeForeground3' | 'colorPaletteGrapeBorderActive' | 'colorPaletteGrapeBorder1' | 'colorPaletteGrapeBorder2';
178
+ export declare type ColorPaletteBerry = 'colorPaletteBerryBackground1' | 'colorPaletteBerryBackground2' | 'colorPaletteBerryBackground3' | 'colorPaletteBerryForeground1' | 'colorPaletteBerryForeground2' | 'colorPaletteBerryForeground3' | 'colorPaletteBerryBorderActive' | 'colorPaletteBerryBorder1' | 'colorPaletteBerryBorder2';
179
+ export declare type ColorPaletteLilac = 'colorPaletteLilacBackground1' | 'colorPaletteLilacBackground2' | 'colorPaletteLilacBackground3' | 'colorPaletteLilacForeground1' | 'colorPaletteLilacForeground2' | 'colorPaletteLilacForeground3' | 'colorPaletteLilacBorderActive' | 'colorPaletteLilacBorder1' | 'colorPaletteLilacBorder2';
180
+ export declare type ColorPalettePink = 'colorPalettePinkBackground1' | 'colorPalettePinkBackground2' | 'colorPalettePinkBackground3' | 'colorPalettePinkForeground1' | 'colorPalettePinkForeground2' | 'colorPalettePinkForeground3' | 'colorPalettePinkBorderActive' | 'colorPalettePinkBorder1' | 'colorPalettePinkBorder2';
181
+ export declare type ColorPaletteHotPink = 'colorPaletteHotPinkBackground1' | 'colorPaletteHotPinkBackground2' | 'colorPaletteHotPinkBackground3' | 'colorPaletteHotPinkForeground1' | 'colorPaletteHotPinkForeground2' | 'colorPaletteHotPinkForeground3' | 'colorPaletteHotPinkBorderActive' | 'colorPaletteHotPinkBorder1' | 'colorPaletteHotPinkBorder2';
182
+ export declare type ColorPaletteMagenta = 'colorPaletteMagentaBackground1' | 'colorPaletteMagentaBackground2' | 'colorPaletteMagentaBackground3' | 'colorPaletteMagentaForeground1' | 'colorPaletteMagentaForeground2' | 'colorPaletteMagentaForeground3' | 'colorPaletteMagentaBorderActive' | 'colorPaletteMagentaBorder1' | 'colorPaletteMagentaBorder2';
183
+ export declare type ColorPalettePlum = 'colorPalettePlumBackground1' | 'colorPalettePlumBackground2' | 'colorPalettePlumBackground3' | 'colorPalettePlumForeground1' | 'colorPalettePlumForeground2' | 'colorPalettePlumForeground3' | 'colorPalettePlumBorderActive' | 'colorPalettePlumBorder1' | 'colorPalettePlumBorder2';
184
+ export declare type ColorPaletteBeige = 'colorPaletteBeigeBackground1' | 'colorPaletteBeigeBackground2' | 'colorPaletteBeigeBackground3' | 'colorPaletteBeigeForeground1' | 'colorPaletteBeigeForeground2' | 'colorPaletteBeigeForeground3' | 'colorPaletteBeigeBorderActive' | 'colorPaletteBeigeBorder1' | 'colorPaletteBeigeBorder2';
185
+ export declare type ColorPaletteMink = 'colorPaletteMinkBackground1' | 'colorPaletteMinkBackground2' | 'colorPaletteMinkBackground3' | 'colorPaletteMinkForeground1' | 'colorPaletteMinkForeground2' | 'colorPaletteMinkForeground3' | 'colorPaletteMinkBorderActive' | 'colorPaletteMinkBorder1' | 'colorPaletteMinkBorder2';
186
+ export declare type ColorPaletteSilver = 'colorPaletteSilverBackground1' | 'colorPaletteSilverBackground2' | 'colorPaletteSilverBackground3' | 'colorPaletteSilverForeground1' | 'colorPaletteSilverForeground2' | 'colorPaletteSilverForeground3' | 'colorPaletteSilverBorderActive' | 'colorPaletteSilverBorder1' | 'colorPaletteSilverBorder2';
187
+ export declare type ColorPalettePlatinum = 'colorPalettePlatinumBackground1' | 'colorPalettePlatinumBackground2' | 'colorPalettePlatinumBackground3' | 'colorPalettePlatinumForeground1' | 'colorPalettePlatinumForeground2' | 'colorPalettePlatinumForeground3' | 'colorPalettePlatinumBorderActive' | 'colorPalettePlatinumBorder1' | 'colorPalettePlatinumBorder2';
188
+ export declare type ColorPaletteAnchor = 'colorPaletteAnchorBackground1' | 'colorPaletteAnchorBackground2' | 'colorPaletteAnchorBackground3' | 'colorPaletteAnchorForeground1' | 'colorPaletteAnchorForeground2' | 'colorPaletteAnchorForeground3' | 'colorPaletteAnchorBorderActive' | 'colorPaletteAnchorBorder1' | 'colorPaletteAnchorBorder2';
189
+ export declare type ColorPaletteCharcoal = 'colorPaletteCharcoalBackground1' | 'colorPaletteCharcoalBackground2' | 'colorPaletteCharcoalBackground3' | 'colorPaletteCharcoalForeground1' | 'colorPaletteCharcoalForeground2' | 'colorPaletteCharcoalForeground3' | 'colorPaletteCharcoalBorderActive' | 'colorPaletteCharcoalBorder1' | 'colorPaletteCharcoalBorder2';
158
190
  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>;
159
191
  /**
160
192
  * Possible color variant values
@@ -173,9 +205,8 @@ export declare type ColorVariants = {
173
205
  tint50: string;
174
206
  tint60: string;
175
207
  };
176
- export declare type BrandVariants = ColorVariants & {
177
- shade60: string;
178
- };
208
+ export declare type Brands = 10 | 20 | 30 | 40 | 50 | 60 | 70 | 80 | 90 | 100 | 110 | 120 | 130 | 140 | 150 | 160;
209
+ export declare type BrandVariants = Record<Brands, string>;
179
210
  /**
180
211
  * All the global shared colors and their shade/tint variants
181
212
  */
@@ -296,32 +327,15 @@ export declare type ShadowTokens = {
296
327
  shadow28: string;
297
328
  shadow64: string;
298
329
  };
299
- export declare type GhostColorTokens = {
300
- ghostBackground: string;
301
- ghostBackgroundHover: string;
302
- ghostBackgroundPressed: string;
303
- ghostBackgroundSelected: string;
304
- };
305
- export declare type TransparentColorTokens = {
306
- transparentBackground: string;
307
- transparentBackgroundHover: string;
308
- transparentBackgroundPressed: string;
309
- transparentBackgroundSelected: string;
310
- };
311
- export declare type BackgroundColorTokens = {
312
- background: string;
313
- backgroundHover: string;
314
- backgroundPressed: string;
315
- backgroundSelected: string;
316
- };
317
- export declare type BrandColorTokens = {
318
- brandBackground: string;
319
- brandBackgroundHover: string;
320
- brandBackgroundPressed: string;
321
- brandBackgroundSelected: string;
322
- brandBackgroundStatic: string;
330
+ export declare type ShadowBrandTokens = {
331
+ shadow2Brand: string;
332
+ shadow4Brand: string;
333
+ shadow8Brand: string;
334
+ shadow16Brand: string;
335
+ shadow28Brand: string;
336
+ shadow64Brand: string;
323
337
  };
324
338
  export declare type Greys = 0 | 2 | 4 | 6 | 8 | 10 | 12 | 14 | 16 | 18 | 20 | 22 | 24 | 26 | 28 | 30 | 32 | 34 | 36 | 38 | 40 | 42 | 44 | 46 | 48 | 50 | 52 | 54 | 56 | 58 | 60 | 62 | 64 | 66 | 68 | 70 | 72 | 74 | 76 | 78 | 80 | 82 | 84 | 86 | 88 | 90 | 92 | 94 | 96 | 98 | 100;
325
339
  export declare type AlphaColors = 5 | 10 | 20 | 30 | 40 | 50 | 60 | 70 | 80 | 90;
326
- export declare type Theme = FontSizeTokens & LineHeightTokens & BorderRadiusTokens & StrokeWidthTokens & ShadowTokens & FontFamilyTokens & FontWeightTokens & ColorPaletteTokens & ColorTokens;
340
+ export declare type Theme = FontSizeTokens & LineHeightTokens & BorderRadiusTokens & StrokeWidthTokens & ShadowTokens & ShadowBrandTokens & FontFamilyTokens & FontWeightTokens & ColorPaletteTokens & ColorTokens;
327
341
  export declare type PartialTheme = Partial<Theme>;
@@ -11,7 +11,8 @@ export const createDarkTheme = brand => {
11
11
  ...strokeWidths,
12
12
  ...colorTokens,
13
13
  ...colorPaletteTokens,
14
- ...createShadowTokens(colorTokens.colorNeutralShadowAmbient, colorTokens.colorNeutralShadowKey)
14
+ ...createShadowTokens(colorTokens.colorNeutralShadowAmbient, colorTokens.colorNeutralShadowKey),
15
+ ...createShadowTokens(colorTokens.colorBrandShadowAmbient, colorTokens.colorBrandShadowKey, 'Brand')
15
16
  };
16
17
  };
17
18
  //# sourceMappingURL=createDarkTheme.js.map
@@ -1 +1 @@
1
- {"version":3,"sources":["../../src/utils/createDarkTheme.ts"],"names":[],"mappings":"AAAA,SAAS,kBAAT,EAA6B,mBAA7B,QAAwD,eAAxD;AACA,SAAS,YAAT,EAAuB,SAAvB,EAAkC,WAAlC,EAA+C,YAA/C,EAA6D,YAA7D,EAA2E,WAA3E,QAA8F,iBAA9F;AACA,SAAS,kBAAT,QAAmC,WAAnC;AAGA,OAAO,MAAM,eAAe,GAAoC,KAAK,IAAG;AACtE,QAAM,WAAW,GAAG,mBAAmB,CAAC,KAAD,CAAvC;AAEA,SAAO,EACL,GAAG,YADE;AAEL,OAAG,SAFE;AAGL,OAAG,WAHE;AAIL,OAAG,YAJE;AAKL,OAAG,WALE;AAML,OAAG,YANE;AAQL,OAAG,WARE;AASL,OAAG,kBATE;AAWL,OAAG,kBAAkB,CAAC,WAAW,CAAC,yBAAb,EAAwC,WAAW,CAAC,qBAApD;AAXhB,GAAP;AAaD,CAhBM","sourceRoot":""}
1
+ {"version":3,"sources":["../../src/utils/createDarkTheme.ts"],"names":[],"mappings":"AAAA,SAAS,kBAAT,EAA6B,mBAA7B,QAAwD,eAAxD;AACA,SAAS,YAAT,EAAuB,SAAvB,EAAkC,WAAlC,EAA+C,YAA/C,EAA6D,YAA7D,EAA2E,WAA3E,QAA8F,iBAA9F;AACA,SAAS,kBAAT,QAAmC,WAAnC;AAGA,OAAO,MAAM,eAAe,GAAoC,KAAK,IAAG;AACtE,QAAM,WAAW,GAAG,mBAAmB,CAAC,KAAD,CAAvC;AAEA,SAAO,EACL,GAAG,YADE;AAEL,OAAG,SAFE;AAGL,OAAG,WAHE;AAIL,OAAG,YAJE;AAKL,OAAG,WALE;AAML,OAAG,YANE;AAQL,OAAG,WARE;AASL,OAAG,kBATE;AAWL,OAAG,kBAAkB,CAAC,WAAW,CAAC,yBAAb,EAAwC,WAAW,CAAC,qBAApD,CAXhB;AAYL,OAAG,kBAAkB,CAAC,WAAW,CAAC,uBAAb,EAAsC,WAAW,CAAC,mBAAlD,EAAuE,OAAvE;AAZhB,GAAP;AAcD,CAjBM","sourceRoot":""}
@@ -11,7 +11,8 @@ export const createHighContrastTheme = () => {
11
11
  ...strokeWidths,
12
12
  ...colorTokens,
13
13
  ...colorPaletteTokens,
14
- ...createShadowTokens(colorTokens.colorNeutralShadowAmbient, colorTokens.colorNeutralShadowKey)
14
+ ...createShadowTokens(colorTokens.colorNeutralShadowAmbient, colorTokens.colorNeutralShadowKey),
15
+ ...createShadowTokens(colorTokens.colorBrandShadowAmbient, colorTokens.colorBrandShadowKey, 'Brand')
15
16
  };
16
17
  };
17
18
  //# sourceMappingURL=createHighContrastTheme.js.map
@@ -1 +1 @@
1
- {"version":3,"sources":["../../src/utils/createHighContrastTheme.ts"],"names":[],"mappings":"AAAA,SAAS,kBAAT,EAA6B,mBAA7B,QAAwD,uBAAxD;AACA,SAAS,YAAT,EAAuB,SAAvB,EAAkC,WAAlC,EAA+C,YAA/C,EAA6D,YAA7D,EAA2E,WAA3E,QAA8F,iBAA9F;AACA,SAAS,kBAAT,QAAmC,WAAnC;AAGA,OAAO,MAAM,uBAAuB,GAAG,MAAY;AACjD,QAAM,WAAW,GAAG,mBAAmB,EAAvC;AAEA,SAAO,EACL,GAAG,YADE;AAEL,OAAG,SAFE;AAGL,OAAG,WAHE;AAIL,OAAG,YAJE;AAKL,OAAG,WALE;AAML,OAAG,YANE;AAQL,OAAG,WARE;AASL,OAAG,kBATE;AAWL,OAAG,kBAAkB,CAAC,WAAW,CAAC,yBAAb,EAAwC,WAAW,CAAC,qBAApD;AAXhB,GAAP;AAaD,CAhBM","sourceRoot":""}
1
+ {"version":3,"sources":["../../src/utils/createHighContrastTheme.ts"],"names":[],"mappings":"AAAA,SAAS,kBAAT,EAA6B,mBAA7B,QAAwD,uBAAxD;AACA,SAAS,YAAT,EAAuB,SAAvB,EAAkC,WAAlC,EAA+C,YAA/C,EAA6D,YAA7D,EAA2E,WAA3E,QAA8F,iBAA9F;AACA,SAAS,kBAAT,QAAmC,WAAnC;AAGA,OAAO,MAAM,uBAAuB,GAAG,MAAY;AACjD,QAAM,WAAW,GAAG,mBAAmB,EAAvC;AAEA,SAAO,EACL,GAAG,YADE;AAEL,OAAG,SAFE;AAGL,OAAG,WAHE;AAIL,OAAG,YAJE;AAKL,OAAG,WALE;AAML,OAAG,YANE;AAQL,OAAG,WARE;AASL,OAAG,kBATE;AAWL,OAAG,kBAAkB,CAAC,WAAW,CAAC,yBAAb,EAAwC,WAAW,CAAC,qBAApD,CAXhB;AAYL,OAAG,kBAAkB,CAAC,WAAW,CAAC,uBAAb,EAAsC,WAAW,CAAC,mBAAlD,EAAuE,OAAvE;AAZhB,GAAP;AAcD,CAjBM","sourceRoot":""}
@@ -11,7 +11,8 @@ export const createLightTheme = brand => {
11
11
  ...strokeWidths,
12
12
  ...colorTokens,
13
13
  ...colorPaletteTokens,
14
- ...createShadowTokens(colorTokens.colorNeutralShadowAmbient, colorTokens.colorNeutralShadowKey)
14
+ ...createShadowTokens(colorTokens.colorNeutralShadowAmbient, colorTokens.colorNeutralShadowKey),
15
+ ...createShadowTokens(colorTokens.colorBrandShadowAmbient, colorTokens.colorBrandShadowKey, 'Brand')
15
16
  };
16
17
  };
17
18
  //# sourceMappingURL=createLightTheme.js.map
@@ -1 +1 @@
1
- {"version":3,"sources":["../../src/utils/createLightTheme.ts"],"names":[],"mappings":"AAAA,SAAS,kBAAT,EAA6B,mBAA7B,QAAwD,gBAAxD;AACA,SAAS,YAAT,EAAuB,SAAvB,EAAkC,WAAlC,EAA+C,YAA/C,EAA6D,YAA7D,EAA2E,WAA3E,QAA8F,iBAA9F;AACA,SAAS,kBAAT,QAAmC,WAAnC;AAGA,OAAO,MAAM,gBAAgB,GAAoC,KAAK,IAAG;AACvE,QAAM,WAAW,GAAG,mBAAmB,CAAC,KAAD,CAAvC;AAEA,SAAO,EACL,GAAG,YADE;AAEL,OAAG,SAFE;AAGL,OAAG,WAHE;AAIL,OAAG,YAJE;AAKL,OAAG,WALE;AAML,OAAG,YANE;AAQL,OAAG,WARE;AASL,OAAG,kBATE;AAWL,OAAG,kBAAkB,CAAC,WAAW,CAAC,yBAAb,EAAwC,WAAW,CAAC,qBAApD;AAXhB,GAAP;AAaD,CAhBM","sourceRoot":""}
1
+ {"version":3,"sources":["../../src/utils/createLightTheme.ts"],"names":[],"mappings":"AAAA,SAAS,kBAAT,EAA6B,mBAA7B,QAAwD,gBAAxD;AACA,SAAS,YAAT,EAAuB,SAAvB,EAAkC,WAAlC,EAA+C,YAA/C,EAA6D,YAA7D,EAA2E,WAA3E,QAA8F,iBAA9F;AACA,SAAS,kBAAT,QAAmC,WAAnC;AAGA,OAAO,MAAM,gBAAgB,GAAoC,KAAK,IAAG;AACvE,QAAM,WAAW,GAAG,mBAAmB,CAAC,KAAD,CAAvC;AAEA,SAAO,EACL,GAAG,YADE;AAEL,OAAG,SAFE;AAGL,OAAG,WAHE;AAIL,OAAG,YAJE;AAKL,OAAG,WALE;AAML,OAAG,YANE;AAQL,OAAG,WARE;AASL,OAAG,kBATE;AAWL,OAAG,kBAAkB,CAAC,WAAW,CAAC,yBAAb,EAAwC,WAAW,CAAC,qBAApD,CAXhB;AAYL,OAAG,kBAAkB,CAAC,WAAW,CAAC,uBAAb,EAAsC,WAAW,CAAC,mBAAlD,EAAuE,OAAvE;AAZhB,GAAP;AAcD,CAjBM","sourceRoot":""}
@@ -11,7 +11,8 @@ export const createTeamsDarkTheme = brand => {
11
11
  ...strokeWidths,
12
12
  ...colorTokens,
13
13
  ...colorPaletteTokens,
14
- ...createShadowTokens(colorTokens.colorNeutralShadowAmbient, colorTokens.colorNeutralShadowKey)
14
+ ...createShadowTokens(colorTokens.colorNeutralShadowAmbient, colorTokens.colorNeutralShadowKey),
15
+ ...createShadowTokens(colorTokens.colorBrandShadowAmbient, colorTokens.colorBrandShadowKey, 'Brand')
15
16
  };
16
17
  };
17
18
  //# sourceMappingURL=createTeamsDarkTheme.js.map
@@ -1 +1 @@
1
- {"version":3,"sources":["../../src/utils/createTeamsDarkTheme.ts"],"names":[],"mappings":"AAAA,SAAS,kBAAT,EAA6B,mBAA7B,QAAwD,oBAAxD;AACA,SAAS,YAAT,EAAuB,SAAvB,EAAkC,WAAlC,EAA+C,YAA/C,EAA6D,YAA7D,EAA2E,WAA3E,QAA8F,iBAA9F;AACA,SAAS,kBAAT,QAAmC,WAAnC;AAGA,OAAO,MAAM,oBAAoB,GAAoC,KAAK,IAAG;AAC3E,QAAM,WAAW,GAAG,mBAAmB,CAAC,KAAD,CAAvC;AAEA,SAAO,EACL,GAAG,YADE;AAEL,OAAG,SAFE;AAGL,OAAG,WAHE;AAIL,OAAG,YAJE;AAKL,OAAG,WALE;AAML,OAAG,YANE;AAQL,OAAG,WARE;AASL,OAAG,kBATE;AAWL,OAAG,kBAAkB,CAAC,WAAW,CAAC,yBAAb,EAAwC,WAAW,CAAC,qBAApD;AAXhB,GAAP;AAaD,CAhBM","sourceRoot":""}
1
+ {"version":3,"sources":["../../src/utils/createTeamsDarkTheme.ts"],"names":[],"mappings":"AAAA,SAAS,kBAAT,EAA6B,mBAA7B,QAAwD,oBAAxD;AACA,SAAS,YAAT,EAAuB,SAAvB,EAAkC,WAAlC,EAA+C,YAA/C,EAA6D,YAA7D,EAA2E,WAA3E,QAA8F,iBAA9F;AACA,SAAS,kBAAT,QAAmC,WAAnC;AAGA,OAAO,MAAM,oBAAoB,GAAoC,KAAK,IAAG;AAC3E,QAAM,WAAW,GAAG,mBAAmB,CAAC,KAAD,CAAvC;AAEA,SAAO,EACL,GAAG,YADE;AAEL,OAAG,SAFE;AAGL,OAAG,WAHE;AAIL,OAAG,YAJE;AAKL,OAAG,WALE;AAML,OAAG,YANE;AAQL,OAAG,WARE;AASL,OAAG,kBATE;AAWL,OAAG,kBAAkB,CAAC,WAAW,CAAC,yBAAb,EAAwC,WAAW,CAAC,qBAApD,CAXhB;AAYL,OAAG,kBAAkB,CAAC,WAAW,CAAC,uBAAb,EAAsC,WAAW,CAAC,mBAAlD,EAAuE,OAAvE;AAZhB,GAAP;AAcD,CAjBM","sourceRoot":""}
@@ -3,4 +3,3 @@ export * from './createDarkTheme';
3
3
  export * from './createTeamsDarkTheme';
4
4
  export * from './createHighContrastTheme';
5
5
  export { mergeThemes } from './mergeThemes';
6
- export * from './themeToCSSVariables';
@@ -3,5 +3,4 @@ export * from './createDarkTheme';
3
3
  export * from './createTeamsDarkTheme';
4
4
  export * from './createHighContrastTheme';
5
5
  export { mergeThemes } from './mergeThemes';
6
- export * from './themeToCSSVariables';
7
6
  //# sourceMappingURL=index.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/utils/index.ts"],"names":[],"mappings":"AAAA,cAAc,oBAAoB,CAAC;AACnC,cAAc,mBAAmB,CAAC;AAClC,cAAc,wBAAwB,CAAC;AACvC,cAAc,2BAA2B,CAAC;AAE1C,OAAO,EAAE,WAAW,EAAE,MAAM,eAAe,CAAC;AAC5C,cAAc,uBAAuB,CAAC"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/utils/index.ts"],"names":[],"mappings":"AAAA,cAAc,oBAAoB,CAAC;AACnC,cAAc,mBAAmB,CAAC;AAClC,cAAc,wBAAwB,CAAC;AACvC,cAAc,2BAA2B,CAAC;AAE1C,OAAO,EAAE,WAAW,EAAE,MAAM,eAAe,CAAC"}
@@ -1,2 +1,3 @@
1
- import type { ShadowTokens } from '../types';
1
+ import type { ShadowBrandTokens, ShadowTokens } from '../types';
2
+ export declare function createShadowTokens(ambientColor: string, keyColor: string, tokenSuffix: 'Brand'): ShadowBrandTokens;
2
3
  export declare function createShadowTokens(ambientColor: string, keyColor: string): ShadowTokens;
@@ -1,11 +1,11 @@
1
- export function createShadowTokens(ambientColor, keyColor) {
1
+ export function createShadowTokens(ambientColor, keyColor, tokenSuffix = '') {
2
2
  return {
3
- shadow2: `0 0 2px ${ambientColor}, 0 1px 2px ${keyColor}`,
4
- shadow4: `0 0 2px ${ambientColor}, 0 2px 4px ${keyColor}`,
5
- shadow8: `0 0 2px ${ambientColor}, 0 4px 8px ${keyColor}`,
6
- shadow16: `0 0 2px ${ambientColor}, 0 6px 16px ${keyColor}`,
7
- shadow28: `0 0 8px ${ambientColor}, 0 14px 28px ${keyColor}`,
8
- shadow64: `0 0 8px ${ambientColor}, 0 32px 64px ${keyColor}`
3
+ [`shadow2${tokenSuffix}`]: `0 0 2px ${ambientColor}, 0 1px 2px ${keyColor}`,
4
+ [`shadow4${tokenSuffix}`]: `0 0 2px ${ambientColor}, 0 2px 4px ${keyColor}`,
5
+ [`shadow8${tokenSuffix}`]: `0 0 2px ${ambientColor}, 0 4px 8px ${keyColor}`,
6
+ [`shadow16${tokenSuffix}`]: `0 0 2px ${ambientColor}, 0 8px 16px ${keyColor}`,
7
+ [`shadow28${tokenSuffix}`]: `0 0 8px ${ambientColor}, 0 14px 28px ${keyColor}`,
8
+ [`shadow64${tokenSuffix}`]: `0 0 8px ${ambientColor}, 0 32px 64px ${keyColor}`
9
9
  };
10
10
  }
11
11
  //# sourceMappingURL=shadows.js.map
@@ -1 +1 @@
1
- {"version":3,"sources":["../../src/utils/shadows.ts"],"names":[],"mappings":"AAEA,OAAM,SAAU,kBAAV,CAA6B,YAA7B,EAAmD,QAAnD,EAAmE;AACvE,SAAO;AACL,IAAA,OAAO,EAAE,WAAW,YAAY,eAAe,QAAQ,EADlD;AAEL,IAAA,OAAO,EAAE,WAAW,YAAY,eAAe,QAAQ,EAFlD;AAGL,IAAA,OAAO,EAAE,WAAW,YAAY,eAAe,QAAQ,EAHlD;AAIL,IAAA,QAAQ,EAAE,WAAW,YAAY,gBAAgB,QAAQ,EAJpD;AAKL,IAAA,QAAQ,EAAE,WAAW,YAAY,iBAAiB,QAAQ,EALrD;AAML,IAAA,QAAQ,EAAE,WAAW,YAAY,iBAAiB,QAAQ;AANrD,GAAP;AAQD","sourceRoot":""}
1
+ {"version":3,"sources":["../../src/utils/shadows.ts"],"names":[],"mappings":"AAKA,OAAM,SAAU,kBAAV,CAA6B,YAA7B,EAAmD,QAAnD,EAAqE,WAAA,GAA4B,EAAjG,EAAmG;AACvG,SAAO;AACL,KAAC,UAAU,WAAW,EAAtB,GAA2B,WAAW,YAAY,eAAe,QAAQ,EADpE;AAEL,KAAC,UAAU,WAAW,EAAtB,GAA2B,WAAW,YAAY,eAAe,QAAQ,EAFpE;AAGL,KAAC,UAAU,WAAW,EAAtB,GAA2B,WAAW,YAAY,eAAe,QAAQ,EAHpE;AAIL,KAAC,WAAW,WAAW,EAAvB,GAA4B,WAAW,YAAY,gBAAgB,QAAQ,EAJtE;AAKL,KAAC,WAAW,WAAW,EAAvB,GAA4B,WAAW,YAAY,iBAAiB,QAAQ,EALvE;AAML,KAAC,WAAW,WAAW,EAAvB,GAA4B,WAAW,YAAY,iBAAiB,QAAQ;AANvE,GAAP;AAQD","sourceRoot":""}
@@ -9,37 +9,51 @@ const colors_1 = /*#__PURE__*/require("../global/colors");
9
9
 
10
10
  const generateColorTokens = brand => ({
11
11
  colorNeutralForeground1: colors_1.white,
12
+ colorNeutralForeground1Hover: colors_1.white,
13
+ colorNeutralForeground1Pressed: colors_1.white,
14
+ colorNeutralForeground1Selected: colors_1.white,
12
15
  colorNeutralForeground2: colors_1.grey[84],
13
16
  colorNeutralForeground2Hover: colors_1.white,
14
17
  colorNeutralForeground2Pressed: colors_1.white,
15
18
  colorNeutralForeground2Selected: colors_1.white,
16
- colorNeutralForeground2BrandHover: brand.tint20,
17
- colorNeutralForeground2BrandPressed: brand.tint10,
18
- colorNeutralForeground2BrandSelected: brand.tint20,
19
+ colorNeutralForeground2BrandHover: brand[100],
20
+ colorNeutralForeground2BrandPressed: brand[90],
21
+ colorNeutralForeground2BrandSelected: brand[100],
19
22
  colorNeutralForeground3: colors_1.grey[68],
20
23
  colorNeutralForeground3Hover: colors_1.grey[84],
21
24
  colorNeutralForeground3Pressed: colors_1.grey[84],
22
25
  colorNeutralForeground3Selected: colors_1.grey[84],
23
- colorNeutralForeground3BrandHover: brand.tint20,
24
- colorNeutralForeground3BrandPressed: brand.tint10,
25
- colorNeutralForeground3BrandSelected: brand.tint20,
26
+ colorNeutralForeground3BrandHover: brand[100],
27
+ colorNeutralForeground3BrandPressed: brand[90],
28
+ colorNeutralForeground3BrandSelected: brand[100],
26
29
  colorNeutralForeground4: colors_1.grey[60],
27
30
  colorNeutralForegroundDisabled: colors_1.grey[36],
28
- colorBrandForegroundLink: brand.tint10,
29
- colorBrandForegroundLinkHover: brand.tint30,
30
- colorBrandForegroundLinkPressed: brand.tint20,
31
- colorBrandForegroundLinkSelected: brand.tint10,
32
- colorCompoundBrandForeground1: brand.tint10,
33
- colorCompoundBrandForeground1Hover: brand.tint20,
34
- colorCompoundBrandForeground1Pressed: brand.primary,
35
- colorBrandForeground1: brand.tint20,
36
- colorBrandForeground2: brand.tint30,
37
- colorNeutralForegroundInverted: colors_1.grey[14],
31
+ colorNeutralForegroundInvertedDisabled: colors_1.whiteAlpha[40],
32
+ colorBrandForegroundLink: brand[90],
33
+ colorBrandForegroundLinkHover: brand[110],
34
+ colorBrandForegroundLinkPressed: brand[100],
35
+ colorBrandForegroundLinkSelected: brand[90],
36
+ colorCompoundBrandForeground1: brand[90],
37
+ colorCompoundBrandForeground1Hover: brand[100],
38
+ colorCompoundBrandForeground1Pressed: brand[80],
39
+ colorBrandForeground1: brand[100],
40
+ colorBrandForeground2: brand[110],
41
+ colorNeutralForegroundInverted: colors_1.white,
42
+ colorNeutralForegroundInvertedHover: colors_1.white,
43
+ colorNeutralForegroundInvertedPressed: colors_1.white,
44
+ colorNeutralForegroundInvertedSelected: colors_1.white,
38
45
  colorNeutralForegroundOnBrand: colors_1.white,
39
46
  colorNeutralForegroundInvertedLink: colors_1.white,
40
47
  colorNeutralForegroundInvertedLinkHover: colors_1.white,
41
48
  colorNeutralForegroundInvertedLinkPressed: colors_1.white,
42
49
  colorNeutralForegroundInvertedLinkSelected: colors_1.white,
50
+ colorBrandForegroundInverted: brand[100],
51
+ colorBrandForegroundInvertedHover: brand[110],
52
+ colorBrandForegroundInvertedPressed: brand[100],
53
+ colorBrandForegroundOnLight: brand[80],
54
+ colorBrandForegroundOnLightHover: brand[70],
55
+ colorBrandForegroundOnLightPressed: brand[50],
56
+ colorBrandForegroundOnLightSelected: brand[60],
43
57
  colorNeutralBackground1: colors_1.grey[16],
44
58
  colorNeutralBackground1Hover: colors_1.grey[24],
45
59
  colorNeutralBackground1Pressed: colors_1.grey[12],
@@ -61,43 +75,61 @@ const generateColorTokens = brand => ({
61
75
  colorNeutralBackground5Pressed: colors_1.grey[2],
62
76
  colorNeutralBackground5Selected: colors_1.grey[6],
63
77
  colorNeutralBackground6: colors_1.grey[20],
64
- colorNeutralBackgroundInverted: colors_1.white,
78
+ colorNeutralBackgroundInverted: colors_1.grey[24],
65
79
  colorSubtleBackground: 'transparent',
66
80
  colorSubtleBackgroundHover: colors_1.grey[22],
67
81
  colorSubtleBackgroundPressed: colors_1.grey[18],
68
82
  colorSubtleBackgroundSelected: colors_1.grey[20],
83
+ colorSubtleBackgroundLightAlphaHover: colors_1.whiteAlpha[10],
84
+ colorSubtleBackgroundLightAlphaPressed: colors_1.whiteAlpha[5],
85
+ colorSubtleBackgroundLightAlphaSelected: 'transparent',
86
+ colorSubtleBackgroundInverted: 'transparent',
87
+ colorSubtleBackgroundInvertedHover: colors_1.blackAlpha[10],
88
+ colorSubtleBackgroundInvertedPressed: colors_1.blackAlpha[30],
89
+ colorSubtleBackgroundInvertedSelected: colors_1.blackAlpha[20],
69
90
  colorTransparentBackground: 'transparent',
70
91
  colorTransparentBackgroundHover: 'transparent',
71
92
  colorTransparentBackgroundPressed: 'transparent',
72
93
  colorTransparentBackgroundSelected: 'transparent',
73
94
  colorNeutralBackgroundDisabled: colors_1.grey[8],
95
+ colorNeutralBackgroundInvertedDisabled: colors_1.whiteAlpha[10],
74
96
  colorNeutralStencil1: colors_1.grey[20],
75
97
  colorNeutralStencil2: colors_1.grey[34],
76
- colorBrandBackground: brand.shade10,
77
- colorBrandBackgroundHover: brand.primary,
78
- colorBrandBackgroundPressed: brand.shade40,
79
- colorBrandBackgroundSelected: brand.shade20,
80
- colorCompoundBrandBackground: brand.tint10,
81
- colorCompoundBrandBackgroundHover: brand.tint20,
82
- colorCompoundBrandBackgroundPressed: brand.primary,
83
- colorBrandBackgroundStatic: brand.primary,
84
- colorBrandBackground2: brand.shade40,
98
+ colorBrandBackground: brand[70],
99
+ colorBrandBackgroundHover: brand[80],
100
+ colorBrandBackgroundPressed: brand[40],
101
+ colorBrandBackgroundSelected: brand[60],
102
+ colorCompoundBrandBackground: brand[90],
103
+ colorCompoundBrandBackgroundHover: brand[100],
104
+ colorCompoundBrandBackgroundPressed: brand[80],
105
+ colorBrandBackgroundStatic: brand[80],
106
+ colorBrandBackground2: brand[40],
107
+ colorBrandBackgroundInverted: colors_1.white,
108
+ colorBrandBackgroundInvertedHover: brand[160],
109
+ colorBrandBackgroundInvertedPressed: brand[140],
110
+ colorBrandBackgroundInvertedSelected: brand[150],
85
111
  colorNeutralStrokeAccessible: colors_1.grey[68],
86
112
  colorNeutralStrokeAccessibleHover: colors_1.grey[74],
87
113
  colorNeutralStrokeAccessiblePressed: colors_1.grey[70],
88
- colorNeutralStrokeAccessibleSelected: brand.tint20,
114
+ colorNeutralStrokeAccessibleSelected: brand[100],
89
115
  colorNeutralStroke1: colors_1.grey[40],
90
116
  colorNeutralStroke1Hover: colors_1.grey[46],
91
117
  colorNeutralStroke1Pressed: colors_1.grey[42],
92
118
  colorNeutralStroke1Selected: colors_1.grey[44],
93
119
  colorNeutralStroke2: colors_1.grey[32],
94
120
  colorNeutralStroke3: colors_1.grey[24],
95
- colorBrandStroke1: brand.tint10,
96
- colorBrandStroke2: brand.shade30,
97
- colorCompoundBrandStroke: brand.tint10,
98
- colorCompoundBrandStrokeHover: brand.tint20,
99
- colorCompoundBrandStrokePressed: brand.primary,
121
+ colorNeutralStrokeOnBrand: colors_1.grey[16],
122
+ colorNeutralStrokeOnBrand2: colors_1.white,
123
+ colorNeutralStrokeOnBrand2Hover: colors_1.white,
124
+ colorNeutralStrokeOnBrand2Pressed: colors_1.white,
125
+ colorNeutralStrokeOnBrand2Selected: colors_1.white,
126
+ colorBrandStroke1: brand[90],
127
+ colorBrandStroke2: brand[50],
128
+ colorCompoundBrandStroke: brand[90],
129
+ colorCompoundBrandStrokeHover: brand[100],
130
+ colorCompoundBrandStrokePressed: brand[80],
100
131
  colorNeutralStrokeDisabled: colors_1.grey[26],
132
+ colorNeutralStrokeInvertedDisabled: colors_1.whiteAlpha[40],
101
133
  colorTransparentStroke: 'transparent',
102
134
  colorTransparentStrokeInteractive: 'transparent',
103
135
  colorTransparentStrokeDisabled: 'transparent',
@@ -110,7 +142,8 @@ const generateColorTokens = brand => ({
110
142
  colorNeutralShadowAmbientDarker: 'rgba(0,0,0,0.40)',
111
143
  colorNeutralShadowKeyDarker: 'rgba(0,0,0,0.48)',
112
144
  colorBrandShadowAmbient: 'rgba(0,0,0,0.30)',
113
- colorBrandShadowKey: 'rgba(0,0,0,0.25)'
145
+ colorBrandShadowKey: 'rgba(0,0,0,0.25)' // rgba(0,0,0,0.25) undefined
146
+
114
147
  });
115
148
 
116
149
  exports.generateColorTokens = generateColorTokens;
@@ -124,6 +157,7 @@ exports.colorPaletteTokens = /*#__PURE__*/Object.keys(colors_1.sharedColors).red
124
157
  [`colorPalette${color}Foreground2`]: colors_1.sharedColors[sharedColor].tint40,
125
158
  [`colorPalette${color}Foreground3`]: colors_1.sharedColors[sharedColor].tint20,
126
159
  [`colorPalette${color}BorderActive`]: colors_1.sharedColors[sharedColor].tint30,
160
+ [`colorPalette${color}Border1`]: colors_1.sharedColors[sharedColor].primary,
127
161
  [`colorPalette${color}Border2`]: colors_1.sharedColors[sharedColor].tint20
128
162
  };
129
163
  return { ...acc,