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

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