@fluentui/react-theme 0.0.0-nightly-20220302-0405.1

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 (181) hide show
  1. package/CHANGELOG.json +1025 -0
  2. package/CHANGELOG.md +408 -0
  3. package/LICENSE +15 -0
  4. package/README.md +5 -0
  5. package/dist/react-theme.d.ts +358 -0
  6. package/lib/alias/dark.d.ts +3 -0
  7. package/lib/alias/dark.js +158 -0
  8. package/lib/alias/dark.js.map +1 -0
  9. package/lib/alias/highContrast.d.ts +3 -0
  10. package/lib/alias/highContrast.js +158 -0
  11. package/lib/alias/highContrast.js.map +1 -0
  12. package/lib/alias/light.d.ts +3 -0
  13. package/lib/alias/light.js +158 -0
  14. package/lib/alias/light.js.map +1 -0
  15. package/lib/alias/teamsDark.d.ts +3 -0
  16. package/lib/alias/teamsDark.js +158 -0
  17. package/lib/alias/teamsDark.js.map +1 -0
  18. package/lib/global/borderRadius.d.ts +2 -0
  19. package/lib/global/borderRadius.js +9 -0
  20. package/lib/global/borderRadius.js.map +1 -0
  21. package/lib/global/brandColors.d.ts +4 -0
  22. package/lib/global/brandColors.js +55 -0
  23. package/lib/global/brandColors.js.map +1 -0
  24. package/lib/global/colors.d.ts +15 -0
  25. package/lib/global/colors.js +825 -0
  26. package/lib/global/colors.js.map +1 -0
  27. package/lib/global/fonts.d.ts +5 -0
  28. package/lib/global/fonts.js +37 -0
  29. package/lib/global/fonts.js.map +1 -0
  30. package/lib/global/index.d.ts +4 -0
  31. package/lib/global/index.js +5 -0
  32. package/lib/global/index.js.map +1 -0
  33. package/lib/global/strokeWidths.d.ts +2 -0
  34. package/lib/global/strokeWidths.js +7 -0
  35. package/lib/global/strokeWidths.js.map +1 -0
  36. package/lib/index.d.ts +5 -0
  37. package/lib/index.js +5 -0
  38. package/lib/index.js.map +1 -0
  39. package/lib/themeToTokensObject.d.ts +10 -0
  40. package/lib/themeToTokensObject.js +19 -0
  41. package/lib/themeToTokensObject.js.map +1 -0
  42. package/lib/themes/index.d.ts +2 -0
  43. package/lib/themes/index.js +3 -0
  44. package/lib/themes/index.js.map +1 -0
  45. package/lib/themes/teams/darkTheme.d.ts +2 -0
  46. package/lib/themes/teams/darkTheme.js +4 -0
  47. package/lib/themes/teams/darkTheme.js.map +1 -0
  48. package/lib/themes/teams/highContrastTheme.d.ts +2 -0
  49. package/lib/themes/teams/highContrastTheme.js +3 -0
  50. package/lib/themes/teams/highContrastTheme.js.map +1 -0
  51. package/lib/themes/teams/index.d.ts +3 -0
  52. package/lib/themes/teams/index.js +4 -0
  53. package/lib/themes/teams/index.js.map +1 -0
  54. package/lib/themes/teams/lightTheme.d.ts +2 -0
  55. package/lib/themes/teams/lightTheme.js +4 -0
  56. package/lib/themes/teams/lightTheme.js.map +1 -0
  57. package/lib/themes/web/darkTheme.d.ts +2 -0
  58. package/lib/themes/web/darkTheme.js +4 -0
  59. package/lib/themes/web/darkTheme.js.map +1 -0
  60. package/lib/themes/web/highContrastTheme.d.ts +2 -0
  61. package/lib/themes/web/highContrastTheme.js +3 -0
  62. package/lib/themes/web/highContrastTheme.js.map +1 -0
  63. package/lib/themes/web/index.d.ts +3 -0
  64. package/lib/themes/web/index.js +4 -0
  65. package/lib/themes/web/index.js.map +1 -0
  66. package/lib/themes/web/lightTheme.d.ts +2 -0
  67. package/lib/themes/web/lightTheme.js +4 -0
  68. package/lib/themes/web/lightTheme.js.map +1 -0
  69. package/lib/tokens.d.ts +2 -0
  70. package/lib/tokens.js +687 -0
  71. package/lib/tokens.js.map +1 -0
  72. package/lib/tsdoc-metadata.json +11 -0
  73. package/lib/types.d.ts +342 -0
  74. package/lib/types.js +2 -0
  75. package/lib/types.js.map +1 -0
  76. package/lib/utils/createDarkTheme.d.ts +2 -0
  77. package/lib/utils/createDarkTheme.js +18 -0
  78. package/lib/utils/createDarkTheme.js.map +1 -0
  79. package/lib/utils/createHighContrastTheme.d.ts +2 -0
  80. package/lib/utils/createHighContrastTheme.js +18 -0
  81. package/lib/utils/createHighContrastTheme.js.map +1 -0
  82. package/lib/utils/createLightTheme.d.ts +2 -0
  83. package/lib/utils/createLightTheme.js +18 -0
  84. package/lib/utils/createLightTheme.js.map +1 -0
  85. package/lib/utils/createTeamsDarkTheme.d.ts +2 -0
  86. package/lib/utils/createTeamsDarkTheme.js +18 -0
  87. package/lib/utils/createTeamsDarkTheme.js.map +1 -0
  88. package/lib/utils/index.d.ts +4 -0
  89. package/lib/utils/index.js +5 -0
  90. package/lib/utils/index.js.map +1 -0
  91. package/lib/utils/shadows.d.ts +3 -0
  92. package/lib/utils/shadows.js +11 -0
  93. package/lib/utils/shadows.js.map +1 -0
  94. package/lib-commonjs/alias/dark.d.ts +3 -0
  95. package/lib-commonjs/alias/dark.js +168 -0
  96. package/lib-commonjs/alias/dark.js.map +1 -0
  97. package/lib-commonjs/alias/highContrast.d.ts +3 -0
  98. package/lib-commonjs/alias/highContrast.js +168 -0
  99. package/lib-commonjs/alias/highContrast.js.map +1 -0
  100. package/lib-commonjs/alias/light.d.ts +3 -0
  101. package/lib-commonjs/alias/light.js +168 -0
  102. package/lib-commonjs/alias/light.js.map +1 -0
  103. package/lib-commonjs/alias/teamsDark.d.ts +3 -0
  104. package/lib-commonjs/alias/teamsDark.js +168 -0
  105. package/lib-commonjs/alias/teamsDark.js.map +1 -0
  106. package/lib-commonjs/global/borderRadius.d.ts +2 -0
  107. package/lib-commonjs/global/borderRadius.js +15 -0
  108. package/lib-commonjs/global/borderRadius.js.map +1 -0
  109. package/lib-commonjs/global/brandColors.d.ts +4 -0
  110. package/lib-commonjs/global/brandColors.js +61 -0
  111. package/lib-commonjs/global/brandColors.js.map +1 -0
  112. package/lib-commonjs/global/colors.d.ts +15 -0
  113. package/lib-commonjs/global/colors.js +831 -0
  114. package/lib-commonjs/global/colors.js.map +1 -0
  115. package/lib-commonjs/global/fonts.d.ts +5 -0
  116. package/lib-commonjs/global/fonts.js +43 -0
  117. package/lib-commonjs/global/fonts.js.map +1 -0
  118. package/lib-commonjs/global/index.d.ts +4 -0
  119. package/lib-commonjs/global/index.js +16 -0
  120. package/lib-commonjs/global/index.js.map +1 -0
  121. package/lib-commonjs/global/strokeWidths.d.ts +2 -0
  122. package/lib-commonjs/global/strokeWidths.js +13 -0
  123. package/lib-commonjs/global/strokeWidths.js.map +1 -0
  124. package/lib-commonjs/index.d.ts +5 -0
  125. package/lib-commonjs/index.js +31 -0
  126. package/lib-commonjs/index.js.map +1 -0
  127. package/lib-commonjs/themeToTokensObject.d.ts +10 -0
  128. package/lib-commonjs/themeToTokensObject.js +28 -0
  129. package/lib-commonjs/themeToTokensObject.js.map +1 -0
  130. package/lib-commonjs/themes/index.d.ts +2 -0
  131. package/lib-commonjs/themes/index.js +12 -0
  132. package/lib-commonjs/themes/index.js.map +1 -0
  133. package/lib-commonjs/themes/teams/darkTheme.d.ts +2 -0
  134. package/lib-commonjs/themes/teams/darkTheme.js +13 -0
  135. package/lib-commonjs/themes/teams/darkTheme.js.map +1 -0
  136. package/lib-commonjs/themes/teams/highContrastTheme.d.ts +2 -0
  137. package/lib-commonjs/themes/teams/highContrastTheme.js +11 -0
  138. package/lib-commonjs/themes/teams/highContrastTheme.js.map +1 -0
  139. package/lib-commonjs/themes/teams/index.d.ts +3 -0
  140. package/lib-commonjs/themes/teams/index.js +14 -0
  141. package/lib-commonjs/themes/teams/index.js.map +1 -0
  142. package/lib-commonjs/themes/teams/lightTheme.d.ts +2 -0
  143. package/lib-commonjs/themes/teams/lightTheme.js +13 -0
  144. package/lib-commonjs/themes/teams/lightTheme.js.map +1 -0
  145. package/lib-commonjs/themes/web/darkTheme.d.ts +2 -0
  146. package/lib-commonjs/themes/web/darkTheme.js +13 -0
  147. package/lib-commonjs/themes/web/darkTheme.js.map +1 -0
  148. package/lib-commonjs/themes/web/highContrastTheme.d.ts +2 -0
  149. package/lib-commonjs/themes/web/highContrastTheme.js +11 -0
  150. package/lib-commonjs/themes/web/highContrastTheme.js.map +1 -0
  151. package/lib-commonjs/themes/web/index.d.ts +3 -0
  152. package/lib-commonjs/themes/web/index.js +14 -0
  153. package/lib-commonjs/themes/web/index.js.map +1 -0
  154. package/lib-commonjs/themes/web/lightTheme.d.ts +2 -0
  155. package/lib-commonjs/themes/web/lightTheme.js +13 -0
  156. package/lib-commonjs/themes/web/lightTheme.js.map +1 -0
  157. package/lib-commonjs/tokens.d.ts +2 -0
  158. package/lib-commonjs/tokens.js +693 -0
  159. package/lib-commonjs/tokens.js.map +1 -0
  160. package/lib-commonjs/types.d.ts +342 -0
  161. package/lib-commonjs/types.js +6 -0
  162. package/lib-commonjs/types.js.map +1 -0
  163. package/lib-commonjs/utils/createDarkTheme.d.ts +2 -0
  164. package/lib-commonjs/utils/createDarkTheme.js +30 -0
  165. package/lib-commonjs/utils/createDarkTheme.js.map +1 -0
  166. package/lib-commonjs/utils/createHighContrastTheme.d.ts +2 -0
  167. package/lib-commonjs/utils/createHighContrastTheme.js +30 -0
  168. package/lib-commonjs/utils/createHighContrastTheme.js.map +1 -0
  169. package/lib-commonjs/utils/createLightTheme.d.ts +2 -0
  170. package/lib-commonjs/utils/createLightTheme.js +30 -0
  171. package/lib-commonjs/utils/createLightTheme.js.map +1 -0
  172. package/lib-commonjs/utils/createTeamsDarkTheme.d.ts +2 -0
  173. package/lib-commonjs/utils/createTeamsDarkTheme.js +30 -0
  174. package/lib-commonjs/utils/createTeamsDarkTheme.js.map +1 -0
  175. package/lib-commonjs/utils/index.d.ts +4 -0
  176. package/lib-commonjs/utils/index.js +16 -0
  177. package/lib-commonjs/utils/index.js.map +1 -0
  178. package/lib-commonjs/utils/shadows.d.ts +3 -0
  179. package/lib-commonjs/utils/shadows.js +20 -0
  180. package/lib-commonjs/utils/shadows.js.map +1 -0
  181. package/package.json +52 -0
