@fluentui/react-theme 9.0.0-nightly.d730088d7f.0 → 9.0.0-rc.10
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.
- package/CHANGELOG.json +349 -10
- package/CHANGELOG.md +157 -40
- package/dist/index.d.ts +433 -0
- package/{lib → dist}/tsdoc-metadata.json +0 -0
- package/lib/alias/darkColor.js +147 -0
- package/lib/alias/darkColor.js.map +1 -0
- package/lib/alias/darkColorPalette.js +33 -0
- package/lib/alias/darkColorPalette.js.map +1 -0
- package/lib/alias/highContrastColor.js +147 -0
- package/lib/alias/highContrastColor.js.map +1 -0
- package/lib/alias/highContrastColorPalette.js +33 -0
- package/lib/alias/highContrastColorPalette.js.map +1 -0
- package/lib/alias/lightColor.js +147 -0
- package/lib/alias/lightColor.js.map +1 -0
- package/lib/alias/lightColorPalette.js +33 -0
- package/lib/alias/lightColorPalette.js.map +1 -0
- package/lib/alias/teamsDarkColor.js +147 -0
- package/lib/alias/teamsDarkColor.js.map +1 -0
- package/lib/alias/teamsDarkColorPalette.js +33 -0
- package/lib/alias/teamsDarkColorPalette.js.map +1 -0
- package/lib/global/borderRadius.js +1 -1
- package/lib/global/borderRadius.js.map +1 -1
- package/lib/global/brandColors.js +53 -31
- package/lib/global/brandColors.js.map +1 -1
- package/lib/global/colors.js +148 -130
- package/lib/global/colors.js.map +1 -1
- package/lib/global/curves.js +12 -0
- package/lib/global/curves.js.map +1 -0
- package/lib/global/durations.js +10 -0
- package/lib/global/durations.js.map +1 -0
- package/lib/global/fonts.js +4 -4
- package/lib/global/fonts.js.map +1 -1
- package/lib/global/index.js +5 -0
- package/lib/global/index.js.map +1 -1
- package/lib/global/spacings.js +40 -0
- package/lib/global/spacings.js.map +1 -0
- package/lib/global/strokeWidths.js +1 -1
- package/lib/global/strokeWidths.js.map +1 -1
- package/lib/global/typographyStyles.js +104 -0
- package/lib/global/typographyStyles.js.map +1 -0
- package/lib/index.js +5 -2
- package/lib/index.js.map +1 -1
- package/lib/themeToTokensObject.js +19 -0
- package/lib/themeToTokensObject.js.map +1 -0
- package/lib/themes/index.js.map +1 -1
- package/lib/themes/teams/darkTheme.js +1 -1
- package/lib/themes/teams/darkTheme.js.map +1 -1
- package/lib/themes/teams/highContrastTheme.js +1 -1
- package/lib/themes/teams/highContrastTheme.js.map +1 -1
- package/lib/themes/teams/index.js.map +1 -1
- package/lib/themes/teams/lightTheme.js +1 -1
- package/lib/themes/teams/lightTheme.js.map +1 -1
- package/lib/themes/web/darkTheme.js +1 -1
- package/lib/themes/web/darkTheme.js.map +1 -1
- package/lib/themes/web/index.js +0 -1
- package/lib/themes/web/index.js.map +1 -1
- package/lib/themes/web/lightTheme.js +1 -1
- package/lib/themes/web/lightTheme.js.map +1 -1
- package/lib/tokens.js +426 -0
- package/lib/tokens.js.map +1 -0
- package/lib/types.js.map +1 -1
- package/lib/utils/createDarkTheme.js +22 -5
- package/lib/utils/createDarkTheme.js.map +1 -1
- package/lib/utils/createHighContrastTheme.js +22 -5
- package/lib/utils/createHighContrastTheme.js.map +1 -1
- package/lib/utils/createLightTheme.js +22 -5
- package/lib/utils/createLightTheme.js.map +1 -1
- package/lib/utils/createTeamsDarkTheme.js +22 -5
- package/lib/utils/createTeamsDarkTheme.js.map +1 -1
- package/lib/utils/index.js +0 -2
- package/lib/utils/index.js.map +1 -1
- package/lib/utils/shadows.js +7 -7
- package/lib/utils/shadows.js.map +1 -1
- package/lib-commonjs/alias/darkColor.js +157 -0
- package/lib-commonjs/alias/darkColor.js.map +1 -0
- package/lib-commonjs/alias/darkColorPalette.js +41 -0
- package/lib-commonjs/alias/darkColorPalette.js.map +1 -0
- package/lib-commonjs/alias/highContrastColor.js +157 -0
- package/lib-commonjs/alias/highContrastColor.js.map +1 -0
- package/lib-commonjs/alias/highContrastColorPalette.js +41 -0
- package/lib-commonjs/alias/highContrastColorPalette.js.map +1 -0
- package/lib-commonjs/alias/lightColor.js +157 -0
- package/lib-commonjs/alias/lightColor.js.map +1 -0
- package/lib-commonjs/alias/lightColorPalette.js +41 -0
- package/lib-commonjs/alias/lightColorPalette.js.map +1 -0
- package/lib-commonjs/alias/teamsDarkColor.js +157 -0
- package/lib-commonjs/alias/teamsDarkColor.js.map +1 -0
- package/lib-commonjs/alias/teamsDarkColorPalette.js +41 -0
- package/lib-commonjs/alias/teamsDarkColorPalette.js.map +1 -0
- package/lib-commonjs/global/borderRadius.js.map +1 -1
- package/lib-commonjs/global/brandColors.js +52 -30
- package/lib-commonjs/global/brandColors.js.map +1 -1
- package/lib-commonjs/global/colors.js +138 -120
- package/lib-commonjs/global/colors.js.map +1 -1
- package/lib-commonjs/global/curves.js +18 -0
- package/lib-commonjs/global/curves.js.map +1 -0
- package/lib-commonjs/global/durations.js +16 -0
- package/lib-commonjs/global/durations.js.map +1 -0
- package/lib-commonjs/global/fonts.js.map +1 -1
- package/lib-commonjs/global/index.js +11 -1
- package/lib-commonjs/global/index.js.map +1 -1
- package/lib-commonjs/global/spacings.js +46 -0
- package/lib-commonjs/global/spacings.js.map +1 -0
- package/lib-commonjs/global/strokeWidths.js.map +1 -1
- package/lib-commonjs/global/typographyStyles.js +112 -0
- package/lib-commonjs/global/typographyStyles.js.map +1 -0
- package/lib-commonjs/index.js +85 -3
- package/lib-commonjs/index.js.map +1 -1
- package/lib-commonjs/themeToTokensObject.js +28 -0
- package/lib-commonjs/themeToTokensObject.js.map +1 -0
- package/lib-commonjs/themes/index.js +1 -1
- package/lib-commonjs/themes/index.js.map +1 -1
- package/lib-commonjs/themes/teams/darkTheme.js +2 -2
- package/lib-commonjs/themes/teams/darkTheme.js.map +1 -1
- package/lib-commonjs/themes/teams/highContrastTheme.js +1 -1
- package/lib-commonjs/themes/teams/highContrastTheme.js.map +1 -1
- package/lib-commonjs/themes/teams/index.js +1 -1
- package/lib-commonjs/themes/teams/index.js.map +1 -1
- package/lib-commonjs/themes/teams/lightTheme.js +2 -2
- package/lib-commonjs/themes/teams/lightTheme.js.map +1 -1
- package/lib-commonjs/themes/web/darkTheme.js +2 -2
- package/lib-commonjs/themes/web/darkTheme.js.map +1 -1
- package/lib-commonjs/themes/web/index.js +1 -3
- package/lib-commonjs/themes/web/index.js.map +1 -1
- package/lib-commonjs/themes/web/lightTheme.js +2 -2
- package/lib-commonjs/themes/web/lightTheme.js.map +1 -1
- package/lib-commonjs/tokens.js +432 -0
- package/lib-commonjs/tokens.js.map +1 -0
- package/lib-commonjs/types.js.map +1 -1
- package/lib-commonjs/utils/createDarkTheme.js +27 -7
- package/lib-commonjs/utils/createDarkTheme.js.map +1 -1
- package/lib-commonjs/utils/createHighContrastTheme.js +27 -7
- package/lib-commonjs/utils/createHighContrastTheme.js.map +1 -1
- package/lib-commonjs/utils/createLightTheme.js +27 -7
- package/lib-commonjs/utils/createLightTheme.js.map +1 -1
- package/lib-commonjs/utils/createTeamsDarkTheme.js +27 -7
- package/lib-commonjs/utils/createTeamsDarkTheme.js.map +1 -1
- package/lib-commonjs/utils/index.js +1 -13
- package/lib-commonjs/utils/index.js.map +1 -1
- package/lib-commonjs/utils/shadows.js +7 -7
- package/lib-commonjs/utils/shadows.js.map +1 -1
- package/package.json +16 -12
- package/dist/react-theme.d.ts +0 -326
- package/lib/alias/dark.d.ts +0 -3
- package/lib/alias/dark.js +0 -117
- package/lib/alias/dark.js.map +0 -1
- package/lib/alias/highContrast.d.ts +0 -3
- package/lib/alias/highContrast.js +0 -117
- package/lib/alias/highContrast.js.map +0 -1
- package/lib/alias/light.d.ts +0 -3
- package/lib/alias/light.js +0 -117
- package/lib/alias/light.js.map +0 -1
- package/lib/alias/teamsDark.d.ts +0 -3
- package/lib/alias/teamsDark.js +0 -117
- package/lib/alias/teamsDark.js.map +0 -1
- package/lib/global/borderRadius.d.ts +0 -2
- package/lib/global/brandColors.d.ts +0 -3
- package/lib/global/colors.d.ts +0 -15
- package/lib/global/fonts.d.ts +0 -5
- package/lib/global/index.d.ts +0 -4
- package/lib/global/strokeWidths.d.ts +0 -2
- package/lib/index.d.ts +0 -3
- package/lib/themes/index.d.ts +0 -2
- package/lib/themes/teams/darkTheme.d.ts +0 -2
- package/lib/themes/teams/highContrastTheme.d.ts +0 -2
- package/lib/themes/teams/index.d.ts +0 -3
- package/lib/themes/teams/lightTheme.d.ts +0 -2
- package/lib/themes/web/darkTheme.d.ts +0 -2
- package/lib/themes/web/highContrastTheme.d.ts +0 -2
- package/lib/themes/web/highContrastTheme.js +0 -3
- package/lib/themes/web/highContrastTheme.js.map +0 -1
- package/lib/themes/web/index.d.ts +0 -3
- package/lib/themes/web/lightTheme.d.ts +0 -2
- package/lib/types.d.ts +0 -327
- package/lib/utils/createDarkTheme.d.ts +0 -2
- package/lib/utils/createHighContrastTheme.d.ts +0 -2
- package/lib/utils/createLightTheme.d.ts +0 -2
- package/lib/utils/createTeamsDarkTheme.d.ts +0 -2
- package/lib/utils/index.d.ts +0 -6
- package/lib/utils/mergeThemes.d.ts +0 -2
- package/lib/utils/mergeThemes.js +0 -14
- package/lib/utils/mergeThemes.js.map +0 -1
- package/lib/utils/shadows.d.ts +0 -2
- package/lib/utils/themeToCSSVariables.d.ts +0 -2
- package/lib/utils/themeToCSSVariables.js +0 -12
- package/lib/utils/themeToCSSVariables.js.map +0 -1
- package/lib-commonjs/alias/dark.d.ts +0 -3
- package/lib-commonjs/alias/dark.js +0 -128
- package/lib-commonjs/alias/dark.js.map +0 -1
- package/lib-commonjs/alias/highContrast.d.ts +0 -3
- package/lib-commonjs/alias/highContrast.js +0 -128
- package/lib-commonjs/alias/highContrast.js.map +0 -1
- package/lib-commonjs/alias/light.d.ts +0 -3
- package/lib-commonjs/alias/light.js +0 -128
- package/lib-commonjs/alias/light.js.map +0 -1
- package/lib-commonjs/alias/teamsDark.d.ts +0 -3
- package/lib-commonjs/alias/teamsDark.js +0 -128
- package/lib-commonjs/alias/teamsDark.js.map +0 -1
- package/lib-commonjs/global/borderRadius.d.ts +0 -2
- package/lib-commonjs/global/brandColors.d.ts +0 -3
- package/lib-commonjs/global/colors.d.ts +0 -15
- package/lib-commonjs/global/fonts.d.ts +0 -5
- package/lib-commonjs/global/index.d.ts +0 -4
- package/lib-commonjs/global/strokeWidths.d.ts +0 -2
- package/lib-commonjs/index.d.ts +0 -3
- package/lib-commonjs/themes/index.d.ts +0 -2
- package/lib-commonjs/themes/teams/darkTheme.d.ts +0 -2
- package/lib-commonjs/themes/teams/highContrastTheme.d.ts +0 -2
- package/lib-commonjs/themes/teams/index.d.ts +0 -3
- package/lib-commonjs/themes/teams/lightTheme.d.ts +0 -2
- package/lib-commonjs/themes/web/darkTheme.d.ts +0 -2
- package/lib-commonjs/themes/web/highContrastTheme.d.ts +0 -2
- package/lib-commonjs/themes/web/highContrastTheme.js +0 -11
- package/lib-commonjs/themes/web/highContrastTheme.js.map +0 -1
- package/lib-commonjs/themes/web/index.d.ts +0 -3
- package/lib-commonjs/themes/web/lightTheme.d.ts +0 -2
- package/lib-commonjs/types.d.ts +0 -327
- package/lib-commonjs/utils/createDarkTheme.d.ts +0 -2
- package/lib-commonjs/utils/createHighContrastTheme.d.ts +0 -2
- package/lib-commonjs/utils/createLightTheme.d.ts +0 -2
- package/lib-commonjs/utils/createTeamsDarkTheme.d.ts +0 -2
- package/lib-commonjs/utils/index.d.ts +0 -6
- package/lib-commonjs/utils/mergeThemes.d.ts +0 -2
- package/lib-commonjs/utils/mergeThemes.js +0 -24
- package/lib-commonjs/utils/mergeThemes.js.map +0 -1
- package/lib-commonjs/utils/shadows.d.ts +0 -2
- package/lib-commonjs/utils/themeToCSSVariables.d.ts +0 -2
- package/lib-commonjs/utils/themeToCSSVariables.js +0 -21
- package/lib-commonjs/utils/themeToCSSVariables.js.map +0 -1
package/lib/global/colors.js
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
export
|
1
|
+
export const grey = {
|
2
2
|
'0': '#000000',
|
3
3
|
'2': '#050505',
|
4
4
|
'4': '#0a0a0a',
|
@@ -51,9 +51,7 @@ export var grey = {
|
|
51
51
|
'98': '#fafafa',
|
52
52
|
'100': '#ffffff'
|
53
53
|
};
|
54
|
-
export
|
55
|
-
export var black = '#000000';
|
56
|
-
export var whiteAlpha = {
|
54
|
+
export const whiteAlpha = {
|
57
55
|
'5': 'rgba(255, 255, 255, 0.05)',
|
58
56
|
'10': 'rgba(255, 255, 255, 0.1)',
|
59
57
|
'20': 'rgba(255, 255, 255, 0.2)',
|
@@ -65,7 +63,7 @@ export var whiteAlpha = {
|
|
65
63
|
'80': 'rgba(255, 255, 255, 0.8)',
|
66
64
|
'90': 'rgba(255, 255, 255, 0.9)'
|
67
65
|
};
|
68
|
-
export
|
66
|
+
export const blackAlpha = {
|
69
67
|
'5': 'rgba(0, 0, 0, 0.05)',
|
70
68
|
'10': 'rgba(0, 0, 0, 0.1)',
|
71
69
|
'20': 'rgba(0, 0, 0, 0.2)',
|
@@ -77,15 +75,29 @@ export var blackAlpha = {
|
|
77
75
|
'80': 'rgba(0, 0, 0, 0.8)',
|
78
76
|
'90': 'rgba(0, 0, 0, 0.9)'
|
79
77
|
};
|
80
|
-
export
|
81
|
-
|
82
|
-
|
83
|
-
|
84
|
-
|
85
|
-
|
86
|
-
|
87
|
-
|
88
|
-
|
78
|
+
export const grey14Alpha = {
|
79
|
+
'5': 'rgba(36, 36, 36, 0.05)',
|
80
|
+
'10': 'rgba(36, 36, 36, 0.1)',
|
81
|
+
'20': 'rgba(36, 36, 36, 0.2)',
|
82
|
+
'30': 'rgba(36, 36, 36, 0.3)',
|
83
|
+
'40': 'rgba(36, 36, 36, 0.4)',
|
84
|
+
'50': 'rgba(36, 36, 36, 0.5)',
|
85
|
+
'60': 'rgba(36, 36, 36, 0.6)',
|
86
|
+
'70': 'rgba(36, 36, 36, 0.7)',
|
87
|
+
'80': 'rgba(36, 36, 36, 0.8)',
|
88
|
+
'90': 'rgba(36, 36, 36, 0.9)'
|
89
|
+
};
|
90
|
+
export const white = '#ffffff';
|
91
|
+
export const black = '#000000';
|
92
|
+
export const hcHyperlink = '#ffff00';
|
93
|
+
export const hcHighlight = '#1aebff';
|
94
|
+
export const hcDisabled = '#3ff23f';
|
95
|
+
export const hcCanvas = '#000000';
|
96
|
+
export const hcCanvasText = '#ffffff';
|
97
|
+
export const hcHighlightText = '#000000';
|
98
|
+
export const hcButtonText = '#000000';
|
99
|
+
export const hcButtonFace = '#ffffff';
|
100
|
+
const darkRed = {
|
89
101
|
shade50: '#130204',
|
90
102
|
shade40: '#230308',
|
91
103
|
shade30: '#420610',
|
@@ -99,7 +111,7 @@ var darkRed = {
|
|
99
111
|
tint50: '#e9c7cd',
|
100
112
|
tint60: '#f9f0f2'
|
101
113
|
};
|
102
|
-
|
114
|
+
const burgundy = {
|
103
115
|
shade50: '#1a0607',
|
104
116
|
shade40: '#310b0d',
|
105
117
|
shade30: '#5c1519',
|
@@ -113,7 +125,7 @@ var burgundy = {
|
|
113
125
|
tint50: '#f0d3d4',
|
114
126
|
tint60: '#fbf4f4'
|
115
127
|
};
|
116
|
-
|
128
|
+
const cranberry = {
|
117
129
|
shade50: '#200205',
|
118
130
|
shade40: '#3b0509',
|
119
131
|
shade30: '#6e0811',
|
@@ -127,7 +139,7 @@ var cranberry = {
|
|
127
139
|
tint50: '#f6d1d5',
|
128
140
|
tint60: '#fdf3f4'
|
129
141
|
};
|
130
|
-
|
142
|
+
const red = {
|
131
143
|
shade50: '#210809',
|
132
144
|
shade40: '#3f1011',
|
133
145
|
shade30: '#751d1f',
|
@@ -141,7 +153,7 @@ var red = {
|
|
141
153
|
tint50: '#f8dadb',
|
142
154
|
tint60: '#fdf6f6'
|
143
155
|
};
|
144
|
-
|
156
|
+
const darkOrange = {
|
145
157
|
shade50: '#230900',
|
146
158
|
shade40: '#411200',
|
147
159
|
shade30: '#7a2101',
|
@@ -155,7 +167,7 @@ var darkOrange = {
|
|
155
167
|
tint50: '#f9dcd1',
|
156
168
|
tint60: '#fdf6f3'
|
157
169
|
};
|
158
|
-
|
170
|
+
const bronze = {
|
159
171
|
shade50: '#1b0a01',
|
160
172
|
shade40: '#321303',
|
161
173
|
shade30: '#5e2405',
|
@@ -169,7 +181,7 @@ var bronze = {
|
|
169
181
|
tint50: '#f1d9cc',
|
170
182
|
tint60: '#fbf5f2'
|
171
183
|
};
|
172
|
-
|
184
|
+
const pumpkin = {
|
173
185
|
shade50: '#200d03',
|
174
186
|
shade40: '#3d1805',
|
175
187
|
shade30: '#712d09',
|
@@ -183,7 +195,7 @@ var pumpkin = {
|
|
183
195
|
tint50: '#f7dfd2',
|
184
196
|
tint60: '#fdf7f4'
|
185
197
|
};
|
186
|
-
|
198
|
+
const orange = {
|
187
199
|
shade50: '#271002',
|
188
200
|
shade40: '#4a1e04',
|
189
201
|
shade30: '#8a3707',
|
@@ -197,7 +209,7 @@ var orange = {
|
|
197
209
|
tint50: '#fee5d7',
|
198
210
|
tint60: '#fff9f5'
|
199
211
|
};
|
200
|
-
|
212
|
+
const peach = {
|
201
213
|
shade50: '#291600',
|
202
214
|
shade40: '#4d2a00',
|
203
215
|
shade30: '#8f4e00',
|
@@ -211,7 +223,7 @@ var peach = {
|
|
211
223
|
tint50: '#ffedd6',
|
212
224
|
tint60: '#fffaf5'
|
213
225
|
};
|
214
|
-
|
226
|
+
const marigold = {
|
215
227
|
shade50: '#251a00',
|
216
228
|
shade40: '#463100',
|
217
229
|
shade30: '#835b00',
|
@@ -225,13 +237,13 @@ var marigold = {
|
|
225
237
|
tint50: '#fcefd3',
|
226
238
|
tint60: '#fefbf4'
|
227
239
|
};
|
228
|
-
|
229
|
-
shade50: '#282400',
|
230
|
-
shade40: '#4c4400',
|
231
|
-
shade30: '#8e7f00',
|
232
|
-
shade20: '#c0ad00',
|
233
|
-
shade10: '#e4cc00',
|
240
|
+
const yellow = {
|
234
241
|
primary: '#fde300',
|
242
|
+
shade10: '#e4cc00',
|
243
|
+
shade20: '#c0ad00',
|
244
|
+
shade30: '#817400',
|
245
|
+
shade40: '#4c4400',
|
246
|
+
shade50: '#282400',
|
235
247
|
tint10: '#fde61e',
|
236
248
|
tint20: '#fdea3d',
|
237
249
|
tint30: '#feee66',
|
@@ -239,7 +251,7 @@ var yellow = {
|
|
239
251
|
tint50: '#fffad6',
|
240
252
|
tint60: '#fffef5'
|
241
253
|
};
|
242
|
-
|
254
|
+
const gold = {
|
243
255
|
shade50: '#1f1900',
|
244
256
|
shade40: '#3a2f00',
|
245
257
|
shade30: '#6c5700',
|
@@ -253,7 +265,7 @@ var gold = {
|
|
253
265
|
tint50: '#f5eece',
|
254
266
|
tint60: '#fdfbf2'
|
255
267
|
};
|
256
|
-
|
268
|
+
const brass = {
|
257
269
|
shade50: '#181202',
|
258
270
|
shade40: '#2e2103',
|
259
271
|
shade30: '#553e06',
|
@@ -267,7 +279,7 @@ var brass = {
|
|
267
279
|
tint50: '#efe4cb',
|
268
280
|
tint60: '#fbf8f2'
|
269
281
|
};
|
270
|
-
|
282
|
+
const brown = {
|
271
283
|
shade50: '#170e07',
|
272
284
|
shade40: '#2b1a0e',
|
273
285
|
shade30: '#50301a',
|
@@ -281,7 +293,7 @@ var brown = {
|
|
281
293
|
tint50: '#edded3',
|
282
294
|
tint60: '#faf7f4'
|
283
295
|
};
|
284
|
-
|
296
|
+
const darkBrown = {
|
285
297
|
shade50: '#0c0704',
|
286
298
|
shade40: '#170c08',
|
287
299
|
shade30: '#2b1710',
|
@@ -295,7 +307,7 @@ var darkBrown = {
|
|
295
307
|
tint50: '#e3d2cb',
|
296
308
|
tint60: '#f8f3f2'
|
297
309
|
};
|
298
|
-
|
310
|
+
const lime = {
|
299
311
|
shade50: '#121b06',
|
300
312
|
shade40: '#23330b',
|
301
313
|
shade30: '#405f14',
|
@@ -309,7 +321,7 @@ var lime = {
|
|
309
321
|
tint50: '#e5f1d3',
|
310
322
|
tint60: '#f8fcf4'
|
311
323
|
};
|
312
|
-
|
324
|
+
const forest = {
|
313
325
|
shade50: '#0c1501',
|
314
326
|
shade40: '#162702',
|
315
327
|
shade30: '#294903',
|
@@ -323,7 +335,7 @@ var forest = {
|
|
323
335
|
tint50: '#dbebc7',
|
324
336
|
tint60: '#f6faf0'
|
325
337
|
};
|
326
|
-
|
338
|
+
const seafoam = {
|
327
339
|
shade50: '#002111',
|
328
340
|
shade40: '#003d20',
|
329
341
|
shade30: '#00723b',
|
@@ -337,7 +349,7 @@ var seafoam = {
|
|
337
349
|
tint50: '#cff7e4',
|
338
350
|
tint60: '#f3fdf8'
|
339
351
|
};
|
340
|
-
|
352
|
+
const lightGreen = {
|
341
353
|
shade50: '#031a02',
|
342
354
|
shade40: '#063004',
|
343
355
|
shade30: '#0b5a08',
|
@@ -351,7 +363,7 @@ var lightGreen = {
|
|
351
363
|
tint50: '#cef0cd',
|
352
364
|
tint60: '#f2fbf2'
|
353
365
|
};
|
354
|
-
|
366
|
+
const green = {
|
355
367
|
shade50: '#031403',
|
356
368
|
shade40: '#052505',
|
357
369
|
shade30: '#094509',
|
@@ -365,7 +377,7 @@ var green = {
|
|
365
377
|
tint50: '#c9eac9',
|
366
378
|
tint60: '#f1faf1'
|
367
379
|
};
|
368
|
-
|
380
|
+
const darkGreen = {
|
369
381
|
shade50: '#021102',
|
370
382
|
shade40: '#032003',
|
371
383
|
shade30: '#063b06',
|
@@ -379,7 +391,7 @@ var darkGreen = {
|
|
379
391
|
tint50: '#c6e7c6',
|
380
392
|
tint60: '#f0f9f0'
|
381
393
|
};
|
382
|
-
|
394
|
+
const lightTeal = {
|
383
395
|
shade50: '#001d1f',
|
384
396
|
shade40: '#00373a',
|
385
397
|
shade30: '#00666d',
|
@@ -393,7 +405,7 @@ var lightTeal = {
|
|
393
405
|
tint50: '#cef3f5',
|
394
406
|
tint60: '#f2fcfd'
|
395
407
|
};
|
396
|
-
|
408
|
+
const teal = {
|
397
409
|
shade50: '#001516',
|
398
410
|
shade40: '#012728',
|
399
411
|
shade30: '#02494c',
|
@@ -407,7 +419,7 @@ var teal = {
|
|
407
419
|
tint50: '#c7ebec',
|
408
420
|
tint60: '#f0fafa'
|
409
421
|
};
|
410
|
-
|
422
|
+
const darkTeal = {
|
411
423
|
shade50: '#001010',
|
412
424
|
shade40: '#001f1f',
|
413
425
|
shade30: '#003939',
|
@@ -421,7 +433,7 @@ var darkTeal = {
|
|
421
433
|
tint50: '#c2e7e7',
|
422
434
|
tint60: '#eff9f9'
|
423
435
|
};
|
424
|
-
|
436
|
+
const cyan = {
|
425
437
|
shade50: '#00181e',
|
426
438
|
shade40: '#002e38',
|
427
439
|
shade30: '#005669',
|
@@ -435,7 +447,7 @@ var cyan = {
|
|
435
447
|
tint50: '#cdedf4',
|
436
448
|
tint60: '#f2fafc'
|
437
449
|
};
|
438
|
-
|
450
|
+
const steel = {
|
439
451
|
shade50: '#000f12',
|
440
452
|
shade40: '#001b22',
|
441
453
|
shade30: '#00333f',
|
@@ -449,7 +461,7 @@ var steel = {
|
|
449
461
|
tint50: '#c3e1e8',
|
450
462
|
tint60: '#eff7f9'
|
451
463
|
};
|
452
|
-
|
464
|
+
const lightBlue = {
|
453
465
|
shade50: '#091823',
|
454
466
|
shade40: '#112d42',
|
455
467
|
shade30: '#20547c',
|
@@ -463,7 +475,7 @@ var lightBlue = {
|
|
463
475
|
tint50: '#dcedfa',
|
464
476
|
tint60: '#f6fafe'
|
465
477
|
};
|
466
|
-
|
478
|
+
const blue = {
|
467
479
|
shade50: '#001322',
|
468
480
|
shade40: '#002440',
|
469
481
|
shade30: '#004377',
|
@@ -477,7 +489,7 @@ var blue = {
|
|
477
489
|
tint50: '#d0e7f8',
|
478
490
|
tint60: '#f3f9fd'
|
479
491
|
};
|
480
|
-
|
492
|
+
const royalBlue = {
|
481
493
|
shade50: '#000c16',
|
482
494
|
shade40: '#00172a',
|
483
495
|
shade30: '#002c4e',
|
@@ -491,7 +503,7 @@ var royalBlue = {
|
|
491
503
|
tint50: '#c7dced',
|
492
504
|
tint60: '#f0f6fa'
|
493
505
|
};
|
494
|
-
|
506
|
+
const darkBlue = {
|
495
507
|
shade50: '#000910',
|
496
508
|
shade40: '#00111f',
|
497
509
|
shade30: '#002039',
|
@@ -505,7 +517,7 @@ var darkBlue = {
|
|
505
517
|
tint50: '#c2d6e7',
|
506
518
|
tint60: '#eff4f9'
|
507
519
|
};
|
508
|
-
|
520
|
+
const cornflower = {
|
509
521
|
shade50: '#0d1126',
|
510
522
|
shade40: '#182047',
|
511
523
|
shade30: '#2c3c85',
|
@@ -519,7 +531,7 @@ var cornflower = {
|
|
519
531
|
tint50: '#e1e6fc',
|
520
532
|
tint60: '#f7f9fe'
|
521
533
|
};
|
522
|
-
|
534
|
+
const navy = {
|
523
535
|
shade50: '#00061d',
|
524
536
|
shade40: '#000c36',
|
525
537
|
shade30: '#001665',
|
@@ -533,7 +545,7 @@ var navy = {
|
|
533
545
|
tint50: '#ccd5f3',
|
534
546
|
tint60: '#f2f4fc'
|
535
547
|
};
|
536
|
-
|
548
|
+
const lavender = {
|
537
549
|
shade50: '#120f25',
|
538
550
|
shade40: '#221d46',
|
539
551
|
shade30: '#3f3682',
|
@@ -547,7 +559,7 @@ var lavender = {
|
|
547
559
|
tint50: '#e7e4fb',
|
548
560
|
tint60: '#f9f8fe'
|
549
561
|
};
|
550
|
-
|
562
|
+
const purple = {
|
551
563
|
shade50: '#0f0717',
|
552
564
|
shade40: '#1c0e2b',
|
553
565
|
shade30: '#341a51',
|
@@ -561,7 +573,7 @@ var purple = {
|
|
561
573
|
tint50: '#e0d3ed',
|
562
574
|
tint60: '#f7f4fb'
|
563
575
|
};
|
564
|
-
|
576
|
+
const darkPurple = {
|
565
577
|
shade50: '#0a0411',
|
566
578
|
shade40: '#130820',
|
567
579
|
shade30: '#240f3c',
|
@@ -575,7 +587,7 @@ var darkPurple = {
|
|
575
587
|
tint50: '#d8cce7',
|
576
588
|
tint60: '#f5f2f9'
|
577
589
|
};
|
578
|
-
|
590
|
+
const orchid = {
|
579
591
|
shade50: '#16101d',
|
580
592
|
shade40: '#281e37',
|
581
593
|
shade30: '#4c3867',
|
@@ -589,7 +601,7 @@ var orchid = {
|
|
589
601
|
tint50: '#e9e2f4',
|
590
602
|
tint60: '#f9f8fc'
|
591
603
|
};
|
592
|
-
|
604
|
+
const grape = {
|
593
605
|
shade50: '#160418',
|
594
606
|
shade40: '#29072e',
|
595
607
|
shade30: '#4c0d55',
|
@@ -603,7 +615,7 @@ var grape = {
|
|
603
615
|
tint50: '#eaceef',
|
604
616
|
tint60: '#faf2fb'
|
605
617
|
};
|
606
|
-
|
618
|
+
const berry = {
|
607
619
|
shade50: '#1f091d',
|
608
620
|
shade40: '#3a1136',
|
609
621
|
shade30: '#6d2064',
|
@@ -617,7 +629,7 @@ var berry = {
|
|
617
629
|
tint50: '#f5daf2',
|
618
630
|
tint60: '#fdf5fc'
|
619
631
|
};
|
620
|
-
|
632
|
+
const lilac = {
|
621
633
|
shade50: '#1c0b1f',
|
622
634
|
shade40: '#35153a',
|
623
635
|
shade30: '#63276d',
|
@@ -631,7 +643,7 @@ var lilac = {
|
|
631
643
|
tint50: '#f2dcf5',
|
632
644
|
tint60: '#fcf6fd'
|
633
645
|
};
|
634
|
-
|
646
|
+
const pink = {
|
635
647
|
shade50: '#24091b',
|
636
648
|
shade40: '#441232',
|
637
649
|
shade30: '#80215d',
|
@@ -645,7 +657,7 @@ var pink = {
|
|
645
657
|
tint50: '#fbddf0',
|
646
658
|
tint60: '#fef6fb'
|
647
659
|
};
|
648
|
-
|
660
|
+
const hotPink = {
|
649
661
|
shade50: '#240016',
|
650
662
|
shade40: '#44002a',
|
651
663
|
shade30: '#7f004e',
|
@@ -659,7 +671,7 @@ var hotPink = {
|
|
659
671
|
tint50: '#fbd2eb',
|
660
672
|
tint60: '#fef4fa'
|
661
673
|
};
|
662
|
-
|
674
|
+
const magenta = {
|
663
675
|
shade50: '#1f0013',
|
664
676
|
shade40: '#390024',
|
665
677
|
shade30: '#6b0043',
|
@@ -673,7 +685,7 @@ var magenta = {
|
|
673
685
|
tint50: '#f5cee6',
|
674
686
|
tint60: '#fcf2f9'
|
675
687
|
};
|
676
|
-
|
688
|
+
const plum = {
|
677
689
|
shade50: '#13000c',
|
678
690
|
shade40: '#240017',
|
679
691
|
shade30: '#43002b',
|
@@ -687,7 +699,7 @@ var plum = {
|
|
687
699
|
tint50: '#e9c4dc',
|
688
700
|
tint60: '#faf0f6'
|
689
701
|
};
|
690
|
-
|
702
|
+
const beige = {
|
691
703
|
shade50: '#141313',
|
692
704
|
shade40: '#252323',
|
693
705
|
shade30: '#444241',
|
@@ -701,7 +713,7 @@ var beige = {
|
|
701
713
|
tint50: '#eae8e8',
|
702
714
|
tint60: '#faf9f9'
|
703
715
|
};
|
704
|
-
|
716
|
+
const mink = {
|
705
717
|
shade50: '#0f0e0e',
|
706
718
|
shade40: '#1c1b1a',
|
707
719
|
shade30: '#343231',
|
@@ -715,7 +727,7 @@ var mink = {
|
|
715
727
|
tint50: '#e5e4e3',
|
716
728
|
tint60: '#f8f8f8'
|
717
729
|
};
|
718
|
-
|
730
|
+
const silver = {
|
719
731
|
shade50: '#151818',
|
720
732
|
shade40: '#282d2e',
|
721
733
|
shade30: '#4a5356',
|
@@ -729,7 +741,7 @@ var silver = {
|
|
729
741
|
tint50: '#eaeeef',
|
730
742
|
tint60: '#fafbfb'
|
731
743
|
};
|
732
|
-
|
744
|
+
const platinum = {
|
733
745
|
shade50: '#111314',
|
734
746
|
shade40: '#1f2426',
|
735
747
|
shade30: '#3b4447',
|
@@ -743,7 +755,7 @@ var platinum = {
|
|
743
755
|
tint50: '#e4e9ea',
|
744
756
|
tint60: '#f8f9fa'
|
745
757
|
};
|
746
|
-
|
758
|
+
const anchor = {
|
747
759
|
shade50: '#090a0b',
|
748
760
|
shade40: '#111315',
|
749
761
|
shade30: '#202427',
|
@@ -757,69 +769,75 @@ var anchor = {
|
|
757
769
|
tint50: '#dbdfe1',
|
758
770
|
tint60: '#f6f7f8'
|
759
771
|
};
|
760
|
-
|
761
|
-
shade50: '#
|
762
|
-
shade40: '#
|
763
|
-
shade30: '#
|
764
|
-
shade20: '#
|
765
|
-
shade10: '#
|
766
|
-
primary: '#
|
767
|
-
tint10: '#
|
768
|
-
tint20: '#
|
769
|
-
tint30: '#
|
770
|
-
tint40: '#
|
771
|
-
tint50: '#
|
772
|
-
tint60: '#
|
773
|
-
};
|
774
|
-
export
|
775
|
-
|
776
|
-
|
777
|
-
|
778
|
-
|
779
|
-
|
780
|
-
|
781
|
-
|
782
|
-
|
783
|
-
|
784
|
-
|
785
|
-
|
786
|
-
|
787
|
-
|
788
|
-
|
789
|
-
|
790
|
-
|
791
|
-
forest
|
792
|
-
seafoam
|
793
|
-
|
794
|
-
|
795
|
-
|
796
|
-
|
797
|
-
|
798
|
-
|
799
|
-
|
800
|
-
|
801
|
-
|
802
|
-
|
803
|
-
|
804
|
-
|
805
|
-
|
806
|
-
|
807
|
-
|
808
|
-
|
809
|
-
|
810
|
-
|
811
|
-
|
812
|
-
|
813
|
-
|
814
|
-
|
815
|
-
|
816
|
-
|
817
|
-
|
818
|
-
|
819
|
-
|
820
|
-
|
821
|
-
|
822
|
-
|
823
|
-
|
772
|
+
const charcoal = {
|
773
|
+
shade50: '#090909',
|
774
|
+
shade40: '#111111',
|
775
|
+
shade30: '#202020',
|
776
|
+
shade20: '#2b2b2b',
|
777
|
+
shade10: '#333333',
|
778
|
+
primary: '#393939',
|
779
|
+
tint10: '#515151',
|
780
|
+
tint20: '#686868',
|
781
|
+
tint30: '#888888',
|
782
|
+
tint40: '#c4c4c4',
|
783
|
+
tint50: '#dfdfdf',
|
784
|
+
tint60: '#f7f7f7'
|
785
|
+
};
|
786
|
+
export const statusSharedColors = {
|
787
|
+
red,
|
788
|
+
green,
|
789
|
+
darkOrange,
|
790
|
+
yellow,
|
791
|
+
berry,
|
792
|
+
lightGreen,
|
793
|
+
marigold
|
794
|
+
};
|
795
|
+
export const personaSharedColors = {
|
796
|
+
darkRed,
|
797
|
+
cranberry,
|
798
|
+
pumpkin,
|
799
|
+
peach,
|
800
|
+
gold,
|
801
|
+
brass,
|
802
|
+
brown,
|
803
|
+
forest,
|
804
|
+
seafoam,
|
805
|
+
darkGreen,
|
806
|
+
lightTeal,
|
807
|
+
teal,
|
808
|
+
steel,
|
809
|
+
blue,
|
810
|
+
royalBlue,
|
811
|
+
cornflower,
|
812
|
+
navy,
|
813
|
+
lavender,
|
814
|
+
purple,
|
815
|
+
grape,
|
816
|
+
lilac,
|
817
|
+
pink,
|
818
|
+
magenta,
|
819
|
+
plum,
|
820
|
+
beige,
|
821
|
+
mink,
|
822
|
+
platinum,
|
823
|
+
anchor
|
824
|
+
}; // These shared colors are currently not used in themes
|
825
|
+
// Not exported from the package, we can consider removing them
|
826
|
+
|
827
|
+
export const unusedSharedColors = {
|
828
|
+
burgundy,
|
829
|
+
bronze,
|
830
|
+
orange,
|
831
|
+
darkBrown,
|
832
|
+
lime,
|
833
|
+
darkTeal,
|
834
|
+
cyan,
|
835
|
+
lightBlue,
|
836
|
+
darkBlue,
|
837
|
+
darkPurple,
|
838
|
+
orchid,
|
839
|
+
hotPink,
|
840
|
+
silver,
|
841
|
+
charcoal
|
824
842
|
};
|
825
843
|
//# sourceMappingURL=colors.js.map
|