@fluentui/react-theme 9.0.0-nightly.b5b7401007.0 → 9.0.0-rc.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (139) hide show
  1. package/CHANGELOG.json +154 -10
  2. package/CHANGELOG.md +51 -7
  3. package/dist/react-theme.d.ts +106 -74
  4. package/lib/alias/dark.js +155 -114
  5. package/lib/alias/dark.js.map +1 -1
  6. package/lib/alias/highContrast.js +155 -114
  7. package/lib/alias/highContrast.js.map +1 -1
  8. package/lib/alias/light.js +155 -114
  9. package/lib/alias/light.js.map +1 -1
  10. package/lib/alias/teamsDark.js +155 -114
  11. package/lib/alias/teamsDark.js.map +1 -1
  12. package/lib/global/borderRadius.js +1 -1
  13. package/lib/global/borderRadius.js.map +1 -1
  14. package/lib/global/brandColors.d.ts +1 -0
  15. package/lib/global/brandColors.js +53 -31
  16. package/lib/global/brandColors.js.map +1 -1
  17. package/lib/global/colors.d.ts +2 -2
  18. package/lib/global/colors.js +125 -125
  19. package/lib/global/colors.js.map +1 -1
  20. package/lib/global/fonts.js +4 -4
  21. package/lib/global/fonts.js.map +1 -1
  22. package/lib/global/index.js.map +1 -1
  23. package/lib/global/strokeWidths.js +1 -1
  24. package/lib/global/strokeWidths.js.map +1 -1
  25. package/lib/index.d.ts +3 -1
  26. package/lib/index.js +2 -0
  27. package/lib/index.js.map +1 -1
  28. package/lib/themeToTokensObject.d.ts +10 -0
  29. package/lib/themeToTokensObject.js +19 -0
  30. package/lib/themeToTokensObject.js.map +1 -0
  31. package/lib/themes/index.js.map +1 -1
  32. package/lib/themes/teams/darkTheme.js +1 -1
  33. package/lib/themes/teams/darkTheme.js.map +1 -1
  34. package/lib/themes/teams/highContrastTheme.js +1 -1
  35. package/lib/themes/teams/highContrastTheme.js.map +1 -1
  36. package/lib/themes/teams/index.js.map +1 -1
  37. package/lib/themes/teams/lightTheme.js +1 -1
  38. package/lib/themes/teams/lightTheme.js.map +1 -1
  39. package/lib/themes/web/darkTheme.js +1 -1
  40. package/lib/themes/web/darkTheme.js.map +1 -1
  41. package/lib/themes/web/highContrastTheme.js +1 -1
  42. package/lib/themes/web/highContrastTheme.js.map +1 -1
  43. package/lib/themes/web/index.js.map +1 -1
  44. package/lib/themes/web/lightTheme.js +1 -1
  45. package/lib/themes/web/lightTheme.js.map +1 -1
  46. package/lib/tokens.d.ts +2 -0
  47. package/lib/tokens.js +687 -0
  48. package/lib/tokens.js.map +1 -0
  49. package/lib/types.d.ts +92 -77
  50. package/lib/types.js.map +1 -1
  51. package/lib/utils/createDarkTheme.js +13 -4
  52. package/lib/utils/createDarkTheme.js.map +1 -1
  53. package/lib/utils/createHighContrastTheme.js +13 -4
  54. package/lib/utils/createHighContrastTheme.js.map +1 -1
  55. package/lib/utils/createLightTheme.js +13 -4
  56. package/lib/utils/createLightTheme.js.map +1 -1
  57. package/lib/utils/createTeamsDarkTheme.js +13 -4
  58. package/lib/utils/createTeamsDarkTheme.js.map +1 -1
  59. package/lib/utils/index.d.ts +0 -2
  60. package/lib/utils/index.js +0 -2
  61. package/lib/utils/index.js.map +1 -1
  62. package/lib/utils/shadows.d.ts +2 -1
  63. package/lib/utils/shadows.js +7 -7
  64. package/lib/utils/shadows.js.map +1 -1
  65. package/lib-commonjs/alias/dark.js +155 -115
  66. package/lib-commonjs/alias/dark.js.map +1 -1
  67. package/lib-commonjs/alias/highContrast.js +155 -115
  68. package/lib-commonjs/alias/highContrast.js.map +1 -1
  69. package/lib-commonjs/alias/light.js +155 -115
  70. package/lib-commonjs/alias/light.js.map +1 -1
  71. package/lib-commonjs/alias/teamsDark.js +155 -115
  72. package/lib-commonjs/alias/teamsDark.js.map +1 -1
  73. package/lib-commonjs/global/borderRadius.js.map +1 -1
  74. package/lib-commonjs/global/brandColors.d.ts +1 -0
  75. package/lib-commonjs/global/brandColors.js +52 -30
  76. package/lib-commonjs/global/brandColors.js.map +1 -1
  77. package/lib-commonjs/global/colors.d.ts +2 -2
  78. package/lib-commonjs/global/colors.js +113 -113
  79. package/lib-commonjs/global/colors.js.map +1 -1
  80. package/lib-commonjs/global/fonts.js.map +1 -1
  81. package/lib-commonjs/global/index.js +1 -1
  82. package/lib-commonjs/global/index.js.map +1 -1
  83. package/lib-commonjs/global/strokeWidths.js.map +1 -1
  84. package/lib-commonjs/index.d.ts +3 -1
  85. package/lib-commonjs/index.js +20 -1
  86. package/lib-commonjs/index.js.map +1 -1
  87. package/lib-commonjs/themeToTokensObject.d.ts +10 -0
  88. package/lib-commonjs/themeToTokensObject.js +28 -0
  89. package/lib-commonjs/themeToTokensObject.js.map +1 -0
  90. package/lib-commonjs/themes/index.js +1 -1
  91. package/lib-commonjs/themes/index.js.map +1 -1
  92. package/lib-commonjs/themes/teams/darkTheme.js +2 -2
  93. package/lib-commonjs/themes/teams/darkTheme.js.map +1 -1
  94. package/lib-commonjs/themes/teams/highContrastTheme.js +1 -1
  95. package/lib-commonjs/themes/teams/highContrastTheme.js.map +1 -1
  96. package/lib-commonjs/themes/teams/index.js +1 -1
  97. package/lib-commonjs/themes/teams/index.js.map +1 -1
  98. package/lib-commonjs/themes/teams/lightTheme.js +2 -2
  99. package/lib-commonjs/themes/teams/lightTheme.js.map +1 -1
  100. package/lib-commonjs/themes/web/darkTheme.js +2 -2
  101. package/lib-commonjs/themes/web/darkTheme.js.map +1 -1
  102. package/lib-commonjs/themes/web/highContrastTheme.js +1 -1
  103. package/lib-commonjs/themes/web/highContrastTheme.js.map +1 -1
  104. package/lib-commonjs/themes/web/index.js +1 -1
  105. package/lib-commonjs/themes/web/index.js.map +1 -1
  106. package/lib-commonjs/themes/web/lightTheme.js +2 -2
  107. package/lib-commonjs/themes/web/lightTheme.js.map +1 -1
  108. package/lib-commonjs/tokens.d.ts +2 -0
  109. package/lib-commonjs/tokens.js +693 -0
  110. package/lib-commonjs/tokens.js.map +1 -0
  111. package/lib-commonjs/types.d.ts +92 -77
  112. package/lib-commonjs/types.js.map +1 -1
  113. package/lib-commonjs/utils/createDarkTheme.js +16 -8
  114. package/lib-commonjs/utils/createDarkTheme.js.map +1 -1
  115. package/lib-commonjs/utils/createHighContrastTheme.js +16 -8
  116. package/lib-commonjs/utils/createHighContrastTheme.js.map +1 -1
  117. package/lib-commonjs/utils/createLightTheme.js +16 -8
  118. package/lib-commonjs/utils/createLightTheme.js.map +1 -1
  119. package/lib-commonjs/utils/createTeamsDarkTheme.js +16 -8
  120. package/lib-commonjs/utils/createTeamsDarkTheme.js.map +1 -1
  121. package/lib-commonjs/utils/index.d.ts +0 -2
  122. package/lib-commonjs/utils/index.js +1 -13
  123. package/lib-commonjs/utils/index.js.map +1 -1
  124. package/lib-commonjs/utils/shadows.d.ts +2 -1
  125. package/lib-commonjs/utils/shadows.js +7 -7
  126. package/lib-commonjs/utils/shadows.js.map +1 -1
  127. package/package.json +6 -6
  128. package/lib/utils/mergeThemes.d.ts +0 -2
  129. package/lib/utils/mergeThemes.js +0 -14
  130. package/lib/utils/mergeThemes.js.map +0 -1
  131. package/lib/utils/themeToCSSVariables.d.ts +0 -2
  132. package/lib/utils/themeToCSSVariables.js +0 -12
  133. package/lib/utils/themeToCSSVariables.js.map +0 -1
  134. package/lib-commonjs/utils/mergeThemes.d.ts +0 -2
  135. package/lib-commonjs/utils/mergeThemes.js +0 -24
  136. package/lib-commonjs/utils/mergeThemes.js.map +0 -1
  137. package/lib-commonjs/utils/themeToCSSVariables.d.ts +0 -2
  138. package/lib-commonjs/utils/themeToCSSVariables.js +0 -21
  139. package/lib-commonjs/utils/themeToCSSVariables.js.map +0 -1
