@automattic/vip-design-system 1.2.3 → 1.3.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (232) hide show
  1. package/.eslintignore +2 -1
  2. package/.prettierignore +1 -0
  3. package/.storybook/decorators/withBoundingBox.tsx +30 -4
  4. package/.storybook/decorators/withColorMode.tsx +5 -5
  5. package/CONTRIBUTING.md +1 -1
  6. package/build/system/Accordion/Accordion.js +6 -6
  7. package/build/system/Accordion/Accordion.stories.js +1 -1
  8. package/build/system/Accordion/Accordion.test.js +7 -5
  9. package/build/system/Avatar/Avatar.js +3 -2
  10. package/build/system/Badge/Badge.js +1 -0
  11. package/build/system/Button/Button.d.ts +11 -0
  12. package/build/system/Button/Button.js +12 -1
  13. package/build/system/Button/Button.stories.d.ts +2 -1
  14. package/build/system/Button/Button.stories.js +1 -2
  15. package/build/system/Button/Button.test.js +72 -45
  16. package/build/system/Button/ButtonSubmit.d.ts +17 -1
  17. package/build/system/Button/ButtonSubmit.js +58 -65
  18. package/build/system/Button/ButtonSubmit.stories.d.ts +17 -37
  19. package/build/system/Button/ButtonSubmit.stories.js +52 -0
  20. package/build/system/Button/ButtonSubmit.test.js +55 -35
  21. package/build/system/Button/index.d.ts +7 -3
  22. package/build/system/Button/index.js +8 -7
  23. package/build/system/Dropdown/DropdownContent.js +1 -1
  24. package/build/system/Dropdown/DropdownItem.js +1 -1
  25. package/build/system/Dropdown/DropdownLabel.js +1 -1
  26. package/build/system/Form/Checkbox.d.ts +9 -9
  27. package/build/system/Form/Checkbox.js +56 -61
  28. package/build/system/Form/Checkbox.stories.d.ts +6 -6
  29. package/build/system/Form/Checkbox.stories.js +71 -0
  30. package/build/system/Form/Input.d.ts +14 -1
  31. package/build/system/Form/Input.js +59 -72
  32. package/build/system/Form/Input.stories.d.ts +6 -4
  33. package/build/system/Form/Input.stories.js +53 -0
  34. package/build/system/Form/Input.styles.d.ts +23 -14
  35. package/build/system/Form/Input.styles.js +40 -28
  36. package/build/system/Form/InputWithCopyButton.stories.jsx +7 -0
  37. package/build/system/Form/Label.d.ts +19 -8
  38. package/build/system/Form/Label.js +39 -43
  39. package/build/system/Form/Label.stories.d.ts +7 -5
  40. package/build/system/Form/Label.stories.js +32 -0
  41. package/build/system/Form/Radio.js +4 -4
  42. package/build/system/Form/Radio.stories.jsx +1 -1
  43. package/build/system/Form/RadioBoxGroup.js +1 -1
  44. package/build/system/Form/RequiredLabel.d.ts +2 -1
  45. package/build/system/Form/RequiredLabel.js +16 -7
  46. package/build/system/Form/Toggle.js +2 -2
  47. package/build/system/Form/Validation.d.ts +8 -13
  48. package/build/system/Form/Validation.js +39 -35
  49. package/build/system/Heading/Heading.stories.js +3 -0
  50. package/build/system/Link/Link.js +1 -1
  51. package/build/system/NewDialog/DialogClose.js +2 -2
  52. package/build/system/NewDialog/DialogContent.js +3 -3
  53. package/build/system/NewDialog/DialogTitle.js +3 -1
  54. package/build/system/NewDialog/NewDialog.stories.d.ts +0 -1
  55. package/build/system/NewDialog/NewDialog.stories.jsx +0 -27
  56. package/build/system/NewForm/Fieldset.d.ts +12 -1
  57. package/build/system/NewForm/Fieldset.js +38 -40
  58. package/build/system/NewForm/Form.d.ts +8 -1
  59. package/build/system/NewForm/Form.js +24 -23
  60. package/build/system/NewForm/FormAutocomplete.css +0 -11
  61. package/build/system/NewForm/FormAutocomplete.js +8 -8
  62. package/build/system/NewForm/FormAutocomplete.stories.jsx +1 -3
  63. package/build/system/NewForm/FormAutocompleteMultiselect.js +10 -10
  64. package/build/system/NewForm/FormSelect.js +1 -1
  65. package/build/system/NewForm/FormSelectArrow.js +1 -1
  66. package/build/system/NewForm/FormSelectInline.js +1 -1
  67. package/build/system/NewForm/FormSelectLoading.js +1 -1
  68. package/build/system/NewForm/FormSelectSearch.js +2 -2
  69. package/build/system/NewForm/Legend.d.ts +12 -1
  70. package/build/system/NewForm/Legend.js +32 -34
  71. package/build/system/NewForm/index.d.ts +1 -1
  72. package/build/system/OptionRow/OptionRow.js +1 -1
  73. package/build/system/Progress/Progress.d.ts +9 -2
  74. package/build/system/Progress/Progress.js +75 -70
  75. package/build/system/Progress/Progress.stories.d.ts +9 -7
  76. package/build/system/Progress/Progress.stories.js +34 -0
  77. package/build/system/Progress/Progress.test.d.ts +1 -0
  78. package/build/system/Progress/Progress.test.js +65 -0
  79. package/build/system/Progress/index.d.ts +4 -2
  80. package/build/system/Progress/index.js +5 -5
  81. package/build/system/ScreenReaderText/ScreenReaderText.js +1 -2
  82. package/build/system/Tabs/TabsTrigger.js +0 -1
  83. package/build/system/Text/Text.js +1 -1
  84. package/build/system/Text/Text.stories.js +36 -0
  85. package/build/system/Tooltip/Tooltip.css +6 -2
  86. package/build/system/Tooltip/Tooltip.stories.js +2 -2
  87. package/build/system/Wizard/Wizard.d.ts +14 -1
  88. package/build/system/Wizard/Wizard.js +62 -93
  89. package/build/system/Wizard/Wizard.stories.d.ts +11 -8
  90. package/build/system/Wizard/Wizard.stories.js +167 -0
  91. package/build/system/Wizard/WizardStep.d.ts +24 -1
  92. package/build/system/Wizard/WizardStep.js +180 -190
  93. package/build/system/Wizard/index.d.ts +4 -2
  94. package/build/system/Wizard/index.js +6 -7
  95. package/build/system/index.d.ts +2 -2
  96. package/build/system/index.js +2 -1
  97. package/build/system/theme/generated/valet-theme-dark.json +1219 -476
  98. package/build/system/theme/generated/valet-theme-light.json +1217 -474
  99. package/build/system/theme/{getColor.d.ts → getPropValue.d.ts} +2 -1
  100. package/{src/system/theme/getColor.js → build/system/theme/getPropValue.js} +36 -4
  101. package/build/system/theme/index.d.ts +20 -65
  102. package/build/system/theme/index.js +27 -57
  103. package/package.json +4 -4
  104. package/src/system/Accordion/Accordion.stories.tsx +1 -1
  105. package/src/system/Accordion/Accordion.test.tsx +3 -0
  106. package/src/system/Accordion/Accordion.tsx +6 -6
  107. package/src/system/Avatar/Avatar.tsx +3 -3
  108. package/src/system/Badge/Badge.tsx +1 -1
  109. package/src/system/Button/Button.stories.tsx +2 -3
  110. package/src/system/Button/{Button.test.js → Button.test.tsx} +2 -2
  111. package/src/system/Button/Button.tsx +12 -0
  112. package/src/system/Button/ButtonSubmit.stories.tsx +31 -0
  113. package/src/system/Button/{ButtonSubmit.test.js → ButtonSubmit.test.tsx} +4 -4
  114. package/src/system/Button/{ButtonSubmit.js → ButtonSubmit.tsx} +21 -27
  115. package/src/system/Button/index.ts +8 -0
  116. package/src/system/Dropdown/DropdownContent.js +1 -1
  117. package/src/system/Dropdown/DropdownItem.js +1 -1
  118. package/src/system/Dropdown/DropdownLabel.js +1 -1
  119. package/src/system/Form/{Checkbox.stories.jsx → Checkbox.stories.tsx} +3 -2
  120. package/src/system/Form/{Checkbox.js → Checkbox.tsx} +6 -10
  121. package/src/system/Form/{Input.stories.jsx → Input.stories.tsx} +1 -0
  122. package/src/system/Form/{Input.styles.js → Input.styles.ts} +14 -5
  123. package/src/system/Form/{Input.js → Input.tsx} +10 -19
  124. package/src/system/Form/InputWithCopyButton.stories.jsx +7 -0
  125. package/src/system/Form/{Label.js → Label.tsx} +8 -13
  126. package/src/system/Form/Radio.js +4 -4
  127. package/src/system/Form/Radio.stories.jsx +1 -1
  128. package/src/system/Form/RadioBoxGroup.js +1 -1
  129. package/src/system/Form/{RequiredLabel.js → RequiredLabel.tsx} +1 -3
  130. package/src/system/Form/Toggle.js +2 -2
  131. package/src/system/Form/{Validation.js → Validation.tsx} +11 -12
  132. package/src/system/Heading/Heading.stories.tsx +1 -0
  133. package/src/system/Link/Link.tsx +1 -1
  134. package/src/system/NewDialog/DialogClose.js +2 -2
  135. package/src/system/NewDialog/DialogContent.js +3 -3
  136. package/src/system/NewDialog/DialogTitle.js +3 -1
  137. package/src/system/NewDialog/NewDialog.stories.jsx +0 -27
  138. package/src/system/NewForm/Fieldset.tsx +46 -0
  139. package/src/system/NewForm/Form.tsx +23 -0
  140. package/src/system/NewForm/FormAutocomplete.css +0 -11
  141. package/src/system/NewForm/FormAutocomplete.js +8 -8
  142. package/src/system/NewForm/FormAutocomplete.stories.jsx +1 -3
  143. package/src/system/NewForm/FormAutocompleteMultiselect.js +10 -10
  144. package/src/system/NewForm/FormSelect.js +1 -1
  145. package/src/system/NewForm/FormSelectArrow.js +1 -1
  146. package/src/system/NewForm/FormSelectInline.js +1 -1
  147. package/src/system/NewForm/FormSelectLoading.js +1 -1
  148. package/src/system/NewForm/FormSelectSearch.js +2 -2
  149. package/src/system/NewForm/Legend.tsx +40 -0
  150. package/src/system/OptionRow/OptionRow.js +1 -1
  151. package/src/system/Progress/Progress.test.tsx +33 -0
  152. package/src/system/Progress/{Progress.js → Progress.tsx} +16 -19
  153. package/src/system/Progress/index.ts +4 -0
  154. package/src/system/ScreenReaderText/ScreenReaderText.tsx +0 -2
  155. package/src/system/Tabs/TabsTrigger.js +0 -1
  156. package/src/system/Text/Text.stories.tsx +7 -0
  157. package/src/system/Text/Text.tsx +1 -1
  158. package/src/system/Tooltip/Tooltip.css +6 -2
  159. package/src/system/Tooltip/Tooltip.stories.tsx +4 -4
  160. package/{build/system/Wizard/Wizard.stories.jsx → src/system/Wizard/Wizard.stories.tsx} +18 -23
  161. package/src/system/Wizard/Wizard.tsx +62 -0
  162. package/src/system/Wizard/{WizardStep.js → WizardStep.tsx} +38 -41
  163. package/src/system/Wizard/index.ts +7 -0
  164. package/src/system/index.js +2 -1
  165. package/src/system/theme/generated/valet-theme-dark.json +1219 -476
  166. package/src/system/theme/generated/valet-theme-light.json +1217 -474
  167. package/{build/system/theme/getColor.js → src/system/theme/getPropValue.js} +36 -4
  168. package/src/system/theme/index.js +27 -57
  169. package/tokens/utilities/colors/color output/blue.json +305 -0
  170. package/tokens/utilities/colors/color output/gold.json +305 -0
  171. package/tokens/utilities/colors/color output/gray.json +305 -0
  172. package/tokens/utilities/colors/color output/green.json +305 -0
  173. package/tokens/utilities/colors/color output/orange.json +305 -0
  174. package/tokens/utilities/colors/color output/pink.json +305 -0
  175. package/tokens/utilities/colors/color output/red.json +305 -0
  176. package/tokens/utilities/colors/color output/salmon.json +305 -0
  177. package/tokens/utilities/colors/color output/yellow.json +305 -0
  178. package/tokens/utilities/colors/colorOutput.json +4062 -0
  179. package/tokens/utilities/colors/color_3d_plot.js +43 -0
  180. package/tokens/utilities/colors/color_graph.js +31 -0
  181. package/tokens/utilities/colors/colors.json +1981 -0
  182. package/tokens/utilities/colors/index.js +118 -0
  183. package/tokens/utilities/colors/package-lock.json +6749 -0
  184. package/tokens/utilities/colors/package.json +21 -0
  185. package/tokens/utilities/figma-type-calculator/responsive-type.js +98 -0
  186. package/tokens/valet-core/$metadata.json +19 -15
  187. package/tokens/valet-core/$themes.json +3323 -419
  188. package/tokens/valet-core/{figma-parsely-expressive-type.json → figma-parsely-web-type.json} +128 -128
  189. package/tokens/valet-core/{figma-valet-expressive-type.json → figma-valet-web-type.json} +126 -126
  190. package/tokens/valet-core/figma-wpvip-services-web-type.json +1267 -0
  191. package/tokens/valet-core/{figma-wpvip-expressive-type.json → figma-wpvip-web-type.json} +162 -162
  192. package/tokens/valet-core/{parsely-expressive-color.json → parsely-web-color.json} +1 -1
  193. package/tokens/valet-core/{wpvip-expressive-core.json → parsely-web-core.json} +73 -23
  194. package/tokens/valet-core/{parsely-expressive-type.json → parsely-web-type.json} +21 -9
  195. package/tokens/valet-core/valet-core.json +331 -232
  196. package/tokens/valet-core/{valet-expressive-color.json → valet-web-color.json} +1 -1
  197. package/tokens/valet-core/{parsely-expressive-core.json → valet-web-core.json} +72 -22
  198. package/tokens/valet-core/{wpvip-productive-color.json → wpvip-product-core.json} +663 -7
  199. package/tokens/valet-core/{wpvip-productive-color-dark.json → wpvip-product-dark.json} +332 -10
  200. package/tokens/valet-core/{wpvip-expressive-color.json → wpvip-services-web-color.json} +1 -1
  201. package/tokens/valet-core/{valet-expressive-core.json → wpvip-services-web-core.json} +72 -22
  202. package/tokens/valet-core/wpvip-services-web-type.json +412 -0
  203. package/tokens/valet-core/{wpvip-expressive-color-dark.json → wpvip-web-color-dark.json} +1 -1
  204. package/tokens/valet-core/wpvip-web-color.json +730 -0
  205. package/tokens/valet-core/{wpvip-expressive-type.json → wpvip-web-type.json} +24 -12
  206. package/tokens/valet-core/wpvip-web.json +1310 -0
  207. package/tsconfig.json +2 -1
  208. package/build/system/Button/ButtonSubmit.stories.jsx +0 -40
  209. package/build/system/Button/variants.d.ts +0 -2
  210. package/build/system/Button/variants.js +0 -1
  211. package/build/system/Form/Checkbox.stories.jsx +0 -54
  212. package/build/system/Form/Input.stories.jsx +0 -38
  213. package/build/system/Wizard/WizardStepHorizontal.d.ts +0 -2
  214. package/build/system/Wizard/WizardStepHorizontal.js +0 -55
  215. package/build/system/theme/textStyles.d.ts +0 -71
  216. package/build/system/theme/textStyles.js +0 -46
  217. package/src/system/Button/ButtonSubmit.stories.jsx +0 -40
  218. package/src/system/Button/index.js +0 -8
  219. package/src/system/Button/variants.js +0 -1
  220. package/src/system/Form/Label.stories.jsx +0 -36
  221. package/src/system/NewForm/Fieldset.js +0 -47
  222. package/src/system/NewForm/Form.js +0 -26
  223. package/src/system/NewForm/Legend.js +0 -41
  224. package/src/system/Progress/Progress.stories.jsx +0 -25
  225. package/src/system/Progress/index.js +0 -6
  226. package/src/system/Wizard/Wizard.js +0 -103
  227. package/src/system/Wizard/Wizard.stories.jsx +0 -145
  228. package/src/system/Wizard/WizardStepHorizontal.js +0 -55
  229. package/src/system/Wizard/index.js +0 -8
  230. package/src/system/theme/textStyles.js +0 -46
  231. /package/{build/system/Form/Label.stories.jsx → src/system/Form/Label.stories.tsx} +0 -0
  232. /package/{build/system/Progress/Progress.stories.jsx → src/system/Progress/Progress.stories.tsx} +0 -0
