@fluentui/tokens 1.0.0-alpha.1 → 1.0.0-alpha.10

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