@@ -1,4 +1,4 @@
1
- export var grey = {
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 var white = '#ffffff';
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 var blackAlpha = {
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 var hcHyperlink = '#ffff00';
81
- export var hcHighlight = '#1aebff';
82
- export var hcDisabled = '#3ff23f';
83
- export var hcCanvas = '#000000';
84
- export var hcCanvasText = '#ffffff';
85
- export var hcHighlightText = '#000000';
86
- export var hcButtonText = '#000000';
87
- export var hcButtonFace = '#ffffff';
88
- var darkRed = {
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
- var burgundy = {
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
- var cranberry = {
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
- var red = {
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
- var darkOrange = {
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
- var bronze = {
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
- var pumpkin = {
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
- var orange = {
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
- var peach = {
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
- var marigold = {
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
- var yellow = {
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
- var gold = {
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
- var brass = {
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
- var brown = {
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
- var darkBrown = {
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
- var lime = {
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
- var forest = {
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
- var seafoam = {
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
- var lightGreen = {
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
- var green = {
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
- var darkGreen = {
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
- var lightTeal = {
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
- var teal = {
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
- var darkTeal = {
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
- var cyan = {
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
- var steel = {
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
- var lightBlue = {
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
- var blue = {
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
- var royalBlue = {
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
- var darkBlue = {
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
- var cornflower = {
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
- var navy = {
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
- var lavender = {
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
- var purple = {
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
- var darkPurple = {
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
- var orchid = {
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
- var grape = {
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
- var berry = {
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
- var lilac = {
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
- var pink = {
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
- var hotPink = {
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
- var magenta = {
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
- var plum = {
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
- var beige = {
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
- var mink = {
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
- var silver = {
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
- var platinum = {
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
- var anchor = {
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
- var charcoal = {
761
- shade50: '#130204',
762
- shade40: '#230308',
763
- shade30: '#420610',
764
- shade20: '#590815',
765
- shade10: '#690a19',
766
- primary: '#750b1c',
767
- tint10: '#861b2c',
768
- tint20: '#962f3f',
769
- tint30: '#ac4f5e',
770
- tint40: '#d69ca5',
771
- tint50: '#e9c7cd',
772
- tint60: '#f9f0f2'
773
- };
774
- export var sharedColors = {
775
- darkRed: darkRed,
776
- burgundy: burgundy,
777
- cranberry: cranberry,
778
- red: red,
779
- darkOrange: darkOrange,
780
- bronze: bronze,
781
- pumpkin: pumpkin,
782
- orange: orange,
783
- peach: peach,
784
- marigold: marigold,
785
- yellow: yellow,
786
- gold: gold,
787
- brass: brass,
788
- brown: brown,
789
- darkBrown: darkBrown,
790
- lime: lime,
791
- forest: forest,
792
- seafoam: seafoam,
793
- lightGreen: lightGreen,
794
- green: green,
795
- darkGreen: darkGreen,
796
- lightTeal: lightTeal,
797
- teal: teal,
798
- darkTeal: darkTeal,
799
- cyan: cyan,
800
- steel: steel,
801
- lightBlue: lightBlue,
802
- blue: blue,
803
- royalBlue: royalBlue,
804
- darkBlue: darkBlue,
805
- cornflower: cornflower,
806
- navy: navy,
807
- lavender: lavender,
808
- purple: purple,
809
- darkPurple: darkPurple,
810
- orchid: orchid,
811
- grape: grape,
812
- berry: berry,
813
- lilac: lilac,
814
- pink: pink,
815
- hotPink: hotPink,
816
- magenta: magenta,
817
- plum: plum,
818
- beige: beige,
819
- mink: mink,
820
- silver: silver,
821
- platinum: platinum,
822
- anchor: anchor,
823
- charcoal: 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