@fluentui/react-theme 9.0.0-nightly.f81b28ceb3.1 → 9.0.0-rc.4
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 +173 -8
- package/CHANGELOG.md +60 -6
- package/dist/react-theme.d.ts +106 -74
- package/lib/alias/dark.js +155 -114
- package/lib/alias/dark.js.map +1 -1
- package/lib/alias/highContrast.js +155 -114
- package/lib/alias/highContrast.js.map +1 -1
- package/lib/alias/light.js +155 -114
- package/lib/alias/light.js.map +1 -1
- package/lib/alias/teamsDark.js +155 -114
- package/lib/alias/teamsDark.js.map +1 -1
- package/lib/global/borderRadius.js +1 -1
- package/lib/global/borderRadius.js.map +1 -1
- package/lib/global/brandColors.d.ts +1 -0
- package/lib/global/brandColors.js +53 -31
- package/lib/global/brandColors.js.map +1 -1
- package/lib/global/colors.d.ts +2 -2
- package/lib/global/colors.js +125 -125
- package/lib/global/colors.js.map +1 -1
- package/lib/global/fonts.js +4 -4
- package/lib/global/fonts.js.map +1 -1
- package/lib/global/index.js.map +1 -1
- package/lib/global/strokeWidths.js +1 -1
- package/lib/global/strokeWidths.js.map +1 -1
- package/lib/index.d.ts +3 -1
- package/lib/index.js +2 -0
- package/lib/index.js.map +1 -1
- package/lib/themeToTokensObject.d.ts +10 -0
- 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/highContrastTheme.js +1 -1
- package/lib/themes/web/highContrastTheme.js.map +1 -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.d.ts +2 -0
- package/lib/tokens.js +687 -0
- package/lib/tokens.js.map +1 -0
- package/lib/types.d.ts +92 -77
- package/lib/types.js.map +1 -1
- package/lib/utils/createDarkTheme.js +13 -4
- package/lib/utils/createDarkTheme.js.map +1 -1
- package/lib/utils/createHighContrastTheme.js +13 -4
- package/lib/utils/createHighContrastTheme.js.map +1 -1
- package/lib/utils/createLightTheme.js +13 -4
- package/lib/utils/createLightTheme.js.map +1 -1
- package/lib/utils/createTeamsDarkTheme.js +13 -4
- package/lib/utils/createTeamsDarkTheme.js.map +1 -1
- package/lib/utils/index.d.ts +0 -2
- package/lib/utils/index.js +0 -2
- package/lib/utils/index.js.map +1 -1
- package/lib/utils/shadows.d.ts +2 -1
- package/lib/utils/shadows.js +7 -7
- package/lib/utils/shadows.js.map +1 -1
- package/lib-commonjs/alias/dark.js +155 -115
- package/lib-commonjs/alias/dark.js.map +1 -1
- package/lib-commonjs/alias/highContrast.js +155 -115
- package/lib-commonjs/alias/highContrast.js.map +1 -1
- package/lib-commonjs/alias/light.js +155 -115
- package/lib-commonjs/alias/light.js.map +1 -1
- package/lib-commonjs/alias/teamsDark.js +155 -115
- package/lib-commonjs/alias/teamsDark.js.map +1 -1
- package/lib-commonjs/global/borderRadius.js.map +1 -1
- package/lib-commonjs/global/brandColors.d.ts +1 -0
- package/lib-commonjs/global/brandColors.js +52 -30
- package/lib-commonjs/global/brandColors.js.map +1 -1
- package/lib-commonjs/global/colors.d.ts +2 -2
- package/lib-commonjs/global/colors.js +113 -113
- package/lib-commonjs/global/colors.js.map +1 -1
- package/lib-commonjs/global/fonts.js.map +1 -1
- package/lib-commonjs/global/index.js +1 -1
- package/lib-commonjs/global/index.js.map +1 -1
- package/lib-commonjs/global/strokeWidths.js.map +1 -1
- package/lib-commonjs/index.d.ts +3 -1
- package/lib-commonjs/index.js +20 -1
- package/lib-commonjs/index.js.map +1 -1
- package/lib-commonjs/themeToTokensObject.d.ts +10 -0
- 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/highContrastTheme.js +1 -1
- package/lib-commonjs/themes/web/highContrastTheme.js.map +1 -1
- package/lib-commonjs/themes/web/index.js +1 -1
- 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.d.ts +2 -0
- package/lib-commonjs/tokens.js +693 -0
- package/lib-commonjs/tokens.js.map +1 -0
- package/lib-commonjs/types.d.ts +92 -77
- package/lib-commonjs/types.js.map +1 -1
- package/lib-commonjs/utils/createDarkTheme.js +16 -8
- package/lib-commonjs/utils/createDarkTheme.js.map +1 -1
- package/lib-commonjs/utils/createHighContrastTheme.js +16 -8
- package/lib-commonjs/utils/createHighContrastTheme.js.map +1 -1
- package/lib-commonjs/utils/createLightTheme.js +16 -8
- package/lib-commonjs/utils/createLightTheme.js.map +1 -1
- package/lib-commonjs/utils/createTeamsDarkTheme.js +16 -8
- package/lib-commonjs/utils/createTeamsDarkTheme.js.map +1 -1
- package/lib-commonjs/utils/index.d.ts +0 -2
- package/lib-commonjs/utils/index.js +1 -13
- package/lib-commonjs/utils/index.js.map +1 -1
- package/lib-commonjs/utils/shadows.d.ts +2 -1
- package/lib-commonjs/utils/shadows.js +7 -7
- package/lib-commonjs/utils/shadows.js.map +1 -1
- package/package.json +13 -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/themeToCSSVariables.d.ts +0 -2
- package/lib/utils/themeToCSSVariables.js +0 -12
- package/lib/utils/themeToCSSVariables.js.map +0 -1
- 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/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,17 @@ 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
|
-
export
|
82
|
-
export
|
83
|
-
export
|
84
|
-
export
|
85
|
-
export
|
86
|
-
export
|
87
|
-
export
|
88
|
-
|
78
|
+
export const white = '#ffffff';
|
79
|
+
export const black = '#000000';
|
80
|
+
export const hcHyperlink = '#ffff00';
|
81
|
+
export const hcHighlight = '#1aebff';
|
82
|
+
export const hcDisabled = '#3ff23f';
|
83
|
+
export const hcCanvas = '#000000';
|
84
|
+
export const hcCanvasText = '#ffffff';
|
85
|
+
export const hcHighlightText = '#000000';
|
86
|
+
export const hcButtonText = '#000000';
|
87
|
+
export const hcButtonFace = '#ffffff';
|
88
|
+
const darkRed = {
|
89
89
|
shade50: '#130204',
|
90
90
|
shade40: '#230308',
|
91
91
|
shade30: '#420610',
|
@@ -99,7 +99,7 @@ var darkRed = {
|
|
99
99
|
tint50: '#e9c7cd',
|
100
100
|
tint60: '#f9f0f2'
|
101
101
|
};
|
102
|
-
|
102
|
+
const burgundy = {
|
103
103
|
shade50: '#1a0607',
|
104
104
|
shade40: '#310b0d',
|
105
105
|
shade30: '#5c1519',
|
@@ -113,7 +113,7 @@ var burgundy = {
|
|
113
113
|
tint50: '#f0d3d4',
|
114
114
|
tint60: '#fbf4f4'
|
115
115
|
};
|
116
|
-
|
116
|
+
const cranberry = {
|
117
117
|
shade50: '#200205',
|
118
118
|
shade40: '#3b0509',
|
119
119
|
shade30: '#6e0811',
|
@@ -127,7 +127,7 @@ var cranberry = {
|
|
127
127
|
tint50: '#f6d1d5',
|
128
128
|
tint60: '#fdf3f4'
|
129
129
|
};
|
130
|
-
|
130
|
+
const red = {
|
131
131
|
shade50: '#210809',
|
132
132
|
shade40: '#3f1011',
|
133
133
|
shade30: '#751d1f',
|
@@ -141,7 +141,7 @@ var red = {
|
|
141
141
|
tint50: '#f8dadb',
|
142
142
|
tint60: '#fdf6f6'
|
143
143
|
};
|
144
|
-
|
144
|
+
const darkOrange = {
|
145
145
|
shade50: '#230900',
|
146
146
|
shade40: '#411200',
|
147
147
|
shade30: '#7a2101',
|
@@ -155,7 +155,7 @@ var darkOrange = {
|
|
155
155
|
tint50: '#f9dcd1',
|
156
156
|
tint60: '#fdf6f3'
|
157
157
|
};
|
158
|
-
|
158
|
+
const bronze = {
|
159
159
|
shade50: '#1b0a01',
|
160
160
|
shade40: '#321303',
|
161
161
|
shade30: '#5e2405',
|
@@ -169,7 +169,7 @@ var bronze = {
|
|
169
169
|
tint50: '#f1d9cc',
|
170
170
|
tint60: '#fbf5f2'
|
171
171
|
};
|
172
|
-
|
172
|
+
const pumpkin = {
|
173
173
|
shade50: '#200d03',
|
174
174
|
shade40: '#3d1805',
|
175
175
|
shade30: '#712d09',
|
@@ -183,7 +183,7 @@ var pumpkin = {
|
|
183
183
|
tint50: '#f7dfd2',
|
184
184
|
tint60: '#fdf7f4'
|
185
185
|
};
|
186
|
-
|
186
|
+
const orange = {
|
187
187
|
shade50: '#271002',
|
188
188
|
shade40: '#4a1e04',
|
189
189
|
shade30: '#8a3707',
|
@@ -197,7 +197,7 @@ var orange = {
|
|
197
197
|
tint50: '#fee5d7',
|
198
198
|
tint60: '#fff9f5'
|
199
199
|
};
|
200
|
-
|
200
|
+
const peach = {
|
201
201
|
shade50: '#291600',
|
202
202
|
shade40: '#4d2a00',
|
203
203
|
shade30: '#8f4e00',
|
@@ -211,7 +211,7 @@ var peach = {
|
|
211
211
|
tint50: '#ffedd6',
|
212
212
|
tint60: '#fffaf5'
|
213
213
|
};
|
214
|
-
|
214
|
+
const marigold = {
|
215
215
|
shade50: '#251a00',
|
216
216
|
shade40: '#463100',
|
217
217
|
shade30: '#835b00',
|
@@ -225,7 +225,7 @@ var marigold = {
|
|
225
225
|
tint50: '#fcefd3',
|
226
226
|
tint60: '#fefbf4'
|
227
227
|
};
|
228
|
-
|
228
|
+
const yellow = {
|
229
229
|
shade50: '#282400',
|
230
230
|
shade40: '#4c4400',
|
231
231
|
shade30: '#8e7f00',
|
@@ -239,7 +239,7 @@ var yellow = {
|
|
239
239
|
tint50: '#fffad6',
|
240
240
|
tint60: '#fffef5'
|
241
241
|
};
|
242
|
-
|
242
|
+
const gold = {
|
243
243
|
shade50: '#1f1900',
|
244
244
|
shade40: '#3a2f00',
|
245
245
|
shade30: '#6c5700',
|
@@ -253,7 +253,7 @@ var gold = {
|
|
253
253
|
tint50: '#f5eece',
|
254
254
|
tint60: '#fdfbf2'
|
255
255
|
};
|
256
|
-
|
256
|
+
const brass = {
|
257
257
|
shade50: '#181202',
|
258
258
|
shade40: '#2e2103',
|
259
259
|
shade30: '#553e06',
|
@@ -267,7 +267,7 @@ var brass = {
|
|
267
267
|
tint50: '#efe4cb',
|
268
268
|
tint60: '#fbf8f2'
|
269
269
|
};
|
270
|
-
|
270
|
+
const brown = {
|
271
271
|
shade50: '#170e07',
|
272
272
|
shade40: '#2b1a0e',
|
273
273
|
shade30: '#50301a',
|
@@ -281,7 +281,7 @@ var brown = {
|
|
281
281
|
tint50: '#edded3',
|
282
282
|
tint60: '#faf7f4'
|
283
283
|
};
|
284
|
-
|
284
|
+
const darkBrown = {
|
285
285
|
shade50: '#0c0704',
|
286
286
|
shade40: '#170c08',
|
287
287
|
shade30: '#2b1710',
|
@@ -295,7 +295,7 @@ var darkBrown = {
|
|
295
295
|
tint50: '#e3d2cb',
|
296
296
|
tint60: '#f8f3f2'
|
297
297
|
};
|
298
|
-
|
298
|
+
const lime = {
|
299
299
|
shade50: '#121b06',
|
300
300
|
shade40: '#23330b',
|
301
301
|
shade30: '#405f14',
|
@@ -309,7 +309,7 @@ var lime = {
|
|
309
309
|
tint50: '#e5f1d3',
|
310
310
|
tint60: '#f8fcf4'
|
311
311
|
};
|
312
|
-
|
312
|
+
const forest = {
|
313
313
|
shade50: '#0c1501',
|
314
314
|
shade40: '#162702',
|
315
315
|
shade30: '#294903',
|
@@ -323,7 +323,7 @@ var forest = {
|
|
323
323
|
tint50: '#dbebc7',
|
324
324
|
tint60: '#f6faf0'
|
325
325
|
};
|
326
|
-
|
326
|
+
const seafoam = {
|
327
327
|
shade50: '#002111',
|
328
328
|
shade40: '#003d20',
|
329
329
|
shade30: '#00723b',
|
@@ -337,7 +337,7 @@ var seafoam = {
|
|
337
337
|
tint50: '#cff7e4',
|
338
338
|
tint60: '#f3fdf8'
|
339
339
|
};
|
340
|
-
|
340
|
+
const lightGreen = {
|
341
341
|
shade50: '#031a02',
|
342
342
|
shade40: '#063004',
|
343
343
|
shade30: '#0b5a08',
|
@@ -351,7 +351,7 @@ var lightGreen = {
|
|
351
351
|
tint50: '#cef0cd',
|
352
352
|
tint60: '#f2fbf2'
|
353
353
|
};
|
354
|
-
|
354
|
+
const green = {
|
355
355
|
shade50: '#031403',
|
356
356
|
shade40: '#052505',
|
357
357
|
shade30: '#094509',
|
@@ -365,7 +365,7 @@ var green = {
|
|
365
365
|
tint50: '#c9eac9',
|
366
366
|
tint60: '#f1faf1'
|
367
367
|
};
|
368
|
-
|
368
|
+
const darkGreen = {
|
369
369
|
shade50: '#021102',
|
370
370
|
shade40: '#032003',
|
371
371
|
shade30: '#063b06',
|
@@ -379,7 +379,7 @@ var darkGreen = {
|
|
379
379
|
tint50: '#c6e7c6',
|
380
380
|
tint60: '#f0f9f0'
|
381
381
|
};
|
382
|
-
|
382
|
+
const lightTeal = {
|
383
383
|
shade50: '#001d1f',
|
384
384
|
shade40: '#00373a',
|
385
385
|
shade30: '#00666d',
|
@@ -393,7 +393,7 @@ var lightTeal = {
|
|
393
393
|
tint50: '#cef3f5',
|
394
394
|
tint60: '#f2fcfd'
|
395
395
|
};
|
396
|
-
|
396
|
+
const teal = {
|
397
397
|
shade50: '#001516',
|
398
398
|
shade40: '#012728',
|
399
399
|
shade30: '#02494c',
|
@@ -407,7 +407,7 @@ var teal = {
|
|
407
407
|
tint50: '#c7ebec',
|
408
408
|
tint60: '#f0fafa'
|
409
409
|
};
|
410
|
-
|
410
|
+
const darkTeal = {
|
411
411
|
shade50: '#001010',
|
412
412
|
shade40: '#001f1f',
|
413
413
|
shade30: '#003939',
|
@@ -421,7 +421,7 @@ var darkTeal = {
|
|
421
421
|
tint50: '#c2e7e7',
|
422
422
|
tint60: '#eff9f9'
|
423
423
|
};
|
424
|
-
|
424
|
+
const cyan = {
|
425
425
|
shade50: '#00181e',
|
426
426
|
shade40: '#002e38',
|
427
427
|
shade30: '#005669',
|
@@ -435,7 +435,7 @@ var cyan = {
|
|
435
435
|
tint50: '#cdedf4',
|
436
436
|
tint60: '#f2fafc'
|
437
437
|
};
|
438
|
-
|
438
|
+
const steel = {
|
439
439
|
shade50: '#000f12',
|
440
440
|
shade40: '#001b22',
|
441
441
|
shade30: '#00333f',
|
@@ -449,7 +449,7 @@ var steel = {
|
|
449
449
|
tint50: '#c3e1e8',
|
450
450
|
tint60: '#eff7f9'
|
451
451
|
};
|
452
|
-
|
452
|
+
const lightBlue = {
|
453
453
|
shade50: '#091823',
|
454
454
|
shade40: '#112d42',
|
455
455
|
shade30: '#20547c',
|
@@ -463,7 +463,7 @@ var lightBlue = {
|
|
463
463
|
tint50: '#dcedfa',
|
464
464
|
tint60: '#f6fafe'
|
465
465
|
};
|
466
|
-
|
466
|
+
const blue = {
|
467
467
|
shade50: '#001322',
|
468
468
|
shade40: '#002440',
|
469
469
|
shade30: '#004377',
|
@@ -477,7 +477,7 @@ var blue = {
|
|
477
477
|
tint50: '#d0e7f8',
|
478
478
|
tint60: '#f3f9fd'
|
479
479
|
};
|
480
|
-
|
480
|
+
const royalBlue = {
|
481
481
|
shade50: '#000c16',
|
482
482
|
shade40: '#00172a',
|
483
483
|
shade30: '#002c4e',
|
@@ -491,7 +491,7 @@ var royalBlue = {
|
|
491
491
|
tint50: '#c7dced',
|
492
492
|
tint60: '#f0f6fa'
|
493
493
|
};
|
494
|
-
|
494
|
+
const darkBlue = {
|
495
495
|
shade50: '#000910',
|
496
496
|
shade40: '#00111f',
|
497
497
|
shade30: '#002039',
|
@@ -505,7 +505,7 @@ var darkBlue = {
|
|
505
505
|
tint50: '#c2d6e7',
|
506
506
|
tint60: '#eff4f9'
|
507
507
|
};
|
508
|
-
|
508
|
+
const cornflower = {
|
509
509
|
shade50: '#0d1126',
|
510
510
|
shade40: '#182047',
|
511
511
|
shade30: '#2c3c85',
|
@@ -519,7 +519,7 @@ var cornflower = {
|
|
519
519
|
tint50: '#e1e6fc',
|
520
520
|
tint60: '#f7f9fe'
|
521
521
|
};
|
522
|
-
|
522
|
+
const navy = {
|
523
523
|
shade50: '#00061d',
|
524
524
|
shade40: '#000c36',
|
525
525
|
shade30: '#001665',
|
@@ -533,7 +533,7 @@ var navy = {
|
|
533
533
|
tint50: '#ccd5f3',
|
534
534
|
tint60: '#f2f4fc'
|
535
535
|
};
|
536
|
-
|
536
|
+
const lavender = {
|
537
537
|
shade50: '#120f25',
|
538
538
|
shade40: '#221d46',
|
539
539
|
shade30: '#3f3682',
|
@@ -547,7 +547,7 @@ var lavender = {
|
|
547
547
|
tint50: '#e7e4fb',
|
548
548
|
tint60: '#f9f8fe'
|
549
549
|
};
|
550
|
-
|
550
|
+
const purple = {
|
551
551
|
shade50: '#0f0717',
|
552
552
|
shade40: '#1c0e2b',
|
553
553
|
shade30: '#341a51',
|
@@ -561,7 +561,7 @@ var purple = {
|
|
561
561
|
tint50: '#e0d3ed',
|
562
562
|
tint60: '#f7f4fb'
|
563
563
|
};
|
564
|
-
|
564
|
+
const darkPurple = {
|
565
565
|
shade50: '#0a0411',
|
566
566
|
shade40: '#130820',
|
567
567
|
shade30: '#240f3c',
|
@@ -575,7 +575,7 @@ var darkPurple = {
|
|
575
575
|
tint50: '#d8cce7',
|
576
576
|
tint60: '#f5f2f9'
|
577
577
|
};
|
578
|
-
|
578
|
+
const orchid = {
|
579
579
|
shade50: '#16101d',
|
580
580
|
shade40: '#281e37',
|
581
581
|
shade30: '#4c3867',
|
@@ -589,7 +589,7 @@ var orchid = {
|
|
589
589
|
tint50: '#e9e2f4',
|
590
590
|
tint60: '#f9f8fc'
|
591
591
|
};
|
592
|
-
|
592
|
+
const grape = {
|
593
593
|
shade50: '#160418',
|
594
594
|
shade40: '#29072e',
|
595
595
|
shade30: '#4c0d55',
|
@@ -603,7 +603,7 @@ var grape = {
|
|
603
603
|
tint50: '#eaceef',
|
604
604
|
tint60: '#faf2fb'
|
605
605
|
};
|
606
|
-
|
606
|
+
const berry = {
|
607
607
|
shade50: '#1f091d',
|
608
608
|
shade40: '#3a1136',
|
609
609
|
shade30: '#6d2064',
|
@@ -617,7 +617,7 @@ var berry = {
|
|
617
617
|
tint50: '#f5daf2',
|
618
618
|
tint60: '#fdf5fc'
|
619
619
|
};
|
620
|
-
|
620
|
+
const lilac = {
|
621
621
|
shade50: '#1c0b1f',
|
622
622
|
shade40: '#35153a',
|
623
623
|
shade30: '#63276d',
|
@@ -631,7 +631,7 @@ var lilac = {
|
|
631
631
|
tint50: '#f2dcf5',
|
632
632
|
tint60: '#fcf6fd'
|
633
633
|
};
|
634
|
-
|
634
|
+
const pink = {
|
635
635
|
shade50: '#24091b',
|
636
636
|
shade40: '#441232',
|
637
637
|
shade30: '#80215d',
|
@@ -645,7 +645,7 @@ var pink = {
|
|
645
645
|
tint50: '#fbddf0',
|
646
646
|
tint60: '#fef6fb'
|
647
647
|
};
|
648
|
-
|
648
|
+
const hotPink = {
|
649
649
|
shade50: '#240016',
|
650
650
|
shade40: '#44002a',
|
651
651
|
shade30: '#7f004e',
|
@@ -659,7 +659,7 @@ var hotPink = {
|
|
659
659
|
tint50: '#fbd2eb',
|
660
660
|
tint60: '#fef4fa'
|
661
661
|
};
|
662
|
-
|
662
|
+
const magenta = {
|
663
663
|
shade50: '#1f0013',
|
664
664
|
shade40: '#390024',
|
665
665
|
shade30: '#6b0043',
|
@@ -673,7 +673,7 @@ var magenta = {
|
|
673
673
|
tint50: '#f5cee6',
|
674
674
|
tint60: '#fcf2f9'
|
675
675
|
};
|
676
|
-
|
676
|
+
const plum = {
|
677
677
|
shade50: '#13000c',
|
678
678
|
shade40: '#240017',
|
679
679
|
shade30: '#43002b',
|
@@ -687,7 +687,7 @@ var plum = {
|
|
687
687
|
tint50: '#e9c4dc',
|
688
688
|
tint60: '#faf0f6'
|
689
689
|
};
|
690
|
-
|
690
|
+
const beige = {
|
691
691
|
shade50: '#141313',
|
692
692
|
shade40: '#252323',
|
693
693
|
shade30: '#444241',
|
@@ -701,7 +701,7 @@ var beige = {
|
|
701
701
|
tint50: '#eae8e8',
|
702
702
|
tint60: '#faf9f9'
|
703
703
|
};
|
704
|
-
|
704
|
+
const mink = {
|
705
705
|
shade50: '#0f0e0e',
|
706
706
|
shade40: '#1c1b1a',
|
707
707
|
shade30: '#343231',
|
@@ -715,7 +715,7 @@ var mink = {
|
|
715
715
|
tint50: '#e5e4e3',
|
716
716
|
tint60: '#f8f8f8'
|
717
717
|
};
|
718
|
-
|
718
|
+
const silver = {
|
719
719
|
shade50: '#151818',
|
720
720
|
shade40: '#282d2e',
|
721
721
|
shade30: '#4a5356',
|
@@ -729,7 +729,7 @@ var silver = {
|
|
729
729
|
tint50: '#eaeeef',
|
730
730
|
tint60: '#fafbfb'
|
731
731
|
};
|
732
|
-
|
732
|
+
const platinum = {
|
733
733
|
shade50: '#111314',
|
734
734
|
shade40: '#1f2426',
|
735
735
|
shade30: '#3b4447',
|
@@ -743,7 +743,7 @@ var platinum = {
|
|
743
743
|
tint50: '#e4e9ea',
|
744
744
|
tint60: '#f8f9fa'
|
745
745
|
};
|
746
|
-
|
746
|
+
const anchor = {
|
747
747
|
shade50: '#090a0b',
|
748
748
|
shade40: '#111315',
|
749
749
|
shade30: '#202427',
|
@@ -757,69 +757,69 @@ var anchor = {
|
|
757
757
|
tint50: '#dbdfe1',
|
758
758
|
tint60: '#f6f7f8'
|
759
759
|
};
|
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
|
-
darkRed
|
776
|
-
burgundy
|
777
|
-
cranberry
|
778
|
-
red
|
779
|
-
darkOrange
|
780
|
-
bronze
|
781
|
-
pumpkin
|
782
|
-
orange
|
783
|
-
peach
|
784
|
-
marigold
|
785
|
-
yellow
|
786
|
-
gold
|
787
|
-
brass
|
788
|
-
brown
|
789
|
-
darkBrown
|
790
|
-
lime
|
791
|
-
forest
|
792
|
-
seafoam
|
793
|
-
lightGreen
|
794
|
-
green
|
795
|
-
darkGreen
|
796
|
-
lightTeal
|
797
|
-
teal
|
798
|
-
darkTeal
|
799
|
-
cyan
|
800
|
-
steel
|
801
|
-
lightBlue
|
802
|
-
blue
|
803
|
-
royalBlue
|
804
|
-
darkBlue
|
805
|
-
cornflower
|
806
|
-
navy
|
807
|
-
lavender
|
808
|
-
purple
|
809
|
-
darkPurple
|
810
|
-
orchid
|
811
|
-
grape
|
812
|
-
berry
|
813
|
-
lilac
|
814
|
-
pink
|
815
|
-
hotPink
|
816
|
-
magenta
|
817
|
-
plum
|
818
|
-
beige
|
819
|
-
mink
|
820
|
-
silver
|
821
|
-
platinum
|
822
|
-
anchor
|
823
|
-
charcoal
|
760
|
+
const charcoal = {
|
761
|
+
shade50: '#090909',
|
762
|
+
shade40: '#111111',
|
763
|
+
shade30: '#202020',
|
764
|
+
shade20: '#2b2b2b',
|
765
|
+
shade10: '#333333',
|
766
|
+
primary: '#393939',
|
767
|
+
tint10: '#515151',
|
768
|
+
tint20: '#686868',
|
769
|
+
tint30: '#888888',
|
770
|
+
tint40: '#c4c4c4',
|
771
|
+
tint50: '#dfdfdf',
|
772
|
+
tint60: '#f7f7f7'
|
773
|
+
};
|
774
|
+
export const sharedColors = {
|
775
|
+
darkRed,
|
776
|
+
burgundy,
|
777
|
+
cranberry,
|
778
|
+
red,
|
779
|
+
darkOrange,
|
780
|
+
bronze,
|
781
|
+
pumpkin,
|
782
|
+
orange,
|
783
|
+
peach,
|
784
|
+
marigold,
|
785
|
+
yellow,
|
786
|
+
gold,
|
787
|
+
brass,
|
788
|
+
brown,
|
789
|
+
darkBrown,
|
790
|
+
lime,
|
791
|
+
forest,
|
792
|
+
seafoam,
|
793
|
+
lightGreen,
|
794
|
+
green,
|
795
|
+
darkGreen,
|
796
|
+
lightTeal,
|
797
|
+
teal,
|
798
|
+
darkTeal,
|
799
|
+
cyan,
|
800
|
+
steel,
|
801
|
+
lightBlue,
|
802
|
+
blue,
|
803
|
+
royalBlue,
|
804
|
+
darkBlue,
|
805
|
+
cornflower,
|
806
|
+
navy,
|
807
|
+
lavender,
|
808
|
+
purple,
|
809
|
+
darkPurple,
|
810
|
+
orchid,
|
811
|
+
grape,
|
812
|
+
berry,
|
813
|
+
lilac,
|
814
|
+
pink,
|
815
|
+
hotPink,
|
816
|
+
magenta,
|
817
|
+
plum,
|
818
|
+
beige,
|
819
|
+
mink,
|
820
|
+
silver,
|
821
|
+
platinum,
|
822
|
+
anchor,
|
823
|
+
charcoal
|
824
824
|
};
|
825
825
|
//# sourceMappingURL=colors.js.map
|