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

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