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