@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
@@ -3,7 +3,7 @@
|
|
3
3
|
Object.defineProperty(exports, "__esModule", {
|
4
4
|
value: true
|
5
5
|
});
|
6
|
-
exports.
|
6
|
+
exports.unusedSharedColors = exports.personaSharedColors = exports.statusSharedColors = exports.hcButtonFace = exports.hcButtonText = exports.hcHighlightText = exports.hcCanvasText = exports.hcCanvas = exports.hcDisabled = exports.hcHighlight = exports.hcHyperlink = exports.black = exports.white = exports.grey14Alpha = exports.blackAlpha = exports.whiteAlpha = exports.grey = void 0;
|
7
7
|
exports.grey = {
|
8
8
|
'0': '#000000',
|
9
9
|
'2': '#050505',
|
@@ -57,8 +57,6 @@ exports.grey = {
|
|
57
57
|
'98': '#fafafa',
|
58
58
|
'100': '#ffffff'
|
59
59
|
};
|
60
|
-
exports.white = '#ffffff';
|
61
|
-
exports.black = '#000000';
|
62
60
|
exports.whiteAlpha = {
|
63
61
|
'5': 'rgba(255, 255, 255, 0.05)',
|
64
62
|
'10': 'rgba(255, 255, 255, 0.1)',
|
@@ -83,6 +81,20 @@ exports.blackAlpha = {
|
|
83
81
|
'80': 'rgba(0, 0, 0, 0.8)',
|
84
82
|
'90': 'rgba(0, 0, 0, 0.9)'
|
85
83
|
};
|
84
|
+
exports.grey14Alpha = {
|
85
|
+
'5': 'rgba(36, 36, 36, 0.05)',
|
86
|
+
'10': 'rgba(36, 36, 36, 0.1)',
|
87
|
+
'20': 'rgba(36, 36, 36, 0.2)',
|
88
|
+
'30': 'rgba(36, 36, 36, 0.3)',
|
89
|
+
'40': 'rgba(36, 36, 36, 0.4)',
|
90
|
+
'50': 'rgba(36, 36, 36, 0.5)',
|
91
|
+
'60': 'rgba(36, 36, 36, 0.6)',
|
92
|
+
'70': 'rgba(36, 36, 36, 0.7)',
|
93
|
+
'80': 'rgba(36, 36, 36, 0.8)',
|
94
|
+
'90': 'rgba(36, 36, 36, 0.9)'
|
95
|
+
};
|
96
|
+
exports.white = '#ffffff';
|
97
|
+
exports.black = '#000000';
|
86
98
|
exports.hcHyperlink = '#ffff00';
|
87
99
|
exports.hcHighlight = '#1aebff';
|
88
100
|
exports.hcDisabled = '#3ff23f';
|
@@ -91,7 +103,7 @@ exports.hcCanvasText = '#ffffff';
|
|
91
103
|
exports.hcHighlightText = '#000000';
|
92
104
|
exports.hcButtonText = '#000000';
|
93
105
|
exports.hcButtonFace = '#ffffff';
|
94
|
-
|
106
|
+
const darkRed = {
|
95
107
|
shade50: '#130204',
|
96
108
|
shade40: '#230308',
|
97
109
|
shade30: '#420610',
|
@@ -105,7 +117,7 @@ var darkRed = {
|
|
105
117
|
tint50: '#e9c7cd',
|
106
118
|
tint60: '#f9f0f2'
|
107
119
|
};
|
108
|
-
|
120
|
+
const burgundy = {
|
109
121
|
shade50: '#1a0607',
|
110
122
|
shade40: '#310b0d',
|
111
123
|
shade30: '#5c1519',
|
@@ -119,7 +131,7 @@ var burgundy = {
|
|
119
131
|
tint50: '#f0d3d4',
|
120
132
|
tint60: '#fbf4f4'
|
121
133
|
};
|
122
|
-
|
134
|
+
const cranberry = {
|
123
135
|
shade50: '#200205',
|
124
136
|
shade40: '#3b0509',
|
125
137
|
shade30: '#6e0811',
|
@@ -133,7 +145,7 @@ var cranberry = {
|
|
133
145
|
tint50: '#f6d1d5',
|
134
146
|
tint60: '#fdf3f4'
|
135
147
|
};
|
136
|
-
|
148
|
+
const red = {
|
137
149
|
shade50: '#210809',
|
138
150
|
shade40: '#3f1011',
|
139
151
|
shade30: '#751d1f',
|
@@ -147,7 +159,7 @@ var red = {
|
|
147
159
|
tint50: '#f8dadb',
|
148
160
|
tint60: '#fdf6f6'
|
149
161
|
};
|
150
|
-
|
162
|
+
const darkOrange = {
|
151
163
|
shade50: '#230900',
|
152
164
|
shade40: '#411200',
|
153
165
|
shade30: '#7a2101',
|
@@ -161,7 +173,7 @@ var darkOrange = {
|
|
161
173
|
tint50: '#f9dcd1',
|
162
174
|
tint60: '#fdf6f3'
|
163
175
|
};
|
164
|
-
|
176
|
+
const bronze = {
|
165
177
|
shade50: '#1b0a01',
|
166
178
|
shade40: '#321303',
|
167
179
|
shade30: '#5e2405',
|
@@ -175,7 +187,7 @@ var bronze = {
|
|
175
187
|
tint50: '#f1d9cc',
|
176
188
|
tint60: '#fbf5f2'
|
177
189
|
};
|
178
|
-
|
190
|
+
const pumpkin = {
|
179
191
|
shade50: '#200d03',
|
180
192
|
shade40: '#3d1805',
|
181
193
|
shade30: '#712d09',
|
@@ -189,7 +201,7 @@ var pumpkin = {
|
|
189
201
|
tint50: '#f7dfd2',
|
190
202
|
tint60: '#fdf7f4'
|
191
203
|
};
|
192
|
-
|
204
|
+
const orange = {
|
193
205
|
shade50: '#271002',
|
194
206
|
shade40: '#4a1e04',
|
195
207
|
shade30: '#8a3707',
|
@@ -203,7 +215,7 @@ var orange = {
|
|
203
215
|
tint50: '#fee5d7',
|
204
216
|
tint60: '#fff9f5'
|
205
217
|
};
|
206
|
-
|
218
|
+
const peach = {
|
207
219
|
shade50: '#291600',
|
208
220
|
shade40: '#4d2a00',
|
209
221
|
shade30: '#8f4e00',
|
@@ -217,7 +229,7 @@ var peach = {
|
|
217
229
|
tint50: '#ffedd6',
|
218
230
|
tint60: '#fffaf5'
|
219
231
|
};
|
220
|
-
|
232
|
+
const marigold = {
|
221
233
|
shade50: '#251a00',
|
222
234
|
shade40: '#463100',
|
223
235
|
shade30: '#835b00',
|
@@ -231,13 +243,13 @@ var marigold = {
|
|
231
243
|
tint50: '#fcefd3',
|
232
244
|
tint60: '#fefbf4'
|
233
245
|
};
|
234
|
-
|
235
|
-
shade50: '#282400',
|
236
|
-
shade40: '#4c4400',
|
237
|
-
shade30: '#8e7f00',
|
238
|
-
shade20: '#c0ad00',
|
239
|
-
shade10: '#e4cc00',
|
246
|
+
const yellow = {
|
240
247
|
primary: '#fde300',
|
248
|
+
shade10: '#e4cc00',
|
249
|
+
shade20: '#c0ad00',
|
250
|
+
shade30: '#817400',
|
251
|
+
shade40: '#4c4400',
|
252
|
+
shade50: '#282400',
|
241
253
|
tint10: '#fde61e',
|
242
254
|
tint20: '#fdea3d',
|
243
255
|
tint30: '#feee66',
|
@@ -245,7 +257,7 @@ var yellow = {
|
|
245
257
|
tint50: '#fffad6',
|
246
258
|
tint60: '#fffef5'
|
247
259
|
};
|
248
|
-
|
260
|
+
const gold = {
|
249
261
|
shade50: '#1f1900',
|
250
262
|
shade40: '#3a2f00',
|
251
263
|
shade30: '#6c5700',
|
@@ -259,7 +271,7 @@ var gold = {
|
|
259
271
|
tint50: '#f5eece',
|
260
272
|
tint60: '#fdfbf2'
|
261
273
|
};
|
262
|
-
|
274
|
+
const brass = {
|
263
275
|
shade50: '#181202',
|
264
276
|
shade40: '#2e2103',
|
265
277
|
shade30: '#553e06',
|
@@ -273,7 +285,7 @@ var brass = {
|
|
273
285
|
tint50: '#efe4cb',
|
274
286
|
tint60: '#fbf8f2'
|
275
287
|
};
|
276
|
-
|
288
|
+
const brown = {
|
277
289
|
shade50: '#170e07',
|
278
290
|
shade40: '#2b1a0e',
|
279
291
|
shade30: '#50301a',
|
@@ -287,7 +299,7 @@ var brown = {
|
|
287
299
|
tint50: '#edded3',
|
288
300
|
tint60: '#faf7f4'
|
289
301
|
};
|
290
|
-
|
302
|
+
const darkBrown = {
|
291
303
|
shade50: '#0c0704',
|
292
304
|
shade40: '#170c08',
|
293
305
|
shade30: '#2b1710',
|
@@ -301,7 +313,7 @@ var darkBrown = {
|
|
301
313
|
tint50: '#e3d2cb',
|
302
314
|
tint60: '#f8f3f2'
|
303
315
|
};
|
304
|
-
|
316
|
+
const lime = {
|
305
317
|
shade50: '#121b06',
|
306
318
|
shade40: '#23330b',
|
307
319
|
shade30: '#405f14',
|
@@ -315,7 +327,7 @@ var lime = {
|
|
315
327
|
tint50: '#e5f1d3',
|
316
328
|
tint60: '#f8fcf4'
|
317
329
|
};
|
318
|
-
|
330
|
+
const forest = {
|
319
331
|
shade50: '#0c1501',
|
320
332
|
shade40: '#162702',
|
321
333
|
shade30: '#294903',
|
@@ -329,7 +341,7 @@ var forest = {
|
|
329
341
|
tint50: '#dbebc7',
|
330
342
|
tint60: '#f6faf0'
|
331
343
|
};
|
332
|
-
|
344
|
+
const seafoam = {
|
333
345
|
shade50: '#002111',
|
334
346
|
shade40: '#003d20',
|
335
347
|
shade30: '#00723b',
|
@@ -343,7 +355,7 @@ var seafoam = {
|
|
343
355
|
tint50: '#cff7e4',
|
344
356
|
tint60: '#f3fdf8'
|
345
357
|
};
|
346
|
-
|
358
|
+
const lightGreen = {
|
347
359
|
shade50: '#031a02',
|
348
360
|
shade40: '#063004',
|
349
361
|
shade30: '#0b5a08',
|
@@ -357,7 +369,7 @@ var lightGreen = {
|
|
357
369
|
tint50: '#cef0cd',
|
358
370
|
tint60: '#f2fbf2'
|
359
371
|
};
|
360
|
-
|
372
|
+
const green = {
|
361
373
|
shade50: '#031403',
|
362
374
|
shade40: '#052505',
|
363
375
|
shade30: '#094509',
|
@@ -371,7 +383,7 @@ var green = {
|
|
371
383
|
tint50: '#c9eac9',
|
372
384
|
tint60: '#f1faf1'
|
373
385
|
};
|
374
|
-
|
386
|
+
const darkGreen = {
|
375
387
|
shade50: '#021102',
|
376
388
|
shade40: '#032003',
|
377
389
|
shade30: '#063b06',
|
@@ -385,7 +397,7 @@ var darkGreen = {
|
|
385
397
|
tint50: '#c6e7c6',
|
386
398
|
tint60: '#f0f9f0'
|
387
399
|
};
|
388
|
-
|
400
|
+
const lightTeal = {
|
389
401
|
shade50: '#001d1f',
|
390
402
|
shade40: '#00373a',
|
391
403
|
shade30: '#00666d',
|
@@ -399,7 +411,7 @@ var lightTeal = {
|
|
399
411
|
tint50: '#cef3f5',
|
400
412
|
tint60: '#f2fcfd'
|
401
413
|
};
|
402
|
-
|
414
|
+
const teal = {
|
403
415
|
shade50: '#001516',
|
404
416
|
shade40: '#012728',
|
405
417
|
shade30: '#02494c',
|
@@ -413,7 +425,7 @@ var teal = {
|
|
413
425
|
tint50: '#c7ebec',
|
414
426
|
tint60: '#f0fafa'
|
415
427
|
};
|
416
|
-
|
428
|
+
const darkTeal = {
|
417
429
|
shade50: '#001010',
|
418
430
|
shade40: '#001f1f',
|
419
431
|
shade30: '#003939',
|
@@ -427,7 +439,7 @@ var darkTeal = {
|
|
427
439
|
tint50: '#c2e7e7',
|
428
440
|
tint60: '#eff9f9'
|
429
441
|
};
|
430
|
-
|
442
|
+
const cyan = {
|
431
443
|
shade50: '#00181e',
|
432
444
|
shade40: '#002e38',
|
433
445
|
shade30: '#005669',
|
@@ -441,7 +453,7 @@ var cyan = {
|
|
441
453
|
tint50: '#cdedf4',
|
442
454
|
tint60: '#f2fafc'
|
443
455
|
};
|
444
|
-
|
456
|
+
const steel = {
|
445
457
|
shade50: '#000f12',
|
446
458
|
shade40: '#001b22',
|
447
459
|
shade30: '#00333f',
|
@@ -455,7 +467,7 @@ var steel = {
|
|
455
467
|
tint50: '#c3e1e8',
|
456
468
|
tint60: '#eff7f9'
|
457
469
|
};
|
458
|
-
|
470
|
+
const lightBlue = {
|
459
471
|
shade50: '#091823',
|
460
472
|
shade40: '#112d42',
|
461
473
|
shade30: '#20547c',
|
@@ -469,7 +481,7 @@ var lightBlue = {
|
|
469
481
|
tint50: '#dcedfa',
|
470
482
|
tint60: '#f6fafe'
|
471
483
|
};
|
472
|
-
|
484
|
+
const blue = {
|
473
485
|
shade50: '#001322',
|
474
486
|
shade40: '#002440',
|
475
487
|
shade30: '#004377',
|
@@ -483,7 +495,7 @@ var blue = {
|
|
483
495
|
tint50: '#d0e7f8',
|
484
496
|
tint60: '#f3f9fd'
|
485
497
|
};
|
486
|
-
|
498
|
+
const royalBlue = {
|
487
499
|
shade50: '#000c16',
|
488
500
|
shade40: '#00172a',
|
489
501
|
shade30: '#002c4e',
|
@@ -497,7 +509,7 @@ var royalBlue = {
|
|
497
509
|
tint50: '#c7dced',
|
498
510
|
tint60: '#f0f6fa'
|
499
511
|
};
|
500
|
-
|
512
|
+
const darkBlue = {
|
501
513
|
shade50: '#000910',
|
502
514
|
shade40: '#00111f',
|
503
515
|
shade30: '#002039',
|
@@ -511,7 +523,7 @@ var darkBlue = {
|
|
511
523
|
tint50: '#c2d6e7',
|
512
524
|
tint60: '#eff4f9'
|
513
525
|
};
|
514
|
-
|
526
|
+
const cornflower = {
|
515
527
|
shade50: '#0d1126',
|
516
528
|
shade40: '#182047',
|
517
529
|
shade30: '#2c3c85',
|
@@ -525,7 +537,7 @@ var cornflower = {
|
|
525
537
|
tint50: '#e1e6fc',
|
526
538
|
tint60: '#f7f9fe'
|
527
539
|
};
|
528
|
-
|
540
|
+
const navy = {
|
529
541
|
shade50: '#00061d',
|
530
542
|
shade40: '#000c36',
|
531
543
|
shade30: '#001665',
|
@@ -539,7 +551,7 @@ var navy = {
|
|
539
551
|
tint50: '#ccd5f3',
|
540
552
|
tint60: '#f2f4fc'
|
541
553
|
};
|
542
|
-
|
554
|
+
const lavender = {
|
543
555
|
shade50: '#120f25',
|
544
556
|
shade40: '#221d46',
|
545
557
|
shade30: '#3f3682',
|
@@ -553,7 +565,7 @@ var lavender = {
|
|
553
565
|
tint50: '#e7e4fb',
|
554
566
|
tint60: '#f9f8fe'
|
555
567
|
};
|
556
|
-
|
568
|
+
const purple = {
|
557
569
|
shade50: '#0f0717',
|
558
570
|
shade40: '#1c0e2b',
|
559
571
|
shade30: '#341a51',
|
@@ -567,7 +579,7 @@ var purple = {
|
|
567
579
|
tint50: '#e0d3ed',
|
568
580
|
tint60: '#f7f4fb'
|
569
581
|
};
|
570
|
-
|
582
|
+
const darkPurple = {
|
571
583
|
shade50: '#0a0411',
|
572
584
|
shade40: '#130820',
|
573
585
|
shade30: '#240f3c',
|
@@ -581,7 +593,7 @@ var darkPurple = {
|
|
581
593
|
tint50: '#d8cce7',
|
582
594
|
tint60: '#f5f2f9'
|
583
595
|
};
|
584
|
-
|
596
|
+
const orchid = {
|
585
597
|
shade50: '#16101d',
|
586
598
|
shade40: '#281e37',
|
587
599
|
shade30: '#4c3867',
|
@@ -595,7 +607,7 @@ var orchid = {
|
|
595
607
|
tint50: '#e9e2f4',
|
596
608
|
tint60: '#f9f8fc'
|
597
609
|
};
|
598
|
-
|
610
|
+
const grape = {
|
599
611
|
shade50: '#160418',
|
600
612
|
shade40: '#29072e',
|
601
613
|
shade30: '#4c0d55',
|
@@ -609,7 +621,7 @@ var grape = {
|
|
609
621
|
tint50: '#eaceef',
|
610
622
|
tint60: '#faf2fb'
|
611
623
|
};
|
612
|
-
|
624
|
+
const berry = {
|
613
625
|
shade50: '#1f091d',
|
614
626
|
shade40: '#3a1136',
|
615
627
|
shade30: '#6d2064',
|
@@ -623,7 +635,7 @@ var berry = {
|
|
623
635
|
tint50: '#f5daf2',
|
624
636
|
tint60: '#fdf5fc'
|
625
637
|
};
|
626
|
-
|
638
|
+
const lilac = {
|
627
639
|
shade50: '#1c0b1f',
|
628
640
|
shade40: '#35153a',
|
629
641
|
shade30: '#63276d',
|
@@ -637,7 +649,7 @@ var lilac = {
|
|
637
649
|
tint50: '#f2dcf5',
|
638
650
|
tint60: '#fcf6fd'
|
639
651
|
};
|
640
|
-
|
652
|
+
const pink = {
|
641
653
|
shade50: '#24091b',
|
642
654
|
shade40: '#441232',
|
643
655
|
shade30: '#80215d',
|
@@ -651,7 +663,7 @@ var pink = {
|
|
651
663
|
tint50: '#fbddf0',
|
652
664
|
tint60: '#fef6fb'
|
653
665
|
};
|
654
|
-
|
666
|
+
const hotPink = {
|
655
667
|
shade50: '#240016',
|
656
668
|
shade40: '#44002a',
|
657
669
|
shade30: '#7f004e',
|
@@ -665,7 +677,7 @@ var hotPink = {
|
|
665
677
|
tint50: '#fbd2eb',
|
666
678
|
tint60: '#fef4fa'
|
667
679
|
};
|
668
|
-
|
680
|
+
const magenta = {
|
669
681
|
shade50: '#1f0013',
|
670
682
|
shade40: '#390024',
|
671
683
|
shade30: '#6b0043',
|
@@ -679,7 +691,7 @@ var magenta = {
|
|
679
691
|
tint50: '#f5cee6',
|
680
692
|
tint60: '#fcf2f9'
|
681
693
|
};
|
682
|
-
|
694
|
+
const plum = {
|
683
695
|
shade50: '#13000c',
|
684
696
|
shade40: '#240017',
|
685
697
|
shade30: '#43002b',
|
@@ -693,7 +705,7 @@ var plum = {
|
|
693
705
|
tint50: '#e9c4dc',
|
694
706
|
tint60: '#faf0f6'
|
695
707
|
};
|
696
|
-
|
708
|
+
const beige = {
|
697
709
|
shade50: '#141313',
|
698
710
|
shade40: '#252323',
|
699
711
|
shade30: '#444241',
|
@@ -707,7 +719,7 @@ var beige = {
|
|
707
719
|
tint50: '#eae8e8',
|
708
720
|
tint60: '#faf9f9'
|
709
721
|
};
|
710
|
-
|
722
|
+
const mink = {
|
711
723
|
shade50: '#0f0e0e',
|
712
724
|
shade40: '#1c1b1a',
|
713
725
|
shade30: '#343231',
|
@@ -721,7 +733,7 @@ var mink = {
|
|
721
733
|
tint50: '#e5e4e3',
|
722
734
|
tint60: '#f8f8f8'
|
723
735
|
};
|
724
|
-
|
736
|
+
const silver = {
|
725
737
|
shade50: '#151818',
|
726
738
|
shade40: '#282d2e',
|
727
739
|
shade30: '#4a5356',
|
@@ -735,7 +747,7 @@ var silver = {
|
|
735
747
|
tint50: '#eaeeef',
|
736
748
|
tint60: '#fafbfb'
|
737
749
|
};
|
738
|
-
|
750
|
+
const platinum = {
|
739
751
|
shade50: '#111314',
|
740
752
|
shade40: '#1f2426',
|
741
753
|
shade30: '#3b4447',
|
@@ -749,7 +761,7 @@ var platinum = {
|
|
749
761
|
tint50: '#e4e9ea',
|
750
762
|
tint60: '#f8f9fa'
|
751
763
|
};
|
752
|
-
|
764
|
+
const anchor = {
|
753
765
|
shade50: '#090a0b',
|
754
766
|
shade40: '#111315',
|
755
767
|
shade30: '#202427',
|
@@ -763,69 +775,75 @@ var anchor = {
|
|
763
775
|
tint50: '#dbdfe1',
|
764
776
|
tint60: '#f6f7f8'
|
765
777
|
};
|
766
|
-
|
767
|
-
shade50: '#
|
768
|
-
shade40: '#
|
769
|
-
shade30: '#
|
770
|
-
shade20: '#
|
771
|
-
shade10: '#
|
772
|
-
primary: '#
|
773
|
-
tint10: '#
|
774
|
-
tint20: '#
|
775
|
-
tint30: '#
|
776
|
-
tint40: '#
|
777
|
-
tint50: '#
|
778
|
-
tint60: '#
|
779
|
-
};
|
780
|
-
exports.
|
781
|
-
|
782
|
-
|
783
|
-
|
784
|
-
|
785
|
-
|
786
|
-
|
787
|
-
|
788
|
-
|
789
|
-
|
790
|
-
|
791
|
-
|
792
|
-
|
793
|
-
|
794
|
-
|
795
|
-
|
796
|
-
|
797
|
-
forest
|
798
|
-
seafoam
|
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
|
-
|
824
|
-
|
825
|
-
|
826
|
-
|
827
|
-
|
828
|
-
|
829
|
-
|
778
|
+
const charcoal = {
|
779
|
+
shade50: '#090909',
|
780
|
+
shade40: '#111111',
|
781
|
+
shade30: '#202020',
|
782
|
+
shade20: '#2b2b2b',
|
783
|
+
shade10: '#333333',
|
784
|
+
primary: '#393939',
|
785
|
+
tint10: '#515151',
|
786
|
+
tint20: '#686868',
|
787
|
+
tint30: '#888888',
|
788
|
+
tint40: '#c4c4c4',
|
789
|
+
tint50: '#dfdfdf',
|
790
|
+
tint60: '#f7f7f7'
|
791
|
+
};
|
792
|
+
exports.statusSharedColors = {
|
793
|
+
red,
|
794
|
+
green,
|
795
|
+
darkOrange,
|
796
|
+
yellow,
|
797
|
+
berry,
|
798
|
+
lightGreen,
|
799
|
+
marigold
|
800
|
+
};
|
801
|
+
exports.personaSharedColors = {
|
802
|
+
darkRed,
|
803
|
+
cranberry,
|
804
|
+
pumpkin,
|
805
|
+
peach,
|
806
|
+
gold,
|
807
|
+
brass,
|
808
|
+
brown,
|
809
|
+
forest,
|
810
|
+
seafoam,
|
811
|
+
darkGreen,
|
812
|
+
lightTeal,
|
813
|
+
teal,
|
814
|
+
steel,
|
815
|
+
blue,
|
816
|
+
royalBlue,
|
817
|
+
cornflower,
|
818
|
+
navy,
|
819
|
+
lavender,
|
820
|
+
purple,
|
821
|
+
grape,
|
822
|
+
lilac,
|
823
|
+
pink,
|
824
|
+
magenta,
|
825
|
+
plum,
|
826
|
+
beige,
|
827
|
+
mink,
|
828
|
+
platinum,
|
829
|
+
anchor
|
830
|
+
}; // These shared colors are currently not used in themes
|
831
|
+
// Not exported from the package, we can consider removing them
|
832
|
+
|
833
|
+
exports.unusedSharedColors = {
|
834
|
+
burgundy,
|
835
|
+
bronze,
|
836
|
+
orange,
|
837
|
+
darkBrown,
|
838
|
+
lime,
|
839
|
+
darkTeal,
|
840
|
+
cyan,
|
841
|
+
lightBlue,
|
842
|
+
darkBlue,
|
843
|
+
darkPurple,
|
844
|
+
orchid,
|
845
|
+
hotPink,
|
846
|
+
silver,
|
847
|
+
charcoal
|
830
848
|
};
|
831
849
|
//# sourceMappingURL=colors.js.map
|