@@ -0,0 +1,831 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
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
+ exports.grey = {
8
+ '0': '#000000',
9
+ '2': '#050505',
10
+ '4': '#0a0a0a',
11
+ '6': '#0f0f0f',
12
+ '8': '#141414',
13
+ '10': '#1a1a1a',
14
+ '12': '#1f1f1f',
15
+ '14': '#242424',
16
+ '16': '#292929',
17
+ '18': '#2e2e2e',
18
+ '20': '#333333',
19
+ '22': '#383838',
20
+ '24': '#3d3d3d',
21
+ '26': '#424242',
22
+ '28': '#474747',
23
+ '30': '#4d4d4d',
24
+ '32': '#525252',
25
+ '34': '#575757',
26
+ '36': '#5c5c5c',
27
+ '38': '#616161',
28
+ '40': '#666666',
29
+ '42': '#6b6b6b',
30
+ '44': '#707070',
31
+ '46': '#757575',
32
+ '48': '#7a7a7a',
33
+ '50': '#808080',
34
+ '52': '#858585',
35
+ '54': '#8a8a8a',
36
+ '56': '#8f8f8f',
37
+ '58': '#949494',
38
+ '60': '#999999',
39
+ '62': '#9e9e9e',
40
+ '64': '#a3a3a3',
41
+ '66': '#a8a8a8',
42
+ '68': '#adadad',
43
+ '70': '#b3b3b3',
44
+ '72': '#b8b8b8',
45
+ '74': '#bdbdbd',
46
+ '76': '#c2c2c2',
47
+ '78': '#c7c7c7',
48
+ '80': '#cccccc',
49
+ '82': '#d1d1d1',
50
+ '84': '#d6d6d6',
51
+ '86': '#dbdbdb',
52
+ '88': '#e0e0e0',
53
+ '90': '#e6e6e6',
54
+ '92': '#ebebeb',
55
+ '94': '#f0f0f0',
56
+ '96': '#f5f5f5',
57
+ '98': '#fafafa',
58
+ '100': '#ffffff'
59
+ };
60
+ exports.whiteAlpha = {
61
+ '5': 'rgba(255, 255, 255, 0.05)',
62
+ '10': 'rgba(255, 255, 255, 0.1)',
63
+ '20': 'rgba(255, 255, 255, 0.2)',
64
+ '30': 'rgba(255, 255, 255, 0.3)',
65
+ '40': 'rgba(255, 255, 255, 0.4)',
66
+ '50': 'rgba(255, 255, 255, 0.5)',
67
+ '60': 'rgba(255, 255, 255, 0.6)',
68
+ '70': 'rgba(255, 255, 255, 0.7)',
69
+ '80': 'rgba(255, 255, 255, 0.8)',
70
+ '90': 'rgba(255, 255, 255, 0.9)'
71
+ };
72
+ exports.blackAlpha = {
73
+ '5': 'rgba(0, 0, 0, 0.05)',
74
+ '10': 'rgba(0, 0, 0, 0.1)',
75
+ '20': 'rgba(0, 0, 0, 0.2)',
76
+ '30': 'rgba(0, 0, 0, 0.3)',
77
+ '40': 'rgba(0, 0, 0, 0.4)',
78
+ '50': 'rgba(0, 0, 0, 0.5)',
79
+ '60': 'rgba(0, 0, 0, 0.6)',
80
+ '70': 'rgba(0, 0, 0, 0.7)',
81
+ '80': 'rgba(0, 0, 0, 0.8)',
82
+ '90': 'rgba(0, 0, 0, 0.9)'
83
+ };
84
+ exports.white = '#ffffff';
85
+ exports.black = '#000000';
86
+ exports.hcHyperlink = '#ffff00';
87
+ exports.hcHighlight = '#1aebff';
88
+ exports.hcDisabled = '#3ff23f';
89
+ exports.hcCanvas = '#000000';
90
+ exports.hcCanvasText = '#ffffff';
91
+ exports.hcHighlightText = '#000000';
92
+ exports.hcButtonText = '#000000';
93
+ exports.hcButtonFace = '#ffffff';
94
+ const darkRed = {
95
+ shade50: '#130204',
96
+ shade40: '#230308',
97
+ shade30: '#420610',
98
+ shade20: '#590815',
99
+ shade10: '#690a19',
100
+ primary: '#750b1c',
101
+ tint10: '#861b2c',
102
+ tint20: '#962f3f',
103
+ tint30: '#ac4f5e',
104
+ tint40: '#d69ca5',
105
+ tint50: '#e9c7cd',
106
+ tint60: '#f9f0f2'
107
+ };
108
+ const burgundy = {
109
+ shade50: '#1a0607',
110
+ shade40: '#310b0d',
111
+ shade30: '#5c1519',
112
+ shade20: '#7d1d21',
113
+ shade10: '#942228',
114
+ primary: '#a4262c',
115
+ tint10: '#af393e',
116
+ tint20: '#ba4d52',
117
+ tint30: '#c86c70',
118
+ tint40: '#e4afb2',
119
+ tint50: '#f0d3d4',
120
+ tint60: '#fbf4f4'
121
+ };
122
+ const cranberry = {
123
+ shade50: '#200205',
124
+ shade40: '#3b0509',
125
+ shade30: '#6e0811',
126
+ shade20: '#960b18',
127
+ shade10: '#b10e1c',
128
+ primary: '#c50f1f',
129
+ tint10: '#cc2635',
130
+ tint20: '#d33f4c',
131
+ tint30: '#dc626d',
132
+ tint40: '#eeacb2',
133
+ tint50: '#f6d1d5',
134
+ tint60: '#fdf3f4'
135
+ };
136
+ const red = {
137
+ shade50: '#210809',
138
+ shade40: '#3f1011',
139
+ shade30: '#751d1f',
140
+ shade20: '#9f282b',
141
+ shade10: '#bc2f32',
142
+ primary: '#d13438',
143
+ tint10: '#d7494c',
144
+ tint20: '#dc5e62',
145
+ tint30: '#e37d80',
146
+ tint40: '#f1bbbc',
147
+ tint50: '#f8dadb',
148
+ tint60: '#fdf6f6'
149
+ };
150
+ const darkOrange = {
151
+ shade50: '#230900',
152
+ shade40: '#411200',
153
+ shade30: '#7a2101',
154
+ shade20: '#a62d01',
155
+ shade10: '#c43501',
156
+ primary: '#da3b01',
157
+ tint10: '#de501c',
158
+ tint20: '#e36537',
159
+ tint30: '#e9835e',
160
+ tint40: '#f4bfab',
161
+ tint50: '#f9dcd1',
162
+ tint60: '#fdf6f3'
163
+ };
164
+ const bronze = {
165
+ shade50: '#1b0a01',
166
+ shade40: '#321303',
167
+ shade30: '#5e2405',
168
+ shade20: '#7f3107',
169
+ shade10: '#963a08',
170
+ primary: '#a74109',
171
+ tint10: '#b2521e',
172
+ tint20: '#bc6535',
173
+ tint30: '#ca8057',
174
+ tint40: '#e5bba4',
175
+ tint50: '#f1d9cc',
176
+ tint60: '#fbf5f2'
177
+ };
178
+ const pumpkin = {
179
+ shade50: '#200d03',
180
+ shade40: '#3d1805',
181
+ shade30: '#712d09',
182
+ shade20: '#9a3d0c',
183
+ shade10: '#b6480e',
184
+ primary: '#ca5010',
185
+ tint10: '#d06228',
186
+ tint20: '#d77440',
187
+ tint30: '#df8e64',
188
+ tint40: '#efc4ad',
189
+ tint50: '#f7dfd2',
190
+ tint60: '#fdf7f4'
191
+ };
192
+ const orange = {
193
+ shade50: '#271002',
194
+ shade40: '#4a1e04',
195
+ shade30: '#8a3707',
196
+ shade20: '#bc4b09',
197
+ shade10: '#de590b',
198
+ primary: '#f7630c',
199
+ tint10: '#f87528',
200
+ tint20: '#f98845',
201
+ tint30: '#faa06b',
202
+ tint40: '#fdcfb4',
203
+ tint50: '#fee5d7',
204
+ tint60: '#fff9f5'
205
+ };
206
+ const peach = {
207
+ shade50: '#291600',
208
+ shade40: '#4d2a00',
209
+ shade30: '#8f4e00',
210
+ shade20: '#c26a00',
211
+ shade10: '#e67e00',
212
+ primary: '#ff8c00',
213
+ tint10: '#ff9a1f',
214
+ tint20: '#ffa83d',
215
+ tint30: '#ffba66',
216
+ tint40: '#ffddb3',
217
+ tint50: '#ffedd6',
218
+ tint60: '#fffaf5'
219
+ };
220
+ const marigold = {
221
+ shade50: '#251a00',
222
+ shade40: '#463100',
223
+ shade30: '#835b00',
224
+ shade20: '#b27c00',
225
+ shade10: '#d39300',
226
+ primary: '#eaa300',
227
+ tint10: '#edad1c',
228
+ tint20: '#efb839',
229
+ tint30: '#f2c661',
230
+ tint40: '#f9e2ae',
231
+ tint50: '#fcefd3',
232
+ tint60: '#fefbf4'
233
+ };
234
+ const yellow = {
235
+ shade50: '#282400',
236
+ shade40: '#4c4400',
237
+ shade30: '#8e7f00',
238
+ shade20: '#c0ad00',
239
+ shade10: '#e4cc00',
240
+ primary: '#fde300',
241
+ tint10: '#fde61e',
242
+ tint20: '#fdea3d',
243
+ tint30: '#feee66',
244
+ tint40: '#fef7b2',
245
+ tint50: '#fffad6',
246
+ tint60: '#fffef5'
247
+ };
248
+ const gold = {
249
+ shade50: '#1f1900',
250
+ shade40: '#3a2f00',
251
+ shade30: '#6c5700',
252
+ shade20: '#937700',
253
+ shade10: '#ae8c00',
254
+ primary: '#c19c00',
255
+ tint10: '#c8a718',
256
+ tint20: '#d0b232',
257
+ tint30: '#dac157',
258
+ tint40: '#ecdfa5',
259
+ tint50: '#f5eece',
260
+ tint60: '#fdfbf2'
261
+ };
262
+ const brass = {
263
+ shade50: '#181202',
264
+ shade40: '#2e2103',
265
+ shade30: '#553e06',
266
+ shade20: '#745408',
267
+ shade10: '#89640a',
268
+ primary: '#986f0b',
269
+ tint10: '#a47d1e',
270
+ tint20: '#b18c34',
271
+ tint30: '#c1a256',
272
+ tint40: '#e0cea2',
273
+ tint50: '#efe4cb',
274
+ tint60: '#fbf8f2'
275
+ };
276
+ const brown = {
277
+ shade50: '#170e07',
278
+ shade40: '#2b1a0e',
279
+ shade30: '#50301a',
280
+ shade20: '#6c4123',
281
+ shade10: '#804d29',
282
+ primary: '#8e562e',
283
+ tint10: '#9c663f',
284
+ tint20: '#a97652',
285
+ tint30: '#bb8f6f',
286
+ tint40: '#ddc3b0',
287
+ tint50: '#edded3',
288
+ tint60: '#faf7f4'
289
+ };
290
+ const darkBrown = {
291
+ shade50: '#0c0704',
292
+ shade40: '#170c08',
293
+ shade30: '#2b1710',
294
+ shade20: '#3a1f15',
295
+ shade10: '#452519',
296
+ primary: '#4d291c',
297
+ tint10: '#623a2b',
298
+ tint20: '#784d3e',
299
+ tint30: '#946b5c',
300
+ tint40: '#caada3',
301
+ tint50: '#e3d2cb',
302
+ tint60: '#f8f3f2'
303
+ };
304
+ const lime = {
305
+ shade50: '#121b06',
306
+ shade40: '#23330b',
307
+ shade30: '#405f14',
308
+ shade20: '#57811b',
309
+ shade10: '#689920',
310
+ primary: '#73aa24',
311
+ tint10: '#81b437',
312
+ tint20: '#90be4c',
313
+ tint30: '#a4cc6c',
314
+ tint40: '#cfe5af',
315
+ tint50: '#e5f1d3',
316
+ tint60: '#f8fcf4'
317
+ };
318
+ const forest = {
319
+ shade50: '#0c1501',
320
+ shade40: '#162702',
321
+ shade30: '#294903',
322
+ shade20: '#376304',
323
+ shade10: '#427505',
324
+ primary: '#498205',
325
+ tint10: '#599116',
326
+ tint20: '#6ba02b',
327
+ tint30: '#85b44c',
328
+ tint40: '#bdd99b',
329
+ tint50: '#dbebc7',
330
+ tint60: '#f6faf0'
331
+ };
332
+ const seafoam = {
333
+ shade50: '#002111',
334
+ shade40: '#003d20',
335
+ shade30: '#00723b',
336
+ shade20: '#009b51',
337
+ shade10: '#00b85f',
338
+ primary: '#00cc6a',
339
+ tint10: '#19d279',
340
+ tint20: '#34d889',
341
+ tint30: '#5ae0a0',
342
+ tint40: '#a8f0cd',
343
+ tint50: '#cff7e4',
344
+ tint60: '#f3fdf8'
345
+ };
346
+ const lightGreen = {
347
+ shade50: '#031a02',
348
+ shade40: '#063004',
349
+ shade30: '#0b5a08',
350
+ shade20: '#0e7a0b',
351
+ shade10: '#11910d',
352
+ primary: '#13a10e',
353
+ tint10: '#27ac22',
354
+ tint20: '#3db838',
355
+ tint30: '#5ec75a',
356
+ tint40: '#a7e3a5',
357
+ tint50: '#cef0cd',
358
+ tint60: '#f2fbf2'
359
+ };
360
+ const green = {
361
+ shade50: '#031403',
362
+ shade40: '#052505',
363
+ shade30: '#094509',
364
+ shade20: '#0c5e0c',
365
+ shade10: '#0e700e',
366
+ primary: '#107c10',
367
+ tint10: '#218c21',
368
+ tint20: '#359b35',
369
+ tint30: '#54b054',
370
+ tint40: '#9fd89f',
371
+ tint50: '#c9eac9',
372
+ tint60: '#f1faf1'
373
+ };
374
+ const darkGreen = {
375
+ shade50: '#021102',
376
+ shade40: '#032003',
377
+ shade30: '#063b06',
378
+ shade20: '#085108',
379
+ shade10: '#0a5f0a',
380
+ primary: '#0b6a0b',
381
+ tint10: '#1a7c1a',
382
+ tint20: '#2d8e2d',
383
+ tint30: '#4da64d',
384
+ tint40: '#9ad29a',
385
+ tint50: '#c6e7c6',
386
+ tint60: '#f0f9f0'
387
+ };
388
+ const lightTeal = {
389
+ shade50: '#001d1f',
390
+ shade40: '#00373a',
391
+ shade30: '#00666d',
392
+ shade20: '#008b94',
393
+ shade10: '#00a5af',
394
+ primary: '#00b7c3',
395
+ tint10: '#18bfca',
396
+ tint20: '#32c8d1',
397
+ tint30: '#58d3db',
398
+ tint40: '#a6e9ed',
399
+ tint50: '#cef3f5',
400
+ tint60: '#f2fcfd'
401
+ };
402
+ const teal = {
403
+ shade50: '#001516',
404
+ shade40: '#012728',
405
+ shade30: '#02494c',
406
+ shade20: '#026467',
407
+ shade10: '#037679',
408
+ primary: '#038387',
409
+ tint10: '#159195',
410
+ tint20: '#2aa0a4',
411
+ tint30: '#4cb4b7',
412
+ tint40: '#9bd9db',
413
+ tint50: '#c7ebec',
414
+ tint60: '#f0fafa'
415
+ };
416
+ const darkTeal = {
417
+ shade50: '#001010',
418
+ shade40: '#001f1f',
419
+ shade30: '#003939',
420
+ shade20: '#004e4e',
421
+ shade10: '#005c5c',
422
+ primary: '#006666',
423
+ tint10: '#0e7878',
424
+ tint20: '#218b8b',
425
+ tint30: '#41a3a3',
426
+ tint40: '#92d1d1',
427
+ tint50: '#c2e7e7',
428
+ tint60: '#eff9f9'
429
+ };
430
+ const cyan = {
431
+ shade50: '#00181e',
432
+ shade40: '#002e38',
433
+ shade30: '#005669',
434
+ shade20: '#00748f',
435
+ shade10: '#008aa9',
436
+ primary: '#0099bc',
437
+ tint10: '#18a4c4',
438
+ tint20: '#31afcc',
439
+ tint30: '#56bfd7',
440
+ tint40: '#a4deeb',
441
+ tint50: '#cdedf4',
442
+ tint60: '#f2fafc'
443
+ };
444
+ const steel = {
445
+ shade50: '#000f12',
446
+ shade40: '#001b22',
447
+ shade30: '#00333f',
448
+ shade20: '#004555',
449
+ shade10: '#005265',
450
+ primary: '#005b70',
451
+ tint10: '#0f6c81',
452
+ tint20: '#237d92',
453
+ tint30: '#4496a9',
454
+ tint40: '#94c8d4',
455
+ tint50: '#c3e1e8',
456
+ tint60: '#eff7f9'
457
+ };
458
+ const lightBlue = {
459
+ shade50: '#091823',
460
+ shade40: '#112d42',
461
+ shade30: '#20547c',
462
+ shade20: '#2c72a8',
463
+ shade10: '#3487c7',
464
+ primary: '#3a96dd',
465
+ tint10: '#4fa1e1',
466
+ tint20: '#65ade5',
467
+ tint30: '#83bdeb',
468
+ tint40: '#bfddf5',
469
+ tint50: '#dcedfa',
470
+ tint60: '#f6fafe'
471
+ };
472
+ const blue = {
473
+ shade50: '#001322',
474
+ shade40: '#002440',
475
+ shade30: '#004377',
476
+ shade20: '#005ba1',
477
+ shade10: '#006cbf',
478
+ primary: '#0078d4',
479
+ tint10: '#1a86d9',
480
+ tint20: '#3595de',
481
+ tint30: '#5caae5',
482
+ tint40: '#a9d3f2',
483
+ tint50: '#d0e7f8',
484
+ tint60: '#f3f9fd'
485
+ };
486
+ const royalBlue = {
487
+ shade50: '#000c16',
488
+ shade40: '#00172a',
489
+ shade30: '#002c4e',
490
+ shade20: '#003b6a',
491
+ shade10: '#00467e',
492
+ primary: '#004e8c',
493
+ tint10: '#125e9a',
494
+ tint20: '#286fa8',
495
+ tint30: '#4a89ba',
496
+ tint40: '#9abfdc',
497
+ tint50: '#c7dced',
498
+ tint60: '#f0f6fa'
499
+ };
500
+ const darkBlue = {
501
+ shade50: '#000910',
502
+ shade40: '#00111f',
503
+ shade30: '#002039',
504
+ shade20: '#002b4e',
505
+ shade10: '#00335c',
506
+ primary: '#003966',
507
+ tint10: '#0e4a78',
508
+ tint20: '#215c8b',
509
+ tint30: '#4178a3',
510
+ tint40: '#92b5d1',
511
+ tint50: '#c2d6e7',
512
+ tint60: '#eff4f9'
513
+ };
514
+ const cornflower = {
515
+ shade50: '#0d1126',
516
+ shade40: '#182047',
517
+ shade30: '#2c3c85',
518
+ shade20: '#3c51b4',
519
+ shade10: '#4760d5',
520
+ primary: '#4f6bed',
521
+ tint10: '#637cef',
522
+ tint20: '#778df1',
523
+ tint30: '#93a4f4',
524
+ tint40: '#c8d1fa',
525
+ tint50: '#e1e6fc',
526
+ tint60: '#f7f9fe'
527
+ };
528
+ const navy = {
529
+ shade50: '#00061d',
530
+ shade40: '#000c36',
531
+ shade30: '#001665',
532
+ shade20: '#001e89',
533
+ shade10: '#0023a2',
534
+ primary: '#0027b4',
535
+ tint10: '#173bbd',
536
+ tint20: '#3050c6',
537
+ tint30: '#546fd2',
538
+ tint40: '#a3b2e8',
539
+ tint50: '#ccd5f3',
540
+ tint60: '#f2f4fc'
541
+ };
542
+ const lavender = {
543
+ shade50: '#120f25',
544
+ shade40: '#221d46',
545
+ shade30: '#3f3682',
546
+ shade20: '#5649b0',
547
+ shade10: '#6656d1',
548
+ primary: '#7160e8',
549
+ tint10: '#8172eb',
550
+ tint20: '#9184ee',
551
+ tint30: '#a79cf1',
552
+ tint40: '#d2ccf8',
553
+ tint50: '#e7e4fb',
554
+ tint60: '#f9f8fe'
555
+ };
556
+ const purple = {
557
+ shade50: '#0f0717',
558
+ shade40: '#1c0e2b',
559
+ shade30: '#341a51',
560
+ shade20: '#46236e',
561
+ shade10: '#532982',
562
+ primary: '#5c2e91',
563
+ tint10: '#6b3f9e',
564
+ tint20: '#7c52ab',
565
+ tint30: '#9470bd',
566
+ tint40: '#c6b1de',
567
+ tint50: '#e0d3ed',
568
+ tint60: '#f7f4fb'
569
+ };
570
+ const darkPurple = {
571
+ shade50: '#0a0411',
572
+ shade40: '#130820',
573
+ shade30: '#240f3c',
574
+ shade20: '#311552',
575
+ shade10: '#3a1861',
576
+ primary: '#401b6c',
577
+ tint10: '#512b7e',
578
+ tint20: '#633e8f',
579
+ tint30: '#7e5ca7',
580
+ tint40: '#b9a3d3',
581
+ tint50: '#d8cce7',
582
+ tint60: '#f5f2f9'
583
+ };
584
+ const orchid = {
585
+ shade50: '#16101d',
586
+ shade40: '#281e37',
587
+ shade30: '#4c3867',
588
+ shade20: '#674c8c',
589
+ shade10: '#795aa6',
590
+ primary: '#8764b8',
591
+ tint10: '#9373c0',
592
+ tint20: '#a083c9',
593
+ tint30: '#b29ad4',
594
+ tint40: '#d7caea',
595
+ tint50: '#e9e2f4',
596
+ tint60: '#f9f8fc'
597
+ };
598
+ const grape = {
599
+ shade50: '#160418',
600
+ shade40: '#29072e',
601
+ shade30: '#4c0d55',
602
+ shade20: '#671174',
603
+ shade10: '#7a1589',
604
+ primary: '#881798',
605
+ tint10: '#952aa4',
606
+ tint20: '#a33fb1',
607
+ tint30: '#b55fc1',
608
+ tint40: '#d9a7e0',
609
+ tint50: '#eaceef',
610
+ tint60: '#faf2fb'
611
+ };
612
+ const berry = {
613
+ shade50: '#1f091d',
614
+ shade40: '#3a1136',
615
+ shade30: '#6d2064',
616
+ shade20: '#932b88',
617
+ shade10: '#af33a1',
618
+ primary: '#c239b3',
619
+ tint10: '#c94cbc',
620
+ tint20: '#d161c4',
621
+ tint30: '#da7ed0',
622
+ tint40: '#edbbe7',
623
+ tint50: '#f5daf2',
624
+ tint60: '#fdf5fc'
625
+ };
626
+ const lilac = {
627
+ shade50: '#1c0b1f',
628
+ shade40: '#35153a',
629
+ shade30: '#63276d',
630
+ shade20: '#863593',
631
+ shade10: '#9f3faf',
632
+ primary: '#b146c2',
633
+ tint10: '#ba58c9',
634
+ tint20: '#c36bd1',
635
+ tint30: '#cf87da',
636
+ tint40: '#e6bfed',
637
+ tint50: '#f2dcf5',
638
+ tint60: '#fcf6fd'
639
+ };
640
+ const pink = {
641
+ shade50: '#24091b',
642
+ shade40: '#441232',
643
+ shade30: '#80215d',
644
+ shade20: '#ad2d7e',
645
+ shade10: '#cd3595',
646
+ primary: '#e43ba6',
647
+ tint10: '#e750b0',
648
+ tint20: '#ea66ba',
649
+ tint30: '#ef85c8',
650
+ tint40: '#f7c0e3',
651
+ tint50: '#fbddf0',
652
+ tint60: '#fef6fb'
653
+ };
654
+ const hotPink = {
655
+ shade50: '#240016',
656
+ shade40: '#44002a',
657
+ shade30: '#7f004e',
658
+ shade20: '#ad006a',
659
+ shade10: '#cc007e',
660
+ primary: '#e3008c',
661
+ tint10: '#e61c99',
662
+ tint20: '#ea38a6',
663
+ tint30: '#ee5fb7',
664
+ tint40: '#f7adda',
665
+ tint50: '#fbd2eb',
666
+ tint60: '#fef4fa'
667
+ };
668
+ const magenta = {
669
+ shade50: '#1f0013',
670
+ shade40: '#390024',
671
+ shade30: '#6b0043',
672
+ shade20: '#91005a',
673
+ shade10: '#ac006b',
674
+ primary: '#bf0077',
675
+ tint10: '#c71885',
676
+ tint20: '#ce3293',
677
+ tint30: '#d957a8',
678
+ tint40: '#eca5d1',
679
+ tint50: '#f5cee6',
680
+ tint60: '#fcf2f9'
681
+ };
682
+ const plum = {
683
+ shade50: '#13000c',
684
+ shade40: '#240017',
685
+ shade30: '#43002b',
686
+ shade20: '#5a003b',
687
+ shade10: '#6b0045',
688
+ primary: '#77004d',
689
+ tint10: '#87105d',
690
+ tint20: '#98246f',
691
+ tint30: '#ad4589',
692
+ tint40: '#d696c0',
693
+ tint50: '#e9c4dc',
694
+ tint60: '#faf0f6'
695
+ };
696
+ const beige = {
697
+ shade50: '#141313',
698
+ shade40: '#252323',
699
+ shade30: '#444241',
700
+ shade20: '#5d5958',
701
+ shade10: '#6e6968',
702
+ primary: '#7a7574',
703
+ tint10: '#8a8584',
704
+ tint20: '#9a9594',
705
+ tint30: '#afabaa',
706
+ tint40: '#d7d4d4',
707
+ tint50: '#eae8e8',
708
+ tint60: '#faf9f9'
709
+ };
710
+ const mink = {
711
+ shade50: '#0f0e0e',
712
+ shade40: '#1c1b1a',
713
+ shade30: '#343231',
714
+ shade20: '#474443',
715
+ shade10: '#54514f',
716
+ primary: '#5d5a58',
717
+ tint10: '#706d6b',
718
+ tint20: '#84817e',
719
+ tint30: '#9e9b99',
720
+ tint40: '#cecccb',
721
+ tint50: '#e5e4e3',
722
+ tint60: '#f8f8f8'
723
+ };
724
+ const silver = {
725
+ shade50: '#151818',
726
+ shade40: '#282d2e',
727
+ shade30: '#4a5356',
728
+ shade20: '#657174',
729
+ shade10: '#78868a',
730
+ primary: '#859599',
731
+ tint10: '#92a1a5',
732
+ tint20: '#a0aeb1',
733
+ tint30: '#b3bfc2',
734
+ tint40: '#d8dfe0',
735
+ tint50: '#eaeeef',
736
+ tint60: '#fafbfb'
737
+ };
738
+ const platinum = {
739
+ shade50: '#111314',
740
+ shade40: '#1f2426',
741
+ shade30: '#3b4447',
742
+ shade20: '#505c60',
743
+ shade10: '#5f6d71',
744
+ primary: '#69797e',
745
+ tint10: '#79898d',
746
+ tint20: '#89989d',
747
+ tint30: '#a0adb2',
748
+ tint40: '#cdd6d8',
749
+ tint50: '#e4e9ea',
750
+ tint60: '#f8f9fa'
751
+ };
752
+ const anchor = {
753
+ shade50: '#090a0b',
754
+ shade40: '#111315',
755
+ shade30: '#202427',
756
+ shade20: '#2b3135',
757
+ shade10: '#333a3f',
758
+ primary: '#394146',
759
+ tint10: '#4d565c',
760
+ tint20: '#626c72',
761
+ tint30: '#808a90',
762
+ tint40: '#bcc3c7',
763
+ tint50: '#dbdfe1',
764
+ tint60: '#f6f7f8'
765
+ };
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
+ };
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
830
+ };
831
+ //# sourceMappingURL=colors.js.map