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