@@ -0,0 +1,1981 @@
1
+ {
2
+ "rem": {
3
+ "value": "16",
4
+ "type": "other",
5
+ "description": "Use as the base rem value for calculations in Figma Tokens. In production all size values should be in rems, which is modifiable by the user. Since Figma Tokens doesn't support different units, we use this variable to do rem calculations. For our purposes, we're setting the rem value to 16px."
6
+ },
7
+ "fontSize": {
8
+ "static": {
9
+ "1": {
10
+ "value": ".75 * {rem}",
11
+ "type": "fontSizes",
12
+ "description": "these are non-responsive font sizes used for body copy, helper text and other elements that don't need to respond to viewport width."
13
+ },
14
+ "2": {
15
+ "value": ".875 * {rem}",
16
+ "type": "fontSizes"
17
+ },
18
+ "3": {
19
+ "value": "1 * {rem}",
20
+ "type": "fontSizes"
21
+ },
22
+ "4": {
23
+ "value": "1.125 * {rem}",
24
+ "type": "fontSizes"
25
+ },
26
+ "5": {
27
+ "value": "1.25 * {rem}",
28
+ "type": "fontSizes"
29
+ }
30
+ },
31
+ "figma": {
32
+ "1": {
33
+ "S": {
34
+ "value": "12.29",
35
+ "type": "other"
36
+ },
37
+ "M": {
38
+ "value": "11.25",
39
+ "type": "other"
40
+ },
41
+ "L": {
42
+ "value": "10.03",
43
+ "type": "other"
44
+ },
45
+ "XL": {
46
+ "value": "9.21",
47
+ "type": "other"
48
+ },
49
+ "XXL": {
50
+ "value": "8.52",
51
+ "type": "other"
52
+ },
53
+ "MAX": {
54
+ "value": "8.17",
55
+ "type": "other"
56
+ }
57
+ },
58
+ "2": {
59
+ "S": {
60
+ "value": "13.12",
61
+ "type": "other"
62
+ },
63
+ "M": {
64
+ "value": "12.28",
65
+ "type": "other"
66
+ },
67
+ "L": {
68
+ "value": "11.30",
69
+ "type": "other"
70
+ },
71
+ "XL": {
72
+ "value": "10.64",
73
+ "type": "other"
74
+ },
75
+ "XXL": {
76
+ "value": "10.08",
77
+ "type": "other"
78
+ },
79
+ "MAX": {
80
+ "value": "9.92",
81
+ "type": "other"
82
+ }
83
+ },
84
+ "3": {
85
+ "S": {
86
+ "value": "14.02",
87
+ "type": "other"
88
+ },
89
+ "M": {
90
+ "value": "13.44",
91
+ "type": "other"
92
+ },
93
+ "L": {
94
+ "value": "12.78",
95
+ "type": "other"
96
+ },
97
+ "XL": {
98
+ "value": "12.33",
99
+ "type": "other"
100
+ },
101
+ "XXL": {
102
+ "value": "11.95",
103
+ "type": "other"
104
+ },
105
+ "MAX": {
106
+ "value": "11.84",
107
+ "type": "other"
108
+ }
109
+ },
110
+ "4": {
111
+ "S": {
112
+ "value": "15.01",
113
+ "type": "other"
114
+ },
115
+ "M": {
116
+ "value": "14.81",
117
+ "type": "other"
118
+ },
119
+ "L": {
120
+ "value": "14.57",
121
+ "type": "other"
122
+ },
123
+ "XL": {
124
+ "value": "14.41",
125
+ "type": "other"
126
+ },
127
+ "XXL": {
128
+ "value": "14.28",
129
+ "type": "other"
130
+ },
131
+ "MAX": {
132
+ "value": "14.24",
133
+ "type": "other"
134
+ }
135
+ },
136
+ "5": {
137
+ "S": {
138
+ "value": "16.00",
139
+ "type": "other"
140
+ },
141
+ "M": {
142
+ "value": "16.20",
143
+ "type": "other"
144
+ },
145
+ "L": {
146
+ "value": "16.52",
147
+ "type": "other"
148
+ },
149
+ "XL": {
150
+ "value": "16.73",
151
+ "type": "other"
152
+ },
153
+ "XXL": {
154
+ "value": "16.91",
155
+ "type": "other"
156
+ },
157
+ "MAX": {
158
+ "value": "16.96",
159
+ "type": "other"
160
+ }
161
+ },
162
+ "6": {
163
+ "S": {
164
+ "value": "17.12",
165
+ "type": "other"
166
+ },
167
+ "M": {
168
+ "value": "17.96",
169
+ "type": "other"
170
+ },
171
+ "L": {
172
+ "value": "18.94",
173
+ "type": "other"
174
+ },
175
+ "XL": {
176
+ "value": "19.60",
177
+ "type": "other"
178
+ },
179
+ "XXL": {
180
+ "value": "20.16",
181
+ "type": "other"
182
+ },
183
+ "MAX": {
184
+ "value": "20.44",
185
+ "type": "other"
186
+ }
187
+ },
188
+ "7": {
189
+ "S": {
190
+ "value": "18.24",
191
+ "type": "other"
192
+ },
193
+ "M": {
194
+ "value": "19.72",
195
+ "type": "other"
196
+ },
197
+ "L": {
198
+ "value": "21.57",
199
+ "type": "other"
200
+ },
201
+ "XL": {
202
+ "value": "22.81",
203
+ "type": "other"
204
+ },
205
+ "XXL": {
206
+ "value": "23.86",
207
+ "type": "other"
208
+ },
209
+ "MAX": {
210
+ "value": "24.39",
211
+ "type": "other"
212
+ }
213
+ },
214
+ "8": {
215
+ "S": {
216
+ "value": "19.52",
217
+ "type": "other"
218
+ },
219
+ "M": {
220
+ "value": "22.04",
221
+ "type": "other"
222
+ },
223
+ "L": {
224
+ "value": "24.98",
225
+ "type": "other"
226
+ },
227
+ "XL": {
228
+ "value": "26.96",
229
+ "type": "other"
230
+ },
231
+ "XXL": {
232
+ "value": "28.64",
233
+ "type": "other"
234
+ },
235
+ "MAX": {
236
+ "value": "29.44",
237
+ "type": "other"
238
+ }
239
+ },
240
+ "9": {
241
+ "S": {
242
+ "value": "20.80",
243
+ "type": "other"
244
+ },
245
+ "M": {
246
+ "value": "24.43",
247
+ "type": "other"
248
+ },
249
+ "L": {
250
+ "value": "28.70",
251
+ "type": "other"
252
+ },
253
+ "XL": {
254
+ "value": "31.58",
255
+ "type": "other"
256
+ },
257
+ "XXL": {
258
+ "value": "34.02",
259
+ "type": "other"
260
+ },
261
+ "MAX": {
262
+ "value": "35.20",
263
+ "type": "other"
264
+ }
265
+ },
266
+ "10": {
267
+ "S": {
268
+ "value": "22.14",
269
+ "type": "other"
270
+ },
271
+ "M": {
272
+ "value": "27.25",
273
+ "type": "other"
274
+ },
275
+ "L": {
276
+ "value": "33.21",
277
+ "type": "other"
278
+ },
279
+ "XL": {
280
+ "value": "37.22",
281
+ "type": "other"
282
+ },
283
+ "XXL": {
284
+ "value": "40.63",
285
+ "type": "other"
286
+ },
287
+ "MAX": {
288
+ "value": "42.24",
289
+ "type": "other"
290
+ }
291
+ },
292
+ "11": {
293
+ "S": {
294
+ "value": "23.68",
295
+ "type": "other"
296
+ },
297
+ "M": {
298
+ "value": "30.50",
299
+ "type": "other"
300
+ },
301
+ "L": {
302
+ "value": "38.50",
303
+ "type": "other"
304
+ },
305
+ "XL": {
306
+ "value": "43.88",
307
+ "type": "other"
308
+ },
309
+ "XXL": {
310
+ "value": "48.45",
311
+ "type": "other"
312
+ },
313
+ "MAX": {
314
+ "value": "50.72",
315
+ "type": "other"
316
+ }
317
+ },
318
+ "12": {
319
+ "S": {
320
+ "value": "25.25",
321
+ "type": "other"
322
+ },
323
+ "M": {
324
+ "value": "34.29",
325
+ "type": "other"
326
+ },
327
+ "L": {
328
+ "value": "44.83",
329
+ "type": "other"
330
+ },
331
+ "XL": {
332
+ "value": "51.93",
333
+ "type": "other"
334
+ },
335
+ "XXL": {
336
+ "value": "57.96",
337
+ "type": "other"
338
+ },
339
+ "MAX": {
340
+ "value": "60.96",
341
+ "type": "other"
342
+ }
343
+ },
344
+ "13": {
345
+ "S": {
346
+ "value": "26.88",
347
+ "type": "other"
348
+ },
349
+ "M": {
350
+ "value": "38.51",
351
+ "type": "other"
352
+ },
353
+ "L": {
354
+ "value": "52.15",
355
+ "type": "other"
356
+ },
357
+ "XL": {
358
+ "value": "61.34",
359
+ "type": "other"
360
+ },
361
+ "XXL": {
362
+ "value": "69.13",
363
+ "type": "other"
364
+ },
365
+ "MAX": {
366
+ "value": "73.03",
367
+ "type": "other"
368
+ }
369
+ },
370
+ "14": {
371
+ "S": {
372
+ "value": "28.64",
373
+ "type": "other"
374
+ },
375
+ "M": {
376
+ "value": "43.59",
377
+ "type": "other"
378
+ },
379
+ "L": {
380
+ "value": "61.04",
381
+ "type": "other"
382
+ },
383
+ "XL": {
384
+ "value": "72.78",
385
+ "type": "other"
386
+ },
387
+ "XXL": {
388
+ "value": "82.75",
389
+ "type": "other"
390
+ },
391
+ "MAX": {
392
+ "value": "87.68",
393
+ "type": "other"
394
+ }
395
+ },
396
+ "15": {
397
+ "S": {
398
+ "value": "30.62",
399
+ "type": "other"
400
+ },
401
+ "M": {
402
+ "value": "49.51",
403
+ "type": "other"
404
+ },
405
+ "L": {
406
+ "value": "71.54",
407
+ "type": "other"
408
+ },
409
+ "XL": {
410
+ "value": "86.37",
411
+ "type": "other"
412
+ },
413
+ "XXL": {
414
+ "value": "98.96",
415
+ "type": "other"
416
+ },
417
+ "MAX": {
418
+ "value": "105.26",
419
+ "type": "other"
420
+ }
421
+ }
422
+ },
423
+ "responsive": {
424
+ "1": {
425
+ "value": "clamp(0.51rem, calc(0.83rem + -0.31vw), 0.77rem)",
426
+ "type": "fontSizes",
427
+ "description": "These are the formulas that generate the responsive type sizes in production. Calculations like this aren't supported in Figma so we use the manually calculated fontSizes.figma tokens to generate a suite of styles that approximate the font size at our standard breakpoints."
428
+ },
429
+ "2": {
430
+ "value": "clamp(0.62rem, calc(0.87rem + -0.25vw), 0.82rem)",
431
+ "type": "fontSizes"
432
+ },
433
+ "3": {
434
+ "value": "clamp(0.74rem, calc(0.91rem + -0.17vw), 0.88rem)",
435
+ "type": "fontSizes"
436
+ },
437
+ "4": {
438
+ "value": "clamp(0.89rem, calc(0.95rem + -0.06vw), 0.94rem)",
439
+ "type": "fontSizes"
440
+ },
441
+ "5": {
442
+ "value": "clamp(1.00rem, calc(0.98rem + 0.08vw), 1.06rem)",
443
+ "type": "fontSizes"
444
+ },
445
+ "6": {
446
+ "value": "clamp(1.07rem, calc(1.02rem + 0.25vw), 1.28rem)",
447
+ "type": "fontSizes"
448
+ },
449
+ "7": {
450
+ "value": "clamp(1.14rem, calc(1.04rem + 0.47vw), 1.53rem)",
451
+ "type": "fontSizes"
452
+ },
453
+ "8": {
454
+ "value": "clamp(1.22rem, calc(1.07rem + 0.75vw), 1.84rem)",
455
+ "type": "fontSizes"
456
+ },
457
+ "9": {
458
+ "value": "clamp(1.30rem, calc(1.08rem + 1.09vw), 2.20rem)",
459
+ "type": "fontSizes"
460
+ },
461
+ "10": {
462
+ "value": "clamp(1.38rem, calc(1.08rem + 1.52vw), 2.64rem)",
463
+ "type": "fontSizes"
464
+ },
465
+ "11": {
466
+ "value": "clamp(1.48rem, calc(1.07rem + 2.04vw), 3.17rem)",
467
+ "type": "fontSizes"
468
+ },
469
+ "12": {
470
+ "value": "clamp(1.57rem, calc(1.04rem + 2.69vw), 3.81rem)",
471
+ "type": "fontSizes"
472
+ },
473
+ "13": {
474
+ "value": "clamp(1.68rem, calc(0.98rem + 3.48vw), 4.57rem)",
475
+ "type": "fontSizes"
476
+ },
477
+ "14": {
478
+ "value": "clamp(1.79rem, calc(0.90rem + 4.45vw), 5.48rem)",
479
+ "type": "fontSizes"
480
+ },
481
+ "15": {
482
+ "value": "clamp(1.91rem, calc(0.79rem + 5.62vw), 6.58rem)",
483
+ "type": "fontSizes"
484
+ }
485
+ }
486
+ },
487
+ "borderRadius": {
488
+ "static": {
489
+ "1": {
490
+ "value": "{rem} * .25",
491
+ "type": "borderRadius"
492
+ },
493
+ "2": {
494
+ "value": "{rem} * .5",
495
+ "type": "borderRadius"
496
+ },
497
+ "3": {
498
+ "value": "{rem} * 1",
499
+ "type": "borderRadius"
500
+ },
501
+ "4": {
502
+ "value": "{rem} * 2",
503
+ "type": "borderRadius"
504
+ },
505
+ "5": {
506
+ "value": "{rem} * 2.5",
507
+ "type": "borderRadius"
508
+ },
509
+ "6": {
510
+ "value": "{rem} * 3.5",
511
+ "type": "borderRadius"
512
+ }
513
+ },
514
+ "responsive": {
515
+ "3-5": {
516
+ "value": "clamp(1.00rem, calc(0.64rem + 1.81vw), 2.50rem)",
517
+ "type": "borderRadius"
518
+ },
519
+ "4-6": {
520
+ "value": "clamp(2.00rem, calc(1.64rem + 1.81vw), 3.50rem)",
521
+ "type": "borderRadius"
522
+ }
523
+ }
524
+ },
525
+ "space": {
526
+ "static": {
527
+ "0": {
528
+ "value": "0.13 * {rem}",
529
+ "type": "spacing"
530
+ },
531
+ "1": {
532
+ "value": "0.25 * {rem}",
533
+ "type": "spacing"
534
+ },
535
+ "2": {
536
+ "value": "0.50 * {rem}",
537
+ "type": "spacing"
538
+ },
539
+ "3": {
540
+ "value": "0.75 * {rem}",
541
+ "type": "spacing"
542
+ },
543
+ "4": {
544
+ "value": "1.00 * {rem}",
545
+ "type": "spacing"
546
+ },
547
+ "5": {
548
+ "value": "1.50 * {rem}",
549
+ "type": "spacing"
550
+ },
551
+ "6": {
552
+ "value": "2.00 * {rem}",
553
+ "type": "spacing"
554
+ },
555
+ "7": {
556
+ "value": "3.50 * {rem}",
557
+ "type": "spacing"
558
+ },
559
+ "8": {
560
+ "value": "5.00 * {rem}",
561
+ "type": "spacing"
562
+ },
563
+ "9": {
564
+ "value": "7.00 * {rem}",
565
+ "type": "spacing"
566
+ },
567
+ "10": {
568
+ "value": "10.00 * {rem}",
569
+ "type": "spacing"
570
+ }
571
+ },
572
+ "responsive": {
573
+ "0-1": {
574
+ "value": "clamp(0.13rem, calc(0.09rem + 0.15vw), 0.25rem)",
575
+ "type": "spacing"
576
+ },
577
+ "1-2": {
578
+ "value": "clamp(0.25rem, calc(0.19rem + 0.30vw), 0.50rem)",
579
+ "type": "spacing"
580
+ },
581
+ "2-3": {
582
+ "value": "clamp(0.50rem, calc(0.44rem + 0.30vw), 0.75rem)",
583
+ "type": "spacing"
584
+ },
585
+ "3-4": {
586
+ "value": "clamp(0.75rem, calc(0.69rem + 0.30vw), 1.00rem)",
587
+ "type": "spacing"
588
+ },
589
+ "4-5": {
590
+ "value": "clamp(1.00rem, calc(0.88rem + 0.60vw), 1.50rem)",
591
+ "type": "spacing"
592
+ },
593
+ "5-6": {
594
+ "value": "clamp(1.50rem, calc(1.38rem + 0.60vw), 2.00rem)",
595
+ "type": "spacing"
596
+ },
597
+ "6-7": {
598
+ "value": "clamp(2.00rem, calc(1.64rem + 1.81vw), 3.50rem)",
599
+ "type": "spacing"
600
+ },
601
+ "7-8": {
602
+ "value": "clamp(3.50rem, calc(3.14rem + 1.81vw), 5.00rem)",
603
+ "type": "spacing"
604
+ },
605
+ "8-9": {
606
+ "value": "clamp(5.00rem, calc(4.52rem + 2.41vw), 7.00rem)",
607
+ "type": "spacing"
608
+ },
609
+ "9-10": {
610
+ "value": "clamp(7.00rem, calc(6.28rem + 3.61vw), 10.00rem)",
611
+ "type": "spacing"
612
+ },
613
+ "3-6": {
614
+ "value": "clamp(0.75rem, calc(0.45rem + 1.51vw), 2.00rem)",
615
+ "type": "spacing"
616
+ },
617
+ "4-7": {
618
+ "value": "clamp(1.00rem, calc(0.40rem + 3.01vw), 3.50rem)",
619
+ "type": "spacing"
620
+ },
621
+ "5-8": {
622
+ "value": "clamp(1.50rem, calc(0.66rem + 4.22vw), 5.00rem)",
623
+ "type": "spacing"
624
+ },
625
+ "6-9": {
626
+ "value": "clamp(2.00rem, calc(0.80rem + 6.02vw), 7.00rem)",
627
+ "type": "spacing"
628
+ }
629
+ }
630
+ },
631
+ "shadow": {
632
+ "1": {
633
+ "value": [
634
+ {
635
+ "color": "#00000026",
636
+ "type": "dropShadow",
637
+ "x": "0",
638
+ "y": "1",
639
+ "blur": "1",
640
+ "spread": "0"
641
+ },
642
+ {
643
+ "color": "#0000000d",
644
+ "type": "dropShadow",
645
+ "x": "0",
646
+ "y": "1",
647
+ "blur": "5",
648
+ "spread": "0"
649
+ }
650
+ ],
651
+ "type": "boxShadow"
652
+ },
653
+ "2": {
654
+ "value": [
655
+ {
656
+ "color": "#00000008",
657
+ "type": "dropShadow",
658
+ "x": "0",
659
+ "y": "1",
660
+ "blur": "2",
661
+ "spread": "0"
662
+ },
663
+ {
664
+ "color": "#00000012",
665
+ "type": "dropShadow",
666
+ "x": "0",
667
+ "y": "15",
668
+ "blur": "30",
669
+ "spread": "0"
670
+ }
671
+ ],
672
+ "type": "boxShadow"
673
+ },
674
+ "3": {
675
+ "value": [
676
+ {
677
+ "color": "#00000005",
678
+ "type": "dropShadow",
679
+ "x": "0",
680
+ "y": "2.767256498336792",
681
+ "blur": "2.2138051986694336",
682
+ "spread": "0"
683
+ },
684
+ {
685
+ "color": "#00000008",
686
+ "type": "dropShadow",
687
+ "x": "0",
688
+ "y": "6.650102138519287",
689
+ "blur": "5.32008171081543",
690
+ "spread": "0"
691
+ },
692
+ {
693
+ "color": "#0000000a",
694
+ "type": "dropShadow",
695
+ "x": "0",
696
+ "y": "12.521552085876465",
697
+ "blur": "10.017241477966309",
698
+ "spread": "0"
699
+ },
700
+ {
701
+ "color": "#0000000a",
702
+ "type": "dropShadow",
703
+ "x": "0",
704
+ "y": "22.3363094329834",
705
+ "blur": "17.869047164916992",
706
+ "spread": "0"
707
+ },
708
+ {
709
+ "color": "#0000000d",
710
+ "type": "dropShadow",
711
+ "x": "0",
712
+ "y": "41.777610778808594",
713
+ "blur": "33.422088623046875",
714
+ "spread": "0"
715
+ },
716
+ {
717
+ "color": "#00000012",
718
+ "type": "dropShadow",
719
+ "x": "0",
720
+ "y": "100",
721
+ "blur": "80",
722
+ "spread": "0"
723
+ }
724
+ ],
725
+ "type": "boxShadow"
726
+ }
727
+ },
728
+ "lineHeight": {
729
+ "1": {
730
+ "value": "110%",
731
+ "type": "lineHeights",
732
+ "description": "Use only for display."
733
+ },
734
+ "2": {
735
+ "value": "120%",
736
+ "type": "lineHeights",
737
+ "description": "Use for larger headings."
738
+ },
739
+ "3": {
740
+ "value": "130%",
741
+ "type": "lineHeights",
742
+ "description": "Use for small and medium sized headings."
743
+ },
744
+ "4": {
745
+ "value": "140%",
746
+ "type": "lineHeights",
747
+ "description": "Use for body-sized text"
748
+ },
749
+ "5": {
750
+ "value": "150%",
751
+ "type": "lineHeights",
752
+ "description": "Use for body-sized text in long-form reading applications."
753
+ },
754
+ "description": {
755
+ "value": "In production, all units are in %.",
756
+ "type": "other"
757
+ },
758
+ "responsive": {
759
+ "value": "clamp(1.1em, calc(1.25em + -0.4vw), 1.2em)",
760
+ "type": "lineHeights",
761
+ "description": "This is the responsive line height for the responsive type sizes."
762
+ }
763
+ },
764
+ "fontWeight": {
765
+ "regular": {
766
+ "value": "400",
767
+ "type": "fontWeights"
768
+ },
769
+ "medium": {
770
+ "value": "500",
771
+ "type": "fontWeights"
772
+ },
773
+ "bold": {
774
+ "value": "700",
775
+ "type": "fontWeights"
776
+ },
777
+ "light": {
778
+ "value": "200",
779
+ "type": "fontWeights"
780
+ }
781
+ },
782
+ "letterSpacing": {
783
+ "none": {
784
+ "value": "0em",
785
+ "type": "letterSpacing",
786
+ "description": "in Figma, letter spacing values need to be % but in production they need to be expressed in em to work with varable fonts"
787
+ },
788
+ "tight": {
789
+ "value": "-.02em",
790
+ "type": "letterSpacing"
791
+ },
792
+ "loose": {
793
+ "value": ".03em",
794
+ "type": "letterSpacing"
795
+ }
796
+ },
797
+ "paragraphSpacing": {
798
+ "none": {
799
+ "value": "0",
800
+ "type": "paragraphSpacing"
801
+ }
802
+ },
803
+ "textCase": {
804
+ "none": {
805
+ "value": "none",
806
+ "type": "textCase"
807
+ },
808
+ "uppercase": {
809
+ "value": "uppercase",
810
+ "type": "textCase"
811
+ },
812
+ "capitalize": {
813
+ "value": "capitalize",
814
+ "type": "textCase"
815
+ }
816
+ },
817
+ "textDecoration": {
818
+ "none": {
819
+ "value": "none",
820
+ "type": "textDecoration"
821
+ },
822
+ "underline": {
823
+ "value": "underline",
824
+ "type": "textDecoration"
825
+ },
826
+ "strikethrough": {
827
+ "value": "line-through",
828
+ "type": "textDecoration"
829
+ }
830
+ },
831
+ "color": {
832
+ "gold": {
833
+ "0": {
834
+ "value": "#fcfafa",
835
+ "type": "color"
836
+ },
837
+ "3": {
838
+ "value": "#f5f2f1",
839
+ "type": "color"
840
+ },
841
+ "7": {
842
+ "value": "#eeeae5",
843
+ "type": "color"
844
+ },
845
+ "10": {
846
+ "value": "#eae3da",
847
+ "type": "color"
848
+ },
849
+ "15": {
850
+ "value": "#e3d0b8",
851
+ "type": "color"
852
+ },
853
+ "20": {
854
+ "value": "#dfc39e",
855
+ "type": "color"
856
+ },
857
+ "25": {
858
+ "value": "#dcb480",
859
+ "type": "color"
860
+ },
861
+ "30": {
862
+ "value": "#d8a45f",
863
+ "type": "color"
864
+ },
865
+ "35": {
866
+ "value": "#da9a45",
867
+ "type": "color"
868
+ },
869
+ "40": {
870
+ "value": "#d29137",
871
+ "type": "color"
872
+ },
873
+ "45": {
874
+ "value": "#c5832a",
875
+ "type": "color"
876
+ },
877
+ "50": {
878
+ "value": "#ba7920",
879
+ "type": "color"
880
+ },
881
+ "55": {
882
+ "value": "#a66915",
883
+ "type": "color"
884
+ },
885
+ "60": {
886
+ "value": "#9a6014",
887
+ "type": "color"
888
+ },
889
+ "65": {
890
+ "value": "#8c5407",
891
+ "type": "color"
892
+ },
893
+ "70": {
894
+ "value": "#7a4909",
895
+ "type": "color"
896
+ },
897
+ "73": {
898
+ "value": "#6d4108",
899
+ "type": "color"
900
+ },
901
+ "75": {
902
+ "value": "#633a0a",
903
+ "type": "color"
904
+ },
905
+ "78": {
906
+ "value": "#583409",
907
+ "type": "color"
908
+ },
909
+ "80": {
910
+ "value": "#522e03",
911
+ "type": "color"
912
+ },
913
+ "83": {
914
+ "value": "#4a2903",
915
+ "type": "color"
916
+ },
917
+ "85": {
918
+ "value": "#3f2300",
919
+ "type": "color"
920
+ },
921
+ "88": {
922
+ "value": "#331c00",
923
+ "type": "color"
924
+ },
925
+ "90": {
926
+ "value": "#2d1803",
927
+ "type": "color"
928
+ },
929
+ "93": {
930
+ "value": "#211202",
931
+ "type": "color"
932
+ },
933
+ "95": {
934
+ "value": "#1a0e04",
935
+ "type": "color"
936
+ },
937
+ "100": {
938
+ "value": "#0f0000",
939
+ "type": "color"
940
+ }
941
+ },
942
+ "gray": {
943
+ "0": {
944
+ "value": "#fbfbfb",
945
+ "type": "color"
946
+ },
947
+ "3": {
948
+ "value": "#f4f3f2",
949
+ "type": "color"
950
+ },
951
+ "7": {
952
+ "value": "#ebe9e8",
953
+ "type": "color"
954
+ },
955
+ "10": {
956
+ "value": "#e3e0df",
957
+ "type": "color"
958
+ },
959
+ "15": {
960
+ "value": "#d7d4d3",
961
+ "type": "color"
962
+ },
963
+ "20": {
964
+ "value": "#cbc7c6",
965
+ "type": "color"
966
+ },
967
+ "25": {
968
+ "value": "#bfbcbb",
969
+ "type": "color"
970
+ },
971
+ "30": {
972
+ "value": "#b3afae",
973
+ "type": "color"
974
+ },
975
+ "35": {
976
+ "value": "#a7a4a3",
977
+ "type": "color"
978
+ },
979
+ "40": {
980
+ "value": "#9b9796",
981
+ "type": "color"
982
+ },
983
+ "45": {
984
+ "value": "#8f8c8b",
985
+ "type": "color"
986
+ },
987
+ "50": {
988
+ "value": "#827f7e",
989
+ "type": "color"
990
+ },
991
+ "55": {
992
+ "value": "#767372",
993
+ "type": "color"
994
+ },
995
+ "60": {
996
+ "value": "#6a6766",
997
+ "type": "color"
998
+ },
999
+ "65": {
1000
+ "value": "#5e5b5a",
1001
+ "type": "color"
1002
+ },
1003
+ "70": {
1004
+ "value": "#514e4d",
1005
+ "type": "color"
1006
+ },
1007
+ "73": {
1008
+ "value": "#4c4948",
1009
+ "type": "color"
1010
+ },
1011
+ "75": {
1012
+ "value": "#444140",
1013
+ "type": "color"
1014
+ },
1015
+ "78": {
1016
+ "value": "#3f3c3b",
1017
+ "type": "color"
1018
+ },
1019
+ "80": {
1020
+ "value": "#383635",
1021
+ "type": "color"
1022
+ },
1023
+ "83": {
1024
+ "value": "#32302f",
1025
+ "type": "color"
1026
+ },
1027
+ "85": {
1028
+ "value": "#2c2a29",
1029
+ "type": "color"
1030
+ },
1031
+ "88": {
1032
+ "value": "#282625",
1033
+ "type": "color"
1034
+ },
1035
+ "90": {
1036
+ "value": "#201e1d",
1037
+ "type": "color"
1038
+ },
1039
+ "93": {
1040
+ "value": "#1b1918",
1041
+ "type": "color"
1042
+ },
1043
+ "95": {
1044
+ "value": "#141110",
1045
+ "type": "color"
1046
+ },
1047
+ "100": {
1048
+ "value": "#080402",
1049
+ "type": "color"
1050
+ }
1051
+ },
1052
+ "green": {
1053
+ "0": {
1054
+ "value": "#f5fbf7",
1055
+ "type": "color"
1056
+ },
1057
+ "3": {
1058
+ "value": "#e9f6ee",
1059
+ "type": "color"
1060
+ },
1061
+ "7": {
1062
+ "value": "#d7efdf",
1063
+ "type": "color"
1064
+ },
1065
+ "10": {
1066
+ "value": "#c6ead0",
1067
+ "type": "color"
1068
+ },
1069
+ "15": {
1070
+ "value": "#aae1b7",
1071
+ "type": "color"
1072
+ },
1073
+ "20": {
1074
+ "value": "#89daa0",
1075
+ "type": "color"
1076
+ },
1077
+ "25": {
1078
+ "value": "#6dd18b",
1079
+ "type": "color"
1080
+ },
1081
+ "30": {
1082
+ "value": "#4dc679",
1083
+ "type": "color"
1084
+ },
1085
+ "35": {
1086
+ "value": "#40ba6f",
1087
+ "type": "color"
1088
+ },
1089
+ "40": {
1090
+ "value": "#30ac63",
1091
+ "type": "color"
1092
+ },
1093
+ "45": {
1094
+ "value": "#1da158",
1095
+ "type": "color"
1096
+ },
1097
+ "50": {
1098
+ "value": "#01944d",
1099
+ "type": "color"
1100
+ },
1101
+ "55": {
1102
+ "value": "#008840",
1103
+ "type": "color"
1104
+ },
1105
+ "60": {
1106
+ "value": "#007934",
1107
+ "type": "color"
1108
+ },
1109
+ "65": {
1110
+ "value": "#006d29",
1111
+ "type": "color"
1112
+ },
1113
+ "70": {
1114
+ "value": "#00611e",
1115
+ "type": "color"
1116
+ },
1117
+ "73": {
1118
+ "value": "#005710",
1119
+ "type": "color"
1120
+ },
1121
+ "75": {
1122
+ "value": "#00510f",
1123
+ "type": "color"
1124
+ },
1125
+ "78": {
1126
+ "value": "#004c03",
1127
+ "type": "color"
1128
+ },
1129
+ "80": {
1130
+ "value": "#004502",
1131
+ "type": "color"
1132
+ },
1133
+ "83": {
1134
+ "value": "#003d00",
1135
+ "type": "color"
1136
+ },
1137
+ "85": {
1138
+ "value": "#003700",
1139
+ "type": "color"
1140
+ },
1141
+ "88": {
1142
+ "value": "#013300",
1143
+ "type": "color"
1144
+ },
1145
+ "90": {
1146
+ "value": "#012c00",
1147
+ "type": "color"
1148
+ },
1149
+ "93": {
1150
+ "value": "#012400",
1151
+ "type": "color"
1152
+ },
1153
+ "95": {
1154
+ "value": "#011b00",
1155
+ "type": "color"
1156
+ },
1157
+ "100": {
1158
+ "value": "#010800",
1159
+ "type": "color"
1160
+ }
1161
+ },
1162
+ "blue": {
1163
+ "0": {
1164
+ "value": "#fafbff",
1165
+ "type": "color"
1166
+ },
1167
+ "3": {
1168
+ "value": "#ecf4f8",
1169
+ "type": "color"
1170
+ },
1171
+ "7": {
1172
+ "value": "#ddebf3",
1173
+ "type": "color"
1174
+ },
1175
+ "10": {
1176
+ "value": "#cde6eb",
1177
+ "type": "color"
1178
+ },
1179
+ "15": {
1180
+ "value": "#b2dde6",
1181
+ "type": "color"
1182
+ },
1183
+ "20": {
1184
+ "value": "#94d4de",
1185
+ "type": "color"
1186
+ },
1187
+ "25": {
1188
+ "value": "#77cad8",
1189
+ "type": "color"
1190
+ },
1191
+ "30": {
1192
+ "value": "#54c0cd",
1193
+ "type": "color"
1194
+ },
1195
+ "35": {
1196
+ "value": "#30b5c4",
1197
+ "type": "color"
1198
+ },
1199
+ "40": {
1200
+ "value": "#19a8b8",
1201
+ "type": "color"
1202
+ },
1203
+ "45": {
1204
+ "value": "#009bad",
1205
+ "type": "color"
1206
+ },
1207
+ "50": {
1208
+ "value": "#0190a0",
1209
+ "type": "color"
1210
+ },
1211
+ "55": {
1212
+ "value": "#008292",
1213
+ "type": "color"
1214
+ },
1215
+ "60": {
1216
+ "value": "#007586",
1217
+ "type": "color"
1218
+ },
1219
+ "65": {
1220
+ "value": "#006979",
1221
+ "type": "color"
1222
+ },
1223
+ "70": {
1224
+ "value": "#005b6d",
1225
+ "type": "color"
1226
+ },
1227
+ "73": {
1228
+ "value": "#005366",
1229
+ "type": "color"
1230
+ },
1231
+ "75": {
1232
+ "value": "#004d5f",
1233
+ "type": "color"
1234
+ },
1235
+ "78": {
1236
+ "value": "#004657",
1237
+ "type": "color"
1238
+ },
1239
+ "80": {
1240
+ "value": "#004252",
1241
+ "type": "color"
1242
+ },
1243
+ "83": {
1244
+ "value": "#00394d",
1245
+ "type": "color"
1246
+ },
1247
+ "85": {
1248
+ "value": "#003344",
1249
+ "type": "color"
1250
+ },
1251
+ "88": {
1252
+ "value": "#012e41",
1253
+ "type": "color"
1254
+ },
1255
+ "90": {
1256
+ "value": "#012839",
1257
+ "type": "color"
1258
+ },
1259
+ "93": {
1260
+ "value": "#002233",
1261
+ "type": "color"
1262
+ },
1263
+ "95": {
1264
+ "value": "#001c2a",
1265
+ "type": "color"
1266
+ },
1267
+ "100": {
1268
+ "value": "#000a23",
1269
+ "type": "color"
1270
+ }
1271
+ },
1272
+ "pink": {
1273
+ "0": {
1274
+ "value": "#fff8f6",
1275
+ "type": "color"
1276
+ },
1277
+ "3": {
1278
+ "value": "#fff1f0",
1279
+ "type": "color"
1280
+ },
1281
+ "7": {
1282
+ "value": "#ffdedb",
1283
+ "type": "color"
1284
+ },
1285
+ "10": {
1286
+ "value": "#ffd6d2",
1287
+ "type": "color"
1288
+ },
1289
+ "15": {
1290
+ "value": "#ffc5c1",
1291
+ "type": "color"
1292
+ },
1293
+ "20": {
1294
+ "value": "#fbb7b4",
1295
+ "type": "color"
1296
+ },
1297
+ "25": {
1298
+ "value": "#efaba8",
1299
+ "type": "color"
1300
+ },
1301
+ "30": {
1302
+ "value": "#e29e9d",
1303
+ "type": "color"
1304
+ },
1305
+ "35": {
1306
+ "value": "#d49294",
1307
+ "type": "color"
1308
+ },
1309
+ "40": {
1310
+ "value": "#ca8588",
1311
+ "type": "color"
1312
+ },
1313
+ "45": {
1314
+ "value": "#bc7a7e",
1315
+ "type": "color"
1316
+ },
1317
+ "50": {
1318
+ "value": "#b06d74",
1319
+ "type": "color"
1320
+ },
1321
+ "55": {
1322
+ "value": "#a35f6a",
1323
+ "type": "color"
1324
+ },
1325
+ "60": {
1326
+ "value": "#95535d",
1327
+ "type": "color"
1328
+ },
1329
+ "65": {
1330
+ "value": "#894755",
1331
+ "type": "color"
1332
+ },
1333
+ "70": {
1334
+ "value": "#7c394a",
1335
+ "type": "color"
1336
+ },
1337
+ "73": {
1338
+ "value": "#763247",
1339
+ "type": "color"
1340
+ },
1341
+ "75": {
1342
+ "value": "#6d293e",
1343
+ "type": "color"
1344
+ },
1345
+ "78": {
1346
+ "value": "#66243a",
1347
+ "type": "color"
1348
+ },
1349
+ "80": {
1350
+ "value": "#5f1e34",
1351
+ "type": "color"
1352
+ },
1353
+ "83": {
1354
+ "value": "#5a1633",
1355
+ "type": "color"
1356
+ },
1357
+ "85": {
1358
+ "value": "#530e2b",
1359
+ "type": "color"
1360
+ },
1361
+ "88": {
1362
+ "value": "#4a0825",
1363
+ "type": "color"
1364
+ },
1365
+ "90": {
1366
+ "value": "#45001f",
1367
+ "type": "color"
1368
+ },
1369
+ "93": {
1370
+ "value": "#3d0015",
1371
+ "type": "color"
1372
+ },
1373
+ "95": {
1374
+ "value": "#350012",
1375
+ "type": "color"
1376
+ },
1377
+ "100": {
1378
+ "value": "#2e0003",
1379
+ "type": "color"
1380
+ }
1381
+ },
1382
+ "salmon": {
1383
+ "0": {
1384
+ "value": "#fef8f8",
1385
+ "type": "color"
1386
+ },
1387
+ "3": {
1388
+ "value": "#feefeb",
1389
+ "type": "color"
1390
+ },
1391
+ "7": {
1392
+ "value": "#fedfd8",
1393
+ "type": "color"
1394
+ },
1395
+ "10": {
1396
+ "value": "#fed6ce",
1397
+ "type": "color"
1398
+ },
1399
+ "15": {
1400
+ "value": "#fec3b1",
1401
+ "type": "color"
1402
+ },
1403
+ "20": {
1404
+ "value": "#ffb296",
1405
+ "type": "color"
1406
+ },
1407
+ "25": {
1408
+ "value": "#ffa378",
1409
+ "type": "color"
1410
+ },
1411
+ "30": {
1412
+ "value": "#f9945e",
1413
+ "type": "color"
1414
+ },
1415
+ "35": {
1416
+ "value": "#ed8955",
1417
+ "type": "color"
1418
+ },
1419
+ "40": {
1420
+ "value": "#e07b4d",
1421
+ "type": "color"
1422
+ },
1423
+ "45": {
1424
+ "value": "#d27146",
1425
+ "type": "color"
1426
+ },
1427
+ "50": {
1428
+ "value": "#c5653f",
1429
+ "type": "color"
1430
+ },
1431
+ "55": {
1432
+ "value": "#b55638",
1433
+ "type": "color"
1434
+ },
1435
+ "60": {
1436
+ "value": "#a74930",
1437
+ "type": "color"
1438
+ },
1439
+ "65": {
1440
+ "value": "#993c2b",
1441
+ "type": "color"
1442
+ },
1443
+ "70": {
1444
+ "value": "#892f26",
1445
+ "type": "color"
1446
+ },
1447
+ "73": {
1448
+ "value": "#842724",
1449
+ "type": "color"
1450
+ },
1451
+ "75": {
1452
+ "value": "#7c1e1e",
1453
+ "type": "color"
1454
+ },
1455
+ "78": {
1456
+ "value": "#751515",
1457
+ "type": "color"
1458
+ },
1459
+ "80": {
1460
+ "value": "#6c0f17",
1461
+ "type": "color"
1462
+ },
1463
+ "83": {
1464
+ "value": "#630814",
1465
+ "type": "color"
1466
+ },
1467
+ "85": {
1468
+ "value": "#5e0010",
1469
+ "type": "color"
1470
+ },
1471
+ "88": {
1472
+ "value": "#570007",
1473
+ "type": "color"
1474
+ },
1475
+ "90": {
1476
+ "value": "#4e0000",
1477
+ "type": "color"
1478
+ },
1479
+ "93": {
1480
+ "value": "#420002",
1481
+ "type": "color"
1482
+ },
1483
+ "95": {
1484
+ "value": "#3e0001",
1485
+ "type": "color"
1486
+ },
1487
+ "100": {
1488
+ "value": "#340002",
1489
+ "type": "color"
1490
+ }
1491
+ },
1492
+ "orange": {
1493
+ "0": {
1494
+ "value": "#fff9f1",
1495
+ "type": "color"
1496
+ },
1497
+ "3": {
1498
+ "value": "#ffefe5",
1499
+ "type": "color"
1500
+ },
1501
+ "7": {
1502
+ "value": "#ffe0cc",
1503
+ "type": "color"
1504
+ },
1505
+ "10": {
1506
+ "value": "#ffd7bd",
1507
+ "type": "color"
1508
+ },
1509
+ "15": {
1510
+ "value": "#ffc39f",
1511
+ "type": "color"
1512
+ },
1513
+ "20": {
1514
+ "value": "#ffb27e",
1515
+ "type": "color"
1516
+ },
1517
+ "25": {
1518
+ "value": "#fe9f5f",
1519
+ "type": "color"
1520
+ },
1521
+ "30": {
1522
+ "value": "#ff8b40",
1523
+ "type": "color"
1524
+ },
1525
+ "35": {
1526
+ "value": "#ff7b28",
1527
+ "type": "color"
1528
+ },
1529
+ "40": {
1530
+ "value": "#f46e15",
1531
+ "type": "color"
1532
+ },
1533
+ "45": {
1534
+ "value": "#e76205",
1535
+ "type": "color"
1536
+ },
1537
+ "50": {
1538
+ "value": "#d75001",
1539
+ "type": "color"
1540
+ },
1541
+ "55": {
1542
+ "value": "#c54900",
1543
+ "type": "color"
1544
+ },
1545
+ "60": {
1546
+ "value": "#b43c00",
1547
+ "type": "color"
1548
+ },
1549
+ "65": {
1550
+ "value": "#a53100",
1551
+ "type": "color"
1552
+ },
1553
+ "70": {
1554
+ "value": "#942601",
1555
+ "type": "color"
1556
+ },
1557
+ "73": {
1558
+ "value": "#831b01",
1559
+ "type": "color"
1560
+ },
1561
+ "75": {
1562
+ "value": "#811701",
1563
+ "type": "color"
1564
+ },
1565
+ "78": {
1566
+ "value": "#740e01",
1567
+ "type": "color"
1568
+ },
1569
+ "80": {
1570
+ "value": "#6f0801",
1571
+ "type": "color"
1572
+ },
1573
+ "83": {
1574
+ "value": "#650401",
1575
+ "type": "color"
1576
+ },
1577
+ "85": {
1578
+ "value": "#5f0000",
1579
+ "type": "color"
1580
+ },
1581
+ "88": {
1582
+ "value": "#520000",
1583
+ "type": "color"
1584
+ },
1585
+ "90": {
1586
+ "value": "#4e0000",
1587
+ "type": "color"
1588
+ },
1589
+ "93": {
1590
+ "value": "#420000",
1591
+ "type": "color"
1592
+ },
1593
+ "95": {
1594
+ "value": "#3c0000",
1595
+ "type": "color"
1596
+ },
1597
+ "100": {
1598
+ "value": "#320003",
1599
+ "type": "color"
1600
+ }
1601
+ },
1602
+ "yellow": {
1603
+ "0": {
1604
+ "value": "#fff9f1",
1605
+ "type": "color"
1606
+ },
1607
+ "3": {
1608
+ "value": "#fff0e0",
1609
+ "type": "color"
1610
+ },
1611
+ "7": {
1612
+ "value": "#ffe2c2",
1613
+ "type": "color"
1614
+ },
1615
+ "10": {
1616
+ "value": "#ffd8a5",
1617
+ "type": "color"
1618
+ },
1619
+ "15": {
1620
+ "value": "#ffc876",
1621
+ "type": "color"
1622
+ },
1623
+ "20": {
1624
+ "value": "#ffb84a",
1625
+ "type": "color"
1626
+ },
1627
+ "25": {
1628
+ "value": "#ffa920",
1629
+ "type": "color"
1630
+ },
1631
+ "30": {
1632
+ "value": "#f09d01",
1633
+ "type": "color"
1634
+ },
1635
+ "35": {
1636
+ "value": "#e29101",
1637
+ "type": "color"
1638
+ },
1639
+ "40": {
1640
+ "value": "#d38500",
1641
+ "type": "color"
1642
+ },
1643
+ "45": {
1644
+ "value": "#c67a00",
1645
+ "type": "color"
1646
+ },
1647
+ "50": {
1648
+ "value": "#b86e01",
1649
+ "type": "color"
1650
+ },
1651
+ "55": {
1652
+ "value": "#a96100",
1653
+ "type": "color"
1654
+ },
1655
+ "60": {
1656
+ "value": "#985600",
1657
+ "type": "color"
1658
+ },
1659
+ "65": {
1660
+ "value": "#894b00",
1661
+ "type": "color"
1662
+ },
1663
+ "70": {
1664
+ "value": "#7b3f01",
1665
+ "type": "color"
1666
+ },
1667
+ "73": {
1668
+ "value": "#743901",
1669
+ "type": "color"
1670
+ },
1671
+ "75": {
1672
+ "value": "#683301",
1673
+ "type": "color"
1674
+ },
1675
+ "78": {
1676
+ "value": "#602d00",
1677
+ "type": "color"
1678
+ },
1679
+ "80": {
1680
+ "value": "#592800",
1681
+ "type": "color"
1682
+ },
1683
+ "83": {
1684
+ "value": "#522300",
1685
+ "type": "color"
1686
+ },
1687
+ "85": {
1688
+ "value": "#491d00",
1689
+ "type": "color"
1690
+ },
1691
+ "88": {
1692
+ "value": "#421700",
1693
+ "type": "color"
1694
+ },
1695
+ "90": {
1696
+ "value": "#3b1200",
1697
+ "type": "color"
1698
+ },
1699
+ "93": {
1700
+ "value": "#330a00",
1701
+ "type": "color"
1702
+ },
1703
+ "95": {
1704
+ "value": "#2b0400",
1705
+ "type": "color"
1706
+ },
1707
+ "100": {
1708
+ "value": "#230000",
1709
+ "type": "color"
1710
+ }
1711
+ },
1712
+ "red": {
1713
+ "0": {
1714
+ "value": "#fff6f9",
1715
+ "type": "color"
1716
+ },
1717
+ "3": {
1718
+ "value": "#ffeceb",
1719
+ "type": "color"
1720
+ },
1721
+ "7": {
1722
+ "value": "#ffdedb",
1723
+ "type": "color"
1724
+ },
1725
+ "10": {
1726
+ "value": "#ffd5ce",
1727
+ "type": "color"
1728
+ },
1729
+ "15": {
1730
+ "value": "#ffc3b9",
1731
+ "type": "color"
1732
+ },
1733
+ "20": {
1734
+ "value": "#ffb0a1",
1735
+ "type": "color"
1736
+ },
1737
+ "25": {
1738
+ "value": "#fe9d8c",
1739
+ "type": "color"
1740
+ },
1741
+ "30": {
1742
+ "value": "#ff8872",
1743
+ "type": "color"
1744
+ },
1745
+ "35": {
1746
+ "value": "#ff745f",
1747
+ "type": "color"
1748
+ },
1749
+ "40": {
1750
+ "value": "#ff5f4d",
1751
+ "type": "color"
1752
+ },
1753
+ "45": {
1754
+ "value": "#f84d3c",
1755
+ "type": "color"
1756
+ },
1757
+ "50": {
1758
+ "value": "#e74135",
1759
+ "type": "color"
1760
+ },
1761
+ "55": {
1762
+ "value": "#d3372b",
1763
+ "type": "color"
1764
+ },
1765
+ "60": {
1766
+ "value": "#bf2a23",
1767
+ "type": "color"
1768
+ },
1769
+ "65": {
1770
+ "value": "#ad221f",
1771
+ "type": "color"
1772
+ },
1773
+ "70": {
1774
+ "value": "#9a1a19",
1775
+ "type": "color"
1776
+ },
1777
+ "73": {
1778
+ "value": "#8d1119",
1779
+ "type": "color"
1780
+ },
1781
+ "75": {
1782
+ "value": "#840b10",
1783
+ "type": "color"
1784
+ },
1785
+ "78": {
1786
+ "value": "#770d12",
1787
+ "type": "color"
1788
+ },
1789
+ "80": {
1790
+ "value": "#710208",
1791
+ "type": "color"
1792
+ },
1793
+ "83": {
1794
+ "value": "#6a0101",
1795
+ "type": "color"
1796
+ },
1797
+ "85": {
1798
+ "value": "#5e0000",
1799
+ "type": "color"
1800
+ },
1801
+ "88": {
1802
+ "value": "#570000",
1803
+ "type": "color"
1804
+ },
1805
+ "90": {
1806
+ "value": "#4a0001",
1807
+ "type": "color"
1808
+ },
1809
+ "93": {
1810
+ "value": "#420001",
1811
+ "type": "color"
1812
+ },
1813
+ "95": {
1814
+ "value": "#380001",
1815
+ "type": "color"
1816
+ },
1817
+ "100": {
1818
+ "value": "#2e0002",
1819
+ "type": "color"
1820
+ }
1821
+ },
1822
+ "parsely-green": {
1823
+ "0": {
1824
+ "value": "#f3feed",
1825
+ "type": "color"
1826
+ },
1827
+ "3": {
1828
+ "value": "#e9fbdf",
1829
+ "type": "color"
1830
+ },
1831
+ "7": {
1832
+ "value": "#dbf5cc",
1833
+ "type": "color"
1834
+ },
1835
+ "10": {
1836
+ "value": "#c6ecb0",
1837
+ "type": "color"
1838
+ },
1839
+ "15": {
1840
+ "value": "#afe393",
1841
+ "type": "color"
1842
+ },
1843
+ "20": {
1844
+ "value": "#a0d782",
1845
+ "type": "color"
1846
+ },
1847
+ "25": {
1848
+ "value": "#94cb77",
1849
+ "type": "color"
1850
+ },
1851
+ "30": {
1852
+ "value": "#87be6b",
1853
+ "type": "color"
1854
+ },
1855
+ "35": {
1856
+ "value": "#7cb260",
1857
+ "type": "color"
1858
+ },
1859
+ "40": {
1860
+ "value": "#6fa654",
1861
+ "type": "color"
1862
+ },
1863
+ "45": {
1864
+ "value": "#649a49",
1865
+ "type": "color"
1866
+ },
1867
+ "50": {
1868
+ "value": "#588e3e",
1869
+ "type": "color"
1870
+ },
1871
+ "55": {
1872
+ "value": "#488131",
1873
+ "type": "color"
1874
+ },
1875
+ "60": {
1876
+ "value": "#3b7425",
1877
+ "type": "color"
1878
+ },
1879
+ "65": {
1880
+ "value": "#29681b",
1881
+ "type": "color"
1882
+ },
1883
+ "70": {
1884
+ "value": "#165c0d",
1885
+ "type": "color"
1886
+ },
1887
+ "73": {
1888
+ "value": "#0b5706",
1889
+ "type": "color"
1890
+ },
1891
+ "75": {
1892
+ "value": "#004e00",
1893
+ "type": "color"
1894
+ },
1895
+ "78": {
1896
+ "value": "#004700",
1897
+ "type": "color"
1898
+ },
1899
+ "80": {
1900
+ "value": "#004200",
1901
+ "type": "color"
1902
+ },
1903
+ "83": {
1904
+ "value": "#003b00",
1905
+ "type": "color"
1906
+ },
1907
+ "85": {
1908
+ "value": "#003500",
1909
+ "type": "color"
1910
+ },
1911
+ "88": {
1912
+ "value": "#003000",
1913
+ "type": "color"
1914
+ },
1915
+ "90": {
1916
+ "value": "#002900",
1917
+ "type": "color"
1918
+ },
1919
+ "93": {
1920
+ "value": "#002400",
1921
+ "type": "color"
1922
+ },
1923
+ "95": {
1924
+ "value": "#001b00",
1925
+ "type": "color"
1926
+ },
1927
+ "100": {
1928
+ "value": "#000800",
1929
+ "type": "color"
1930
+ }
1931
+ }
1932
+ },
1933
+ "breakpoint": {
1934
+ "S": {
1935
+ "value": "320",
1936
+ "type": "sizing",
1937
+ "description": "< 655px"
1938
+ },
1939
+ "M": {
1940
+ "value": "656",
1941
+ "type": "sizing",
1942
+ "description": "656–1047px"
1943
+ },
1944
+ "L": {
1945
+ "value": "1048",
1946
+ "type": "sizing"
1947
+ },
1948
+ "XL": {
1949
+ "value": "1312",
1950
+ "type": "sizing",
1951
+ "description": "1312–1535px"
1952
+ },
1953
+ "XXL": {
1954
+ "value": "1536",
1955
+ "type": "sizing",
1956
+ "description": "1536–1647px"
1957
+ },
1958
+ "MAX": {
1959
+ "value": "1648",
1960
+ "type": "sizing",
1961
+ "description": "1648px +"
1962
+ }
1963
+ },
1964
+ "alignment": {
1965
+ "center": {
1966
+ "value": "744",
1967
+ "type": "sizing",
1968
+ "description": "min-width: 744px"
1969
+ },
1970
+ "wide": {
1971
+ "value": "1008",
1972
+ "type": "sizing",
1973
+ "description": "min-width: 1008px"
1974
+ },
1975
+ "full": {
1976
+ "value": "1536",
1977
+ "type": "sizing",
1978
+ "description": "max-width: 1536px"
1979
+ }
1980
+ }
1981
+ }