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