@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
@@ -40,9 +40,35 @@
40
40
  },
41
41
  "input": {
42
42
  "background": {
43
- "value": "#1b1918",
44
- "type": "color",
45
- "description": "Use for input backgrounds"
43
+ "default": {
44
+ "value": "#1b191800",
45
+ "type": "color",
46
+ "description": "Use for input backgrounds"
47
+ },
48
+ "primary": {
49
+ "value": "#514e4d",
50
+ "type": "color"
51
+ },
52
+ "brand": {
53
+ "value": "#9a6014",
54
+ "type": "color"
55
+ },
56
+ "success": {
57
+ "value": "#007934",
58
+ "type": "color"
59
+ },
60
+ "inactive": {
61
+ "value": "#383635",
62
+ "type": "color"
63
+ },
64
+ "disabled": {
65
+ "value": "#383635",
66
+ "type": "color"
67
+ },
68
+ "read-only": {
69
+ "value": "#1b1918",
70
+ "type": "color"
71
+ }
46
72
  },
47
73
  "label": {
48
74
  "default": {
@@ -73,7 +99,11 @@
73
99
  "type": "color"
74
100
  },
75
101
  "error": {
76
- "value": "#d3372b",
102
+ "value": "#ff5f4d",
103
+ "type": "color"
104
+ },
105
+ "read-only": {
106
+ "value": "#444140",
77
107
  "type": "color"
78
108
  }
79
109
  },
@@ -96,11 +126,11 @@
96
126
  "type": "color"
97
127
  },
98
128
  "hover": {
99
- "value": "#13191e00",
129
+ "value": "#2c2a29",
100
130
  "type": "color"
101
131
  },
102
132
  "active": {
103
- "value": "#1b1918",
133
+ "value": "#1b191800",
104
134
  "type": "color"
105
135
  },
106
136
  "disabled": {
@@ -164,6 +194,18 @@
164
194
  "type": "color"
165
195
  }
166
196
  }
197
+ },
198
+ "toggle": {
199
+ "switch": {
200
+ "default": {
201
+ "value": "#ebe9e8",
202
+ "type": "color"
203
+ },
204
+ "disabled": {
205
+ "value": "#827f7e",
206
+ "type": "color"
207
+ }
208
+ }
167
209
  }
168
210
  },
169
211
  "border": {
@@ -274,11 +316,19 @@
274
316
  },
275
317
  "inverse": {
276
318
  "type": "color",
277
- "value": "#2c2a29"
319
+ "value": "#ebe9e8"
278
320
  },
279
321
  "disabled": {
280
322
  "type": "color",
281
323
  "value": "#5e5b5a"
324
+ },
325
+ "brand": {
326
+ "value": "#c5832a",
327
+ "type": "color"
328
+ },
329
+ "inverse-disabled": {
330
+ "value": "#6a6766",
331
+ "type": "color"
282
332
  }
283
333
  },
284
334
  "button": {
@@ -703,6 +753,60 @@
703
753
  "value": "#89daa0"
704
754
  }
705
755
  }
756
+ },
757
+ "helper-text": {
758
+ "value": {
759
+ "fontFamily": "SF Pro Text",
760
+ "fontWeight": 400,
761
+ "fontSize": 12,
762
+ "lineHeight": "150%"
763
+ },
764
+ "type": "typography"
765
+ },
766
+ "label-xs": {
767
+ "value": {
768
+ "fontFamily": "SF Pro Text",
769
+ "fontWeight": 400,
770
+ "lineHeight": "100%",
771
+ "fontSize": 11
772
+ },
773
+ "type": "typography"
774
+ },
775
+ "label-small": {
776
+ "value": {
777
+ "fontFamily": "SF Pro Text",
778
+ "fontWeight": 400,
779
+ "lineHeight": "100%",
780
+ "fontSize": 12
781
+ },
782
+ "type": "typography"
783
+ },
784
+ "label-default": {
785
+ "value": {
786
+ "fontFamily": "SF Pro Text",
787
+ "fontWeight": 500,
788
+ "lineHeight": "100%",
789
+ "fontSize": 14
790
+ },
791
+ "type": "typography"
792
+ },
793
+ "label-default-quiet": {
794
+ "value": {
795
+ "fontFamily": "SF Pro Text",
796
+ "fontWeight": 400,
797
+ "lineHeight": "100%",
798
+ "fontSize": 14
799
+ },
800
+ "type": "typography"
801
+ },
802
+ "label-default-loud": {
803
+ "value": {
804
+ "fontFamily": "SF Pro Text",
805
+ "fontWeight": 700,
806
+ "lineHeight": "100%",
807
+ "fontSize": 14
808
+ },
809
+ "type": "typography"
706
810
  }
707
811
  },
708
812
  "focus": {
@@ -915,6 +1019,278 @@
915
1019
  }
916
1020
  }
917
1021
  },
1022
+ "sticker": {
1023
+ "gray": {
1024
+ "background": {
1025
+ "type": "color",
1026
+ "value": "#201e1d"
1027
+ },
1028
+ "background-secondary": {
1029
+ "type": "color",
1030
+ "value": "#cbc7c6"
1031
+ },
1032
+ "text": {
1033
+ "type": "color",
1034
+ "value": "#ffffff"
1035
+ },
1036
+ "text-secondary": {
1037
+ "type": "color",
1038
+ "value": "#13191e"
1039
+ },
1040
+ "icon": {
1041
+ "type": "color",
1042
+ "value": "#ffffff"
1043
+ },
1044
+ "hover": {
1045
+ "type": "color",
1046
+ "value": "#383635"
1047
+ },
1048
+ "active": {
1049
+ "type": "color",
1050
+ "value": "#444140"
1051
+ }
1052
+ },
1053
+ "blue": {
1054
+ "background": {
1055
+ "type": "color",
1056
+ "value": "#004252"
1057
+ },
1058
+ "background-secondary": {
1059
+ "type": "color",
1060
+ "value": "#54c0cd"
1061
+ },
1062
+ "text": {
1063
+ "type": "color",
1064
+ "value": "#ffffff"
1065
+ },
1066
+ "text-secondary": {
1067
+ "type": "color",
1068
+ "value": "#13191e"
1069
+ },
1070
+ "icon": {
1071
+ "type": "color",
1072
+ "value": "#ffffff"
1073
+ },
1074
+ "hover": {
1075
+ "type": "color",
1076
+ "value": "#005b6d"
1077
+ },
1078
+ "active": {
1079
+ "type": "color",
1080
+ "value": "#006979"
1081
+ }
1082
+ },
1083
+ "green": {
1084
+ "background": {
1085
+ "type": "color",
1086
+ "value": "#004502"
1087
+ },
1088
+ "background-secondary": {
1089
+ "type": "color",
1090
+ "value": "#4dc679"
1091
+ },
1092
+ "text": {
1093
+ "type": "color",
1094
+ "value": "#ffffff"
1095
+ },
1096
+ "text-secondary": {
1097
+ "type": "color",
1098
+ "value": "#13191e"
1099
+ },
1100
+ "icon": {
1101
+ "type": "color",
1102
+ "value": "#ffffff"
1103
+ },
1104
+ "hover": {
1105
+ "type": "color",
1106
+ "value": "#00611e"
1107
+ },
1108
+ "active": {
1109
+ "type": "color",
1110
+ "value": "#006d29"
1111
+ }
1112
+ },
1113
+ "red": {
1114
+ "background": {
1115
+ "type": "color",
1116
+ "value": "#710208"
1117
+ },
1118
+ "background-secondary": {
1119
+ "type": "color",
1120
+ "value": "#ff8872"
1121
+ },
1122
+ "text": {
1123
+ "type": "color",
1124
+ "value": "#ffffff"
1125
+ },
1126
+ "text-secondary": {
1127
+ "type": "color",
1128
+ "value": "#13191e"
1129
+ },
1130
+ "icon": {
1131
+ "type": "color",
1132
+ "value": "#ffffff"
1133
+ },
1134
+ "hover": {
1135
+ "type": "color",
1136
+ "value": "#9a1a19"
1137
+ },
1138
+ "active": {
1139
+ "type": "color",
1140
+ "value": "#ad221f"
1141
+ }
1142
+ },
1143
+ "gold": {
1144
+ "background": {
1145
+ "type": "color",
1146
+ "value": "#522e03"
1147
+ },
1148
+ "background-secondary": {
1149
+ "type": "color",
1150
+ "value": "#d8a45f"
1151
+ },
1152
+ "text": {
1153
+ "type": "color",
1154
+ "value": "#ffffff"
1155
+ },
1156
+ "text-secondary": {
1157
+ "type": "color",
1158
+ "value": "#13191e"
1159
+ },
1160
+ "icon": {
1161
+ "type": "color",
1162
+ "value": "#ffffff"
1163
+ },
1164
+ "hover": {
1165
+ "type": "color",
1166
+ "value": "#7a4909"
1167
+ },
1168
+ "active": {
1169
+ "type": "color",
1170
+ "value": "#8c5407"
1171
+ }
1172
+ },
1173
+ "yellow": {
1174
+ "background": {
1175
+ "type": "color",
1176
+ "value": "#592800"
1177
+ },
1178
+ "background-secondary": {
1179
+ "type": "color",
1180
+ "value": "#f09d01"
1181
+ },
1182
+ "text": {
1183
+ "type": "color",
1184
+ "value": "#ffffff"
1185
+ },
1186
+ "text-secondary": {
1187
+ "type": "color",
1188
+ "value": "#13191e"
1189
+ },
1190
+ "icon": {
1191
+ "type": "color",
1192
+ "value": "#ffffff"
1193
+ },
1194
+ "hover": {
1195
+ "type": "color",
1196
+ "value": "#7b3f01"
1197
+ },
1198
+ "active": {
1199
+ "type": "color",
1200
+ "value": "#894b00"
1201
+ }
1202
+ },
1203
+ "orange": {
1204
+ "background": {
1205
+ "type": "color",
1206
+ "value": "#6f0801"
1207
+ },
1208
+ "background-secondary": {
1209
+ "type": "color",
1210
+ "value": "#ff8b40"
1211
+ },
1212
+ "text": {
1213
+ "type": "color",
1214
+ "value": "#ffffff"
1215
+ },
1216
+ "text-secondary": {
1217
+ "type": "color",
1218
+ "value": "#13191e"
1219
+ },
1220
+ "icon": {
1221
+ "type": "color",
1222
+ "value": "#ffffff"
1223
+ },
1224
+ "hover": {
1225
+ "type": "color",
1226
+ "value": "#942601"
1227
+ },
1228
+ "active": {
1229
+ "type": "color",
1230
+ "value": "#a53100"
1231
+ }
1232
+ },
1233
+ "salmon": {
1234
+ "background": {
1235
+ "type": "color",
1236
+ "value": "#6c0f17"
1237
+ },
1238
+ "background-secondary": {
1239
+ "type": "color",
1240
+ "value": "#f9945e"
1241
+ },
1242
+ "text": {
1243
+ "type": "color",
1244
+ "value": "#ffffff"
1245
+ },
1246
+ "text-secondary": {
1247
+ "type": "color",
1248
+ "value": "#13191e"
1249
+ },
1250
+ "icon": {
1251
+ "type": "color",
1252
+ "value": "#ffffff"
1253
+ },
1254
+ "hover": {
1255
+ "type": "color",
1256
+ "value": "#892f26"
1257
+ },
1258
+ "active": {
1259
+ "type": "color",
1260
+ "value": "#993c2b"
1261
+ }
1262
+ },
1263
+ "pink": {
1264
+ "background": {
1265
+ "type": "color",
1266
+ "value": "#5f1e34"
1267
+ },
1268
+ "background-secondary": {
1269
+ "type": "color",
1270
+ "value": "#e29e9d"
1271
+ },
1272
+ "text": {
1273
+ "type": "color",
1274
+ "value": "#ffffff"
1275
+ },
1276
+ "text-secondary": {
1277
+ "type": "color",
1278
+ "value": "#13191e"
1279
+ },
1280
+ "icon": {
1281
+ "type": "color",
1282
+ "value": "#ffffff"
1283
+ },
1284
+ "hover": {
1285
+ "type": "color",
1286
+ "value": "#7c394a"
1287
+ },
1288
+ "active": {
1289
+ "type": "color",
1290
+ "value": "#894755"
1291
+ }
1292
+ }
1293
+ },
918
1294
  "toolbar": {
919
1295
  "background": {
920
1296
  "value": "#080402",
@@ -960,7 +1336,7 @@
960
1336
  "option-row": {
961
1337
  "default": {
962
1338
  "background": {
963
- "value": "#c5832a",
1339
+ "value": "#d29137",
964
1340
  "type": "color"
965
1341
  },
966
1342
  "icon": {
@@ -974,18 +1350,308 @@
974
1350
  "type": "color"
975
1351
  },
976
1352
  "icon": {
977
- "value": "#2c2a29",
1353
+ "value": "#ebe9e8",
978
1354
  "type": "color"
979
1355
  }
980
1356
  }
981
1357
  },
982
- "rem": {
983
- "value": 16,
984
- "type": "other",
985
- "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."
1358
+ "space": {
1359
+ "0": {
1360
+ "value": 0,
1361
+ "type": "spacing"
1362
+ },
1363
+ "1": {
1364
+ "value": 4,
1365
+ "type": "spacing"
1366
+ },
1367
+ "2": {
1368
+ "value": 8,
1369
+ "type": "spacing"
1370
+ },
1371
+ "3": {
1372
+ "value": 12,
1373
+ "type": "spacing"
1374
+ },
1375
+ "4": {
1376
+ "value": 16,
1377
+ "type": "spacing"
1378
+ },
1379
+ "5": {
1380
+ "value": 24,
1381
+ "type": "spacing"
1382
+ },
1383
+ "6": {
1384
+ "value": 32,
1385
+ "type": "spacing"
1386
+ },
1387
+ "7": {
1388
+ "value": 56,
1389
+ "type": "spacing"
1390
+ },
1391
+ "8": {
1392
+ "value": 80,
1393
+ "type": "spacing"
1394
+ },
1395
+ "9": {
1396
+ "value": 160,
1397
+ "type": "spacing"
1398
+ },
1399
+ "responsive": {
1400
+ "0": {
1401
+ "value": 0,
1402
+ "type": "spacing"
1403
+ },
1404
+ "1": {
1405
+ "value": "clamp(0.75rem, calc(0.69rem + 0.30vw), 1.00rem)",
1406
+ "type": "spacing"
1407
+ },
1408
+ "2": {
1409
+ "value": "clamp(1.00rem, calc(0.88rem + 0.60vw), 1.50rem)",
1410
+ "type": "spacing"
1411
+ },
1412
+ "3": {
1413
+ "value": "clamp(1.50rem, calc(1.38rem + 0.60vw), 2.00rem)",
1414
+ "type": "spacing"
1415
+ },
1416
+ "4": {
1417
+ "value": "clamp(2.00rem, calc(1.64rem + 1.81vw), 3.50rem)",
1418
+ "type": "spacing",
1419
+ "description": "The default space between sequential blocks in a layout"
1420
+ },
1421
+ "5": {
1422
+ "value": "clamp(3.50rem, calc(3.14rem + 1.81vw), 5.00rem)",
1423
+ "type": "spacing"
1424
+ },
1425
+ "6": {
1426
+ "value": "clamp(5.00rem, calc(4.52rem + 2.41vw), 7.00rem)",
1427
+ "type": "spacing"
1428
+ },
1429
+ "7": {
1430
+ "value": "clamp(7.00rem, calc(6.28rem + 3.61vw), 10.00rem)",
1431
+ "type": "spacing"
1432
+ },
1433
+ "0-1": {
1434
+ "value": "clamp(0.13rem, calc(0.09rem + 0.15vw), 0.25rem)",
1435
+ "type": "spacing"
1436
+ },
1437
+ "1-2": {
1438
+ "value": "clamp(0.25rem, calc(0.19rem + 0.30vw), 0.50rem)",
1439
+ "type": "spacing"
1440
+ },
1441
+ "2-3": {
1442
+ "value": "clamp(0.50rem, calc(0.44rem + 0.30vw), 0.75rem)",
1443
+ "type": "spacing"
1444
+ },
1445
+ "3-4": {
1446
+ "value": "clamp(0.75rem, calc(0.69rem + 0.30vw), 1.00rem)",
1447
+ "type": "spacing"
1448
+ },
1449
+ "4-5": {
1450
+ "value": "clamp(1.00rem, calc(0.88rem + 0.60vw), 1.50rem)",
1451
+ "type": "spacing"
1452
+ },
1453
+ "5-6": {
1454
+ "value": "clamp(1.50rem, calc(1.38rem + 0.60vw), 2.00rem)",
1455
+ "type": "spacing"
1456
+ },
1457
+ "6-7": {
1458
+ "value": "clamp(2.00rem, calc(1.64rem + 1.81vw), 3.50rem)",
1459
+ "type": "spacing"
1460
+ },
1461
+ "7-8": {
1462
+ "value": "clamp(3.50rem, calc(3.14rem + 1.81vw), 5.00rem)",
1463
+ "type": "spacing"
1464
+ },
1465
+ "8-9": {
1466
+ "value": "clamp(5.00rem, calc(4.52rem + 2.41vw), 7.00rem)",
1467
+ "type": "spacing"
1468
+ },
1469
+ "9-10": {
1470
+ "value": "clamp(7.00rem, calc(6.28rem + 3.61vw), 10.00rem)",
1471
+ "type": "spacing"
1472
+ },
1473
+ "3-6": {
1474
+ "value": "clamp(0.75rem, calc(0.45rem + 1.51vw), 2.00rem)",
1475
+ "type": "spacing"
1476
+ },
1477
+ "4-7": {
1478
+ "value": "clamp(1.00rem, calc(0.40rem + 3.01vw), 3.50rem)",
1479
+ "type": "spacing"
1480
+ },
1481
+ "5-8": {
1482
+ "value": "clamp(1.50rem, calc(0.66rem + 4.22vw), 5.00rem)",
1483
+ "type": "spacing"
1484
+ },
1485
+ "6-9": {
1486
+ "value": "clamp(2.00rem, calc(0.80rem + 6.02vw), 7.00rem)",
1487
+ "type": "spacing"
1488
+ }
1489
+ },
1490
+ "static": {
1491
+ "0": {
1492
+ "value": 2.08,
1493
+ "type": "spacing"
1494
+ },
1495
+ "1": {
1496
+ "value": 4,
1497
+ "type": "spacing"
1498
+ },
1499
+ "2": {
1500
+ "value": 8,
1501
+ "type": "spacing"
1502
+ },
1503
+ "3": {
1504
+ "value": 12,
1505
+ "type": "spacing"
1506
+ },
1507
+ "4": {
1508
+ "value": 16,
1509
+ "type": "spacing"
1510
+ },
1511
+ "5": {
1512
+ "value": 24,
1513
+ "type": "spacing"
1514
+ },
1515
+ "6": {
1516
+ "value": 32,
1517
+ "type": "spacing"
1518
+ },
1519
+ "7": {
1520
+ "value": 56,
1521
+ "type": "spacing"
1522
+ },
1523
+ "8": {
1524
+ "value": 80,
1525
+ "type": "spacing"
1526
+ },
1527
+ "9": {
1528
+ "value": 112,
1529
+ "type": "spacing"
1530
+ },
1531
+ "10": {
1532
+ "value": 160,
1533
+ "type": "spacing"
1534
+ }
1535
+ }
1536
+ },
1537
+ "borderRadius": {
1538
+ "0": {
1539
+ "value": 0,
1540
+ "type": "borderRadius"
1541
+ },
1542
+ "1": {
1543
+ "value": 2.08,
1544
+ "type": "borderRadius"
1545
+ },
1546
+ "2": {
1547
+ "value": 4,
1548
+ "type": "borderRadius"
1549
+ },
1550
+ "3": {
1551
+ "value": 8,
1552
+ "type": "borderRadius"
1553
+ },
1554
+ "4": {
1555
+ "value": 16,
1556
+ "type": "borderRadius"
1557
+ },
1558
+ "5": {
1559
+ "value": 32,
1560
+ "type": "borderRadius"
1561
+ },
1562
+ "6": {
1563
+ "value": 40,
1564
+ "type": "borderRadius"
1565
+ },
1566
+ "7": {
1567
+ "value": 56,
1568
+ "type": "borderRadius"
1569
+ },
1570
+ "static": {
1571
+ "0": {
1572
+ "value": 2.08,
1573
+ "type": "borderRadius"
1574
+ },
1575
+ "1": {
1576
+ "value": 4,
1577
+ "type": "borderRadius"
1578
+ },
1579
+ "2": {
1580
+ "value": 8,
1581
+ "type": "borderRadius"
1582
+ },
1583
+ "3": {
1584
+ "value": 16,
1585
+ "type": "borderRadius"
1586
+ },
1587
+ "4": {
1588
+ "value": 32,
1589
+ "type": "borderRadius"
1590
+ },
1591
+ "5": {
1592
+ "value": 40,
1593
+ "type": "borderRadius"
1594
+ },
1595
+ "6": {
1596
+ "value": 56,
1597
+ "type": "borderRadius"
1598
+ }
1599
+ },
1600
+ "responsive": {
1601
+ "3-5": {
1602
+ "value": "clamp(1.00rem, calc(0.64rem + 1.81vw), 2.50rem)",
1603
+ "type": "borderRadius"
1604
+ },
1605
+ "4-6": {
1606
+ "value": "clamp(2.00rem, calc(1.64rem + 1.81vw), 3.50rem)",
1607
+ "type": "borderRadius"
1608
+ }
1609
+ }
1610
+ },
1611
+ "fontFamily": {
1612
+ "body": {
1613
+ "value": "SF Pro Text",
1614
+ "type": "fontFamilies"
1615
+ },
1616
+ "serif": {
1617
+ "value": "Recoleta",
1618
+ "type": "fontFamilies"
1619
+ },
1620
+ "monospace": {
1621
+ "value": "SF Mono",
1622
+ "type": "fontFamilies"
1623
+ }
986
1624
  },
987
1625
  "fontSize": {
1626
+ "0": {
1627
+ "value": 10,
1628
+ "type": "fontSizes"
1629
+ },
1630
+ "1": {
1631
+ "value": 12,
1632
+ "type": "fontSizes"
1633
+ },
1634
+ "2": {
1635
+ "value": 14,
1636
+ "type": "fontSizes"
1637
+ },
1638
+ "3": {
1639
+ "value": 19,
1640
+ "type": "fontSizes"
1641
+ },
1642
+ "4": {
1643
+ "value": 32,
1644
+ "type": "fontSizes"
1645
+ },
1646
+ "5": {
1647
+ "value": 40,
1648
+ "type": "fontSizes"
1649
+ },
988
1650
  "static": {
1651
+ "0": {
1652
+ "value": 10,
1653
+ "type": "fontSizes"
1654
+ },
989
1655
  "1": {
990
1656
  "value": 12,
991
1657
  "type": "fontSizes",
@@ -1010,545 +1676,675 @@
1010
1676
  },
1011
1677
  "figma": {
1012
1678
  "1": {
1013
- "s": {
1014
- "value": 12.34,
1015
- "type": "other",
1016
- "description": "All of these fontSizes.figma tokens are used exclusively for convenience in Figma. We use them to generate the suite of styles we use in Figma and correspond to the screen size values in breakpoints. They are a representation of the responsive sizes generated by the clamp functions in the fontSizes.responsive object"
1017
- },
1018
- "m": {
1019
- "value": 11.07,
1020
- "type": "other"
1021
- },
1022
- "l": {
1023
- "value": 9.8,
1024
- "type": "other"
1025
- },
1026
- "xl": {
1027
- "value": 9.05,
1028
- "type": "other"
1029
- },
1030
- "max": {
1031
- "value": 11.07,
1032
- "type": "other"
1679
+ "S": {
1680
+ "value": 12.29,
1681
+ "type": "number"
1682
+ },
1683
+ "M": {
1684
+ "value": 11.25,
1685
+ "type": "number"
1686
+ },
1687
+ "L": {
1688
+ "value": 10.03,
1689
+ "type": "number"
1690
+ },
1691
+ "XL": {
1692
+ "value": 9.21,
1693
+ "type": "number"
1694
+ },
1695
+ "XXL": {
1696
+ "value": 8.52,
1697
+ "type": "number"
1698
+ },
1699
+ "MAX": {
1700
+ "value": 8.17,
1701
+ "type": "number"
1033
1702
  }
1034
1703
  },
1035
1704
  "2": {
1036
- "s": {
1037
- "value": 13.17,
1038
- "type": "other"
1705
+ "S": {
1706
+ "value": 13.12,
1707
+ "type": "number"
1708
+ },
1709
+ "M": {
1710
+ "value": 12.28,
1711
+ "type": "number"
1039
1712
  },
1040
- "m": {
1041
- "value": 12.19,
1042
- "type": "other"
1713
+ "L": {
1714
+ "value": 11.3,
1715
+ "type": "number"
1043
1716
  },
1044
- "l": {
1045
- "value": 11.17,
1046
- "type": "other"
1717
+ "XL": {
1718
+ "value": 10.64,
1719
+ "type": "number"
1047
1720
  },
1048
- "xl": {
1049
- "value": 10.55,
1050
- "type": "other"
1721
+ "XXL": {
1722
+ "value": 10.08,
1723
+ "type": "number"
1051
1724
  },
1052
- "max": {
1053
- "value": 9.84,
1054
- "type": "other"
1725
+ "MAX": {
1726
+ "value": 9.92,
1727
+ "type": "number"
1055
1728
  }
1056
1729
  },
1057
1730
  "3": {
1058
- "s": {
1059
- "value": 14.05,
1060
- "type": "other"
1731
+ "S": {
1732
+ "value": 14.02,
1733
+ "type": "number"
1061
1734
  },
1062
- "m": {
1063
- "value": 13.42,
1064
- "type": "other"
1735
+ "M": {
1736
+ "value": 13.44,
1737
+ "type": "number"
1065
1738
  },
1066
- "l": {
1067
- "value": 12.74,
1068
- "type": "other"
1739
+ "L": {
1740
+ "value": 12.78,
1741
+ "type": "number"
1069
1742
  },
1070
- "xl": {
1071
- "value": 12.31,
1072
- "type": "other"
1743
+ "XL": {
1744
+ "value": 12.33,
1745
+ "type": "number"
1073
1746
  },
1074
- "max": {
1075
- "value": 11.81,
1076
- "type": "other"
1747
+ "XXL": {
1748
+ "value": 11.95,
1749
+ "type": "number"
1750
+ },
1751
+ "MAX": {
1752
+ "value": 11.84,
1753
+ "type": "number"
1077
1754
  }
1078
1755
  },
1079
1756
  "4": {
1080
- "s": {
1081
- "value": 15,
1082
- "type": "other"
1757
+ "S": {
1758
+ "value": 15.01,
1759
+ "type": "number"
1760
+ },
1761
+ "M": {
1762
+ "value": 14.81,
1763
+ "type": "number"
1083
1764
  },
1084
- "m": {
1085
- "value": 14.77,
1086
- "type": "other"
1765
+ "L": {
1766
+ "value": 14.57,
1767
+ "type": "number"
1087
1768
  },
1088
- "l": {
1089
- "value": 14.52,
1090
- "type": "other"
1769
+ "XL": {
1770
+ "value": 14.41,
1771
+ "type": "number"
1091
1772
  },
1092
- "xl": {
1093
- "value": 14.36,
1094
- "type": "other"
1773
+ "XXL": {
1774
+ "value": 14.28,
1775
+ "type": "number"
1095
1776
  },
1096
- "max": {
1097
- "value": 14.17,
1098
- "type": "other"
1777
+ "MAX": {
1778
+ "value": 14.24,
1779
+ "type": "number"
1099
1780
  }
1100
1781
  },
1101
1782
  "5": {
1102
- "s": {
1783
+ "S": {
1103
1784
  "value": 16,
1104
- "type": "other"
1785
+ "type": "number"
1105
1786
  },
1106
- "m": {
1107
- "value": 16.25,
1108
- "type": "other"
1787
+ "M": {
1788
+ "value": 16.2,
1789
+ "type": "number"
1109
1790
  },
1110
- "l": {
1111
- "value": 16.55,
1112
- "type": "other"
1791
+ "L": {
1792
+ "value": 16.52,
1793
+ "type": "number"
1113
1794
  },
1114
- "xl": {
1115
- "value": 16.75,
1116
- "type": "other"
1795
+ "XL": {
1796
+ "value": 16.73,
1797
+ "type": "number"
1117
1798
  },
1118
- "max": {
1119
- "value": 17,
1120
- "type": "other"
1799
+ "XXL": {
1800
+ "value": 16.91,
1801
+ "type": "number"
1802
+ },
1803
+ "MAX": {
1804
+ "value": 16.96,
1805
+ "type": "number"
1121
1806
  }
1122
1807
  },
1123
1808
  "6": {
1124
- "s": {
1125
- "value": 17.07,
1126
- "type": "other"
1809
+ "S": {
1810
+ "value": 17.12,
1811
+ "type": "number"
1812
+ },
1813
+ "M": {
1814
+ "value": 17.96,
1815
+ "type": "number"
1127
1816
  },
1128
- "m": {
1129
- "value": 17.89,
1130
- "type": "other"
1817
+ "L": {
1818
+ "value": 18.94,
1819
+ "type": "number"
1131
1820
  },
1132
- "l": {
1133
- "value": 18.86,
1134
- "type": "other"
1821
+ "XL": {
1822
+ "value": 19.6,
1823
+ "type": "number"
1135
1824
  },
1136
- "xl": {
1137
- "value": 19.53,
1138
- "type": "other"
1825
+ "XXL": {
1826
+ "value": 20.16,
1827
+ "type": "number"
1139
1828
  },
1140
- "max": {
1141
- "value": 20.4,
1142
- "type": "other"
1829
+ "MAX": {
1830
+ "value": 20.44,
1831
+ "type": "number"
1143
1832
  }
1144
1833
  },
1145
1834
  "7": {
1146
- "s": {
1147
- "value": 18.22,
1148
- "type": "other"
1835
+ "S": {
1836
+ "value": 18.24,
1837
+ "type": "number"
1838
+ },
1839
+ "M": {
1840
+ "value": 19.72,
1841
+ "type": "number"
1149
1842
  },
1150
- "m": {
1151
- "value": 19.69,
1152
- "type": "other"
1843
+ "L": {
1844
+ "value": 21.57,
1845
+ "type": "number"
1153
1846
  },
1154
- "l": {
1155
- "value": 21.5,
1156
- "type": "other"
1847
+ "XL": {
1848
+ "value": 22.81,
1849
+ "type": "number"
1157
1850
  },
1158
- "xl": {
1159
- "value": 22.78,
1160
- "type": "other"
1851
+ "XXL": {
1852
+ "value": 23.86,
1853
+ "type": "number"
1161
1854
  },
1162
- "max": {
1163
- "value": 24.48,
1164
- "type": "other"
1855
+ "MAX": {
1856
+ "value": 24.39,
1857
+ "type": "number"
1165
1858
  }
1166
1859
  },
1167
1860
  "8": {
1168
- "s": {
1169
- "value": 19.44,
1170
- "type": "other"
1861
+ "S": {
1862
+ "value": 19.52,
1863
+ "type": "number"
1171
1864
  },
1172
- "m": {
1173
- "value": 21.67,
1174
- "type": "other"
1865
+ "M": {
1866
+ "value": 22.04,
1867
+ "type": "number"
1175
1868
  },
1176
- "l": {
1177
- "value": 24.51,
1178
- "type": "other"
1869
+ "L": {
1870
+ "value": 24.98,
1871
+ "type": "number"
1179
1872
  },
1180
- "xl": {
1181
- "value": 26.57,
1182
- "type": "other"
1873
+ "XL": {
1874
+ "value": 26.96,
1875
+ "type": "number"
1183
1876
  },
1184
- "max": {
1185
- "value": 29.38,
1186
- "type": "other"
1877
+ "XXL": {
1878
+ "value": 28.64,
1879
+ "type": "number"
1880
+ },
1881
+ "MAX": {
1882
+ "value": 29.44,
1883
+ "type": "number"
1187
1884
  }
1188
1885
  },
1189
1886
  "9": {
1190
- "s": {
1191
- "value": 20.74,
1192
- "type": "other"
1887
+ "S": {
1888
+ "value": 20.8,
1889
+ "type": "number"
1890
+ },
1891
+ "M": {
1892
+ "value": 24.43,
1893
+ "type": "number"
1193
1894
  },
1194
- "m": {
1195
- "value": 23.85,
1196
- "type": "other"
1895
+ "L": {
1896
+ "value": 28.7,
1897
+ "type": "number"
1197
1898
  },
1198
- "l": {
1199
- "value": 27.94,
1200
- "type": "other"
1899
+ "XL": {
1900
+ "value": 31.58,
1901
+ "type": "number"
1201
1902
  },
1202
- "xl": {
1203
- "value": 30.99,
1204
- "type": "other"
1903
+ "XXL": {
1904
+ "value": 34.02,
1905
+ "type": "number"
1205
1906
  },
1206
- "max": {
1207
- "value": 35.25,
1208
- "type": "other"
1907
+ "MAX": {
1908
+ "value": 35.2,
1909
+ "type": "number"
1209
1910
  }
1210
1911
  },
1211
1912
  "10": {
1212
- "s": {
1213
- "value": 22.13,
1214
- "type": "other"
1913
+ "S": {
1914
+ "value": 22.14,
1915
+ "type": "number"
1916
+ },
1917
+ "M": {
1918
+ "value": 27.25,
1919
+ "type": "number"
1215
1920
  },
1216
- "m": {
1217
- "value": 26.25,
1218
- "type": "other"
1921
+ "L": {
1922
+ "value": 33.21,
1923
+ "type": "number"
1219
1924
  },
1220
- "l": {
1221
- "value": 31.85,
1222
- "type": "other"
1925
+ "XL": {
1926
+ "value": 37.22,
1927
+ "type": "number"
1223
1928
  },
1224
- "xl": {
1225
- "value": 36.15,
1226
- "type": "other"
1929
+ "XXL": {
1930
+ "value": 40.63,
1931
+ "type": "number"
1227
1932
  },
1228
- "max": {
1229
- "value": 42.3,
1230
- "type": "other"
1933
+ "MAX": {
1934
+ "value": 42.24,
1935
+ "type": "number"
1231
1936
  }
1232
1937
  },
1233
1938
  "11": {
1234
- "s": {
1235
- "value": 23.61,
1236
- "type": "other"
1939
+ "S": {
1940
+ "value": 23.68,
1941
+ "type": "number"
1237
1942
  },
1238
- "m": {
1239
- "value": 28.9,
1240
- "type": "other"
1943
+ "M": {
1944
+ "value": 30.5,
1945
+ "type": "number"
1241
1946
  },
1242
- "l": {
1243
- "value": 36.31,
1244
- "type": "other"
1947
+ "L": {
1948
+ "value": 38.5,
1949
+ "type": "number"
1245
1950
  },
1246
- "xl": {
1247
- "value": 42.16,
1248
- "type": "other"
1951
+ "XL": {
1952
+ "value": 43.88,
1953
+ "type": "number"
1249
1954
  },
1250
- "max": {
1251
- "value": 50.76,
1252
- "type": "other"
1955
+ "XXL": {
1956
+ "value": 48.45,
1957
+ "type": "number"
1958
+ },
1959
+ "MAX": {
1960
+ "value": 50.72,
1961
+ "type": "number"
1253
1962
  }
1254
1963
  },
1255
1964
  "12": {
1256
- "s": {
1257
- "value": 25.19,
1258
- "type": "other"
1965
+ "S": {
1966
+ "value": 25.25,
1967
+ "type": "number"
1968
+ },
1969
+ "M": {
1970
+ "value": 34.29,
1971
+ "type": "number"
1259
1972
  },
1260
- "m": {
1261
- "value": 31.8,
1262
- "type": "other"
1973
+ "L": {
1974
+ "value": 44.83,
1975
+ "type": "number"
1263
1976
  },
1264
- "l": {
1265
- "value": 41.39,
1266
- "type": "other"
1977
+ "XL": {
1978
+ "value": 51.93,
1979
+ "type": "number"
1267
1980
  },
1268
- "xl": {
1269
- "value": 49.17,
1270
- "type": "other"
1981
+ "XXL": {
1982
+ "value": 57.96,
1983
+ "type": "number"
1271
1984
  },
1272
- "max": {
1273
- "value": 60.91,
1274
- "type": "other"
1985
+ "MAX": {
1986
+ "value": 60.96,
1987
+ "type": "number"
1275
1988
  }
1276
1989
  },
1277
1990
  "13": {
1278
- "s": {
1991
+ "S": {
1279
1992
  "value": 26.88,
1280
- "type": "other"
1993
+ "type": "number"
1994
+ },
1995
+ "M": {
1996
+ "value": 38.51,
1997
+ "type": "number"
1281
1998
  },
1282
- "m": {
1283
- "value": 35,
1284
- "type": "other"
1999
+ "L": {
2000
+ "value": 52.15,
2001
+ "type": "number"
1285
2002
  },
1286
- "l": {
1287
- "value": 47.18,
1288
- "type": "other"
2003
+ "XL": {
2004
+ "value": 61.34,
2005
+ "type": "number"
1289
2006
  },
1290
- "xl": {
1291
- "value": 57.35,
1292
- "type": "other"
2007
+ "XXL": {
2008
+ "value": 69.13,
2009
+ "type": "number"
1293
2010
  },
1294
- "max": {
1295
- "value": 73.1,
1296
- "type": "other"
2011
+ "MAX": {
2012
+ "value": 73.03,
2013
+ "type": "number"
1297
2014
  }
1298
2015
  },
1299
2016
  "14": {
1300
- "s": {
1301
- "value": 28.68,
1302
- "type": "other"
2017
+ "S": {
2018
+ "value": 28.64,
2019
+ "type": "number"
1303
2020
  },
1304
- "m": {
1305
- "value": 38.53,
1306
- "type": "other"
2021
+ "M": {
2022
+ "value": 43.59,
2023
+ "type": "number"
1307
2024
  },
1308
- "l": {
1309
- "value": 53.78,
1310
- "type": "other"
2025
+ "L": {
2026
+ "value": 61.04,
2027
+ "type": "number"
1311
2028
  },
1312
- "xl": {
1313
- "value": 66.9,
1314
- "type": "other"
2029
+ "XL": {
2030
+ "value": 72.78,
2031
+ "type": "number"
1315
2032
  },
1316
- "max": {
1317
- "value": 87.72,
1318
- "type": "other"
2033
+ "XXL": {
2034
+ "value": 82.75,
2035
+ "type": "number"
2036
+ },
2037
+ "MAX": {
2038
+ "value": 87.68,
2039
+ "type": "number"
1319
2040
  }
1320
2041
  },
1321
2042
  "15": {
1322
- "s": {
1323
- "value": 30.6,
1324
- "type": "other"
2043
+ "S": {
2044
+ "value": 30.62,
2045
+ "type": "number"
1325
2046
  },
1326
- "m": {
1327
- "value": 42.41,
1328
- "type": "other"
2047
+ "M": {
2048
+ "value": 49.51,
2049
+ "type": "number"
1329
2050
  },
1330
- "l": {
1331
- "value": 61.3,
1332
- "type": "other"
2051
+ "L": {
2052
+ "value": 71.54,
2053
+ "type": "number"
1333
2054
  },
1334
- "xl": {
1335
- "value": 78.02,
1336
- "type": "other"
2055
+ "XL": {
2056
+ "value": 86.37,
2057
+ "type": "number"
1337
2058
  },
1338
- "max": {
1339
- "value": 105.26,
1340
- "type": "other"
1341
- }
1342
- }
1343
- },
1344
- "responsive": {
1345
- "1": {
1346
- "value": "clamp(0.51rem, calc(0.83rem + -0.31vw), 0.77rem)",
1347
- "type": "fontSizes",
1348
- "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."
1349
- },
1350
- "2": {
1351
- "value": "clamp(0.62rem, calc(0.87rem + -0.25vw), 0.82rem)",
1352
- "type": "fontSizes"
1353
- },
1354
- "3": {
1355
- "value": "clamp(0.74rem, calc(0.91rem + -0.17vw), 0.88rem)",
1356
- "type": "fontSizes"
1357
- },
1358
- "4": {
1359
- "value": "clamp(0.89rem, calc(0.95rem + -0.06vw), 0.94rem)",
1360
- "type": "fontSizes"
1361
- },
1362
- "5": {
1363
- "value": "clamp(1.00rem, calc(0.98rem + 0.08vw), 1.06rem)",
1364
- "type": "fontSizes"
1365
- },
1366
- "6": {
1367
- "value": "clamp(1.07rem, calc(1.02rem + 0.25vw), 1.28rem)",
1368
- "type": "fontSizes"
1369
- },
1370
- "7": {
1371
- "value": "clamp(1.14rem, calc(1.04rem + 0.47vw), 1.53rem)",
1372
- "type": "fontSizes"
1373
- },
1374
- "8": {
1375
- "value": "clamp(1.22rem, calc(1.07rem + 0.75vw), 1.84rem)",
1376
- "type": "fontSizes"
1377
- },
1378
- "9": {
1379
- "value": "clamp(1.30rem, calc(1.08rem + 1.09vw), 2.20rem)",
1380
- "type": "fontSizes"
1381
- },
1382
- "10": {
1383
- "value": "clamp(1.38rem, calc(1.08rem + 1.52vw), 2.64rem)",
1384
- "type": "fontSizes"
1385
- },
1386
- "11": {
1387
- "value": "clamp(1.48rem, calc(1.07rem + 2.04vw), 3.17rem)",
1388
- "type": "fontSizes"
1389
- },
1390
- "12": {
1391
- "value": "clamp(1.57rem, calc(1.04rem + 2.69vw), 3.81rem)",
1392
- "type": "fontSizes"
1393
- },
1394
- "13": {
1395
- "value": "clamp(1.68rem, calc(0.98rem + 3.48vw), 4.57rem)",
1396
- "type": "fontSizes"
1397
- },
1398
- "14": {
1399
- "value": "clamp(1.79rem, calc(0.90rem + 4.45vw), 5.48rem)",
1400
- "type": "fontSizes"
1401
- },
1402
- "15": {
1403
- "value": "clamp(1.91rem, calc(0.79rem + 5.62vw), 6.58rem)",
1404
- "type": "fontSizes"
1405
- }
1406
- }
1407
- },
1408
- "borderRadius": {
1409
- "static": {
1410
- "1": {
1411
- "value": 4,
1412
- "type": "borderRadius"
1413
- },
1414
- "2": {
1415
- "value": 8,
1416
- "type": "borderRadius"
1417
- },
1418
- "3": {
1419
- "value": 16,
1420
- "type": "borderRadius"
1421
- },
1422
- "4": {
1423
- "value": 32,
1424
- "type": "borderRadius"
1425
- },
1426
- "5": {
1427
- "value": 40,
1428
- "type": "borderRadius"
1429
- },
1430
- "6": {
1431
- "value": 56,
1432
- "type": "borderRadius"
1433
- }
1434
- },
1435
- "responsive": {
1436
- "3-5": {
1437
- "value": "clamp(1.00rem, calc(0.64rem + 1.81vw), 2.50rem)",
1438
- "type": "borderRadius"
1439
- },
1440
- "4-6": {
1441
- "value": "clamp(2.00rem, calc(1.64rem + 1.81vw), 3.50rem)",
1442
- "type": "borderRadius"
1443
- }
1444
- }
1445
- },
1446
- "space": {
1447
- "static": {
1448
- "0": {
1449
- "value": 2.08,
1450
- "type": "spacing"
2059
+ "XXL": {
2060
+ "value": 98.96,
2061
+ "type": "number"
2062
+ },
2063
+ "MAX": {
2064
+ "value": 105.26,
2065
+ "type": "number"
2066
+ }
1451
2067
  },
2068
+ "12b": {
2069
+ "S": {
2070
+ "value": 48,
2071
+ "type": "number"
2072
+ },
2073
+ "M": {
2074
+ "value": 51.02,
2075
+ "type": "number"
2076
+ },
2077
+ "L": {
2078
+ "value": 54.55,
2079
+ "type": "number"
2080
+ },
2081
+ "XL": {
2082
+ "value": 56.93,
2083
+ "type": "number"
2084
+ },
2085
+ "XXL": {
2086
+ "value": 58.94,
2087
+ "type": "number"
2088
+ },
2089
+ "MAX": {
2090
+ "value": 59.95,
2091
+ "type": "number"
2092
+ }
2093
+ }
2094
+ },
2095
+ "responsive": {
1452
2096
  "1": {
1453
- "value": 4,
1454
- "type": "spacing"
2097
+ "value": "clamp(0.51rem, calc(0.83rem + -0.31vw), 0.77rem)",
2098
+ "type": "fontSizes",
2099
+ "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."
1455
2100
  },
1456
2101
  "2": {
1457
- "value": 8,
1458
- "type": "spacing"
2102
+ "value": "clamp(0.62rem, calc(0.87rem + -0.25vw), 0.82rem)",
2103
+ "type": "fontSizes"
1459
2104
  },
1460
2105
  "3": {
1461
- "value": 12,
1462
- "type": "spacing"
2106
+ "value": "clamp(0.74rem, calc(0.91rem + -0.17vw), 0.88rem)",
2107
+ "type": "fontSizes"
1463
2108
  },
1464
2109
  "4": {
1465
- "value": 16,
1466
- "type": "spacing"
2110
+ "value": "clamp(0.89rem, calc(0.95rem + -0.06vw), 0.94rem)",
2111
+ "type": "fontSizes"
1467
2112
  },
1468
2113
  "5": {
1469
- "value": 24,
1470
- "type": "spacing"
2114
+ "value": "clamp(1.00rem, calc(0.98rem + 0.08vw), 1.06rem)",
2115
+ "type": "fontSizes"
1471
2116
  },
1472
2117
  "6": {
1473
- "value": 32,
1474
- "type": "spacing"
2118
+ "value": "clamp(1.07rem, calc(1.02rem + 0.25vw), 1.28rem)",
2119
+ "type": "fontSizes"
1475
2120
  },
1476
2121
  "7": {
1477
- "value": 56,
1478
- "type": "spacing"
2122
+ "value": "clamp(1.14rem, calc(1.04rem + 0.47vw), 1.53rem)",
2123
+ "type": "fontSizes"
1479
2124
  },
1480
2125
  "8": {
1481
- "value": 80,
1482
- "type": "spacing"
2126
+ "value": "clamp(1.22rem, calc(1.07rem + 0.75vw), 1.84rem)",
2127
+ "type": "fontSizes"
1483
2128
  },
1484
2129
  "9": {
1485
- "value": 112,
1486
- "type": "spacing"
2130
+ "value": "clamp(1.30rem, calc(1.08rem + 1.09vw), 2.20rem)",
2131
+ "type": "fontSizes"
1487
2132
  },
1488
2133
  "10": {
1489
- "value": 160,
1490
- "type": "spacing"
1491
- }
1492
- },
1493
- "responsive": {
1494
- "0-1": {
1495
- "value": "clamp(0.13rem, calc(0.09rem + 0.15vw), 0.25rem)",
1496
- "type": "spacing"
1497
- },
1498
- "1-2": {
1499
- "value": "clamp(0.25rem, calc(0.19rem + 0.30vw), 0.50rem)",
1500
- "type": "spacing"
1501
- },
1502
- "2-3": {
1503
- "value": "clamp(0.50rem, calc(0.44rem + 0.30vw), 0.75rem)",
1504
- "type": "spacing"
2134
+ "value": "clamp(1.38rem, calc(1.08rem + 1.52vw), 2.64rem)",
2135
+ "type": "fontSizes"
1505
2136
  },
1506
- "3-4": {
1507
- "value": "clamp(0.75rem, calc(0.69rem + 0.30vw), 1.00rem)",
1508
- "type": "spacing"
2137
+ "11": {
2138
+ "value": "clamp(1.48rem, calc(1.07rem + 2.04vw), 3.17rem)",
2139
+ "type": "fontSizes"
1509
2140
  },
1510
- "4-5": {
1511
- "value": "clamp(1.00rem, calc(0.88rem + 0.60vw), 1.50rem)",
1512
- "type": "spacing"
2141
+ "12": {
2142
+ "value": "clamp(1.57rem, calc(1.04rem + 2.69vw), 3.81rem)",
2143
+ "type": "fontSizes"
1513
2144
  },
1514
- "5-6": {
1515
- "value": "clamp(1.50rem, calc(1.38rem + 0.60vw), 2.00rem)",
1516
- "type": "spacing"
2145
+ "13": {
2146
+ "value": "clamp(1.68rem, calc(0.98rem + 3.48vw), 4.57rem)",
2147
+ "type": "fontSizes"
1517
2148
  },
1518
- "6-7": {
1519
- "value": "clamp(2.00rem, calc(1.64rem + 1.81vw), 3.50rem)",
1520
- "type": "spacing"
2149
+ "14": {
2150
+ "value": "clamp(1.79rem, calc(0.90rem + 4.45vw), 5.48rem)",
2151
+ "type": "fontSizes"
1521
2152
  },
1522
- "7-8": {
1523
- "value": "clamp(3.50rem, calc(3.14rem + 1.81vw), 5.00rem)",
1524
- "type": "spacing"
2153
+ "15": {
2154
+ "value": "clamp(1.91rem, calc(0.79rem + 5.62vw), 6.58rem)",
2155
+ "type": "fontSizes"
1525
2156
  },
1526
- "8-9": {
1527
- "value": "clamp(5.00rem, calc(4.52rem + 2.41vw), 7.00rem)",
1528
- "type": "spacing"
2157
+ "12b": {
2158
+ "value": "clamp(3.00rem, calc(2.82rem + 0.90vw), 3.75rem)",
2159
+ "type": "fontSizes",
2160
+ "description": "lower contrast token for statistics. "
2161
+ }
2162
+ }
2163
+ },
2164
+ "lineHeight": {
2165
+ "1": {
2166
+ "value": "110%",
2167
+ "type": "lineHeights",
2168
+ "description": "Use only for display."
2169
+ },
2170
+ "2": {
2171
+ "value": "120%",
2172
+ "type": "lineHeights",
2173
+ "description": "Use for larger headings."
2174
+ },
2175
+ "3": {
2176
+ "value": "130%",
2177
+ "type": "lineHeights",
2178
+ "description": "Use for small and medium sized headings."
2179
+ },
2180
+ "4": {
2181
+ "value": "140%",
2182
+ "type": "lineHeights",
2183
+ "description": "Use for body-sized text"
2184
+ },
2185
+ "5": {
2186
+ "value": "150%",
2187
+ "type": "lineHeights",
2188
+ "description": "Use for body-sized text in long-form reading applications."
2189
+ },
2190
+ "body": {
2191
+ "value": "150%",
2192
+ "type": "lineHeights"
2193
+ },
2194
+ "heading": {
2195
+ "value": "113%",
2196
+ "type": "lineHeights"
2197
+ },
2198
+ "description": {
2199
+ "value": "In production, all units are in %.",
2200
+ "type": "other"
2201
+ },
2202
+ "responsive": {
2203
+ "value": "clamp(1.1em, calc(1.25em + -0.4vw), 1.2em)",
2204
+ "type": "lineHeights",
2205
+ "description": "This is the responsive line height for the responsive type sizes."
2206
+ }
2207
+ },
2208
+ "heading": {
2209
+ "1": {
2210
+ "value": {
2211
+ "fontFamily": "Recoleta",
2212
+ "fontWeight": 400,
2213
+ "lineHeight": "135%",
2214
+ "fontSize": 40,
2215
+ "letterSpacing": "-1%"
1529
2216
  },
1530
- "9-10": {
1531
- "value": "clamp(7.00rem, calc(6.28rem + 3.61vw), 10.00rem)",
1532
- "type": "spacing"
2217
+ "type": "typography"
2218
+ },
2219
+ "2": {
2220
+ "value": {
2221
+ "fontFamily": "SF Pro Text",
2222
+ "fontWeight": 500,
2223
+ "lineHeight": "120%",
2224
+ "fontSize": 32,
2225
+ "letterSpacing": "0%"
1533
2226
  },
1534
- "3-6": {
1535
- "value": "clamp(0.75rem, calc(0.45rem + 1.51vw), 2.00rem)",
1536
- "type": "spacing"
2227
+ "type": "typography"
2228
+ },
2229
+ "3": {
2230
+ "value": {
2231
+ "fontFamily": "SF Pro Text",
2232
+ "fontWeight": 500,
2233
+ "lineHeight": "150%",
2234
+ "fontSize": 19,
2235
+ "letterSpacing": "0%"
1537
2236
  },
1538
- "4-7": {
1539
- "value": "clamp(1.00rem, calc(0.40rem + 3.01vw), 3.50rem)",
1540
- "type": "spacing"
2237
+ "type": "typography"
2238
+ },
2239
+ "4": {
2240
+ "value": {
2241
+ "fontFamily": "SF Pro Text",
2242
+ "fontWeight": 500,
2243
+ "lineHeight": "160%",
2244
+ "fontSize": 14,
2245
+ "letterSpacing": "0%"
1541
2246
  },
1542
- "5-8": {
1543
- "value": "clamp(1.50rem, calc(0.66rem + 4.22vw), 5.00rem)",
1544
- "type": "spacing"
2247
+ "type": "typography"
2248
+ },
2249
+ "5": {
2250
+ "value": {
2251
+ "fontFamily": "SF Pro Text",
2252
+ "fontWeight": 500,
2253
+ "lineHeight": "150%",
2254
+ "fontSize": 12
2255
+ },
2256
+ "type": "typography"
2257
+ },
2258
+ "caps": {
2259
+ "value": {
2260
+ "fontFamily": "SF Pro Text",
2261
+ "fontWeight": 700,
2262
+ "lineHeight": "150%",
2263
+ "fontSize": 12,
2264
+ "letterSpacing": "5%",
2265
+ "textCase": "uppercase"
2266
+ },
2267
+ "type": "typography"
2268
+ }
2269
+ },
2270
+ "fontWeight": {
2271
+ "body": {
2272
+ "value": 400,
2273
+ "type": "fontWeights"
2274
+ },
2275
+ "heading": {
2276
+ "value": 500,
2277
+ "type": "fontWeights"
2278
+ },
2279
+ "regular": {
2280
+ "value": 400,
2281
+ "type": "fontWeights"
2282
+ },
2283
+ "medium": {
2284
+ "value": 500,
2285
+ "type": "fontWeights"
2286
+ },
2287
+ "bold": {
2288
+ "value": 700,
2289
+ "type": "fontWeights"
2290
+ },
2291
+ "light": {
2292
+ "value": 200,
2293
+ "type": "fontWeights"
2294
+ }
2295
+ },
2296
+ "body": {
2297
+ "small": {
2298
+ "value": {
2299
+ "fontFamily": "SF Pro Text",
2300
+ "fontWeight": 400,
2301
+ "lineHeight": "150%",
2302
+ "fontSize": 12
1545
2303
  },
1546
- "6-9": {
1547
- "value": "clamp(2.00rem, calc(0.80rem + 6.02vw), 7.00rem)",
1548
- "type": "spacing"
1549
- }
2304
+ "type": "typography"
2305
+ },
2306
+ "default": {
2307
+ "value": {
2308
+ "fontFamily": "SF Pro Text",
2309
+ "fontWeight": 400,
2310
+ "lineHeight": "150%",
2311
+ "fontSize": 14
2312
+ },
2313
+ "type": "typography"
2314
+ },
2315
+ "large": {
2316
+ "value": {
2317
+ "fontFamily": "SF Pro Text",
2318
+ "fontWeight": 400,
2319
+ "lineHeight": "150%",
2320
+ "fontSize": 20
2321
+ },
2322
+ "type": "typography"
2323
+ },
2324
+ "mono": {
2325
+ "value": {
2326
+ "fontFamily": "SF Mono",
2327
+ "fontWeight": 400,
2328
+ "lineHeight": "150%",
2329
+ "fontSize": 14
2330
+ },
2331
+ "type": "typography"
2332
+ },
2333
+ "mono-bold": {
2334
+ "value": {
2335
+ "fontFamily": "SF Mono",
2336
+ "lineHeight": "150%",
2337
+ "fontSize": 14,
2338
+ "fontWeight": 700
2339
+ },
2340
+ "type": "typography"
1550
2341
  }
1551
2342
  },
2343
+ "rem": {
2344
+ "value": 16,
2345
+ "type": "other",
2346
+ "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."
2347
+ },
1552
2348
  "shadow": {
1553
2349
  "1": {
1554
2350
  "value": [
@@ -1646,60 +2442,6 @@
1646
2442
  "type": "boxShadow"
1647
2443
  }
1648
2444
  },
1649
- "lineHeight": {
1650
- "1": {
1651
- "value": "110%",
1652
- "type": "lineHeights",
1653
- "description": "Use only for display."
1654
- },
1655
- "2": {
1656
- "value": "120%",
1657
- "type": "lineHeights",
1658
- "description": "Use for larger headings."
1659
- },
1660
- "3": {
1661
- "value": "130%",
1662
- "type": "lineHeights",
1663
- "description": "Use for small and medium sized headings."
1664
- },
1665
- "4": {
1666
- "value": "140%",
1667
- "type": "lineHeights",
1668
- "description": "Use for body-sized text"
1669
- },
1670
- "5": {
1671
- "value": "150%",
1672
- "type": "lineHeights",
1673
- "description": "Use for body-sized text in long-form reading applications."
1674
- },
1675
- "description": {
1676
- "value": "In production, all units are in %.",
1677
- "type": "other"
1678
- },
1679
- "responsive": {
1680
- "value": "clamp(1.1em, calc(1.25em + -0.4vw), 1.2em)",
1681
- "type": "lineHeights",
1682
- "description": "This is the responsive line height for the responsive type sizes."
1683
- }
1684
- },
1685
- "fontWeight": {
1686
- "regular": {
1687
- "value": 400,
1688
- "type": "fontWeights"
1689
- },
1690
- "medium": {
1691
- "value": 500,
1692
- "type": "fontWeights"
1693
- },
1694
- "bold": {
1695
- "value": 700,
1696
- "type": "fontWeights"
1697
- },
1698
- "light": {
1699
- "value": 200,
1700
- "type": "fontWeights"
1701
- }
1702
- },
1703
2445
  "letterSpacing": {
1704
2446
  "none": {
1705
2447
  "value": "0em",
@@ -1707,7 +2449,7 @@
1707
2449
  "description": "in Figma, letter spacing values need to be % but in production they need to be expressed in em to work with varable fonts"
1708
2450
  },
1709
2451
  "tight": {
1710
- "value": "-0.01em",
2452
+ "value": "-0.02em",
1711
2453
  "type": "letterSpacing"
1712
2454
  },
1713
2455
  "loose": {
@@ -2921,8 +3663,9 @@
2921
3663
  "description": "656–1047px"
2922
3664
  },
2923
3665
  "L": {
2924
- "value": "1048–1311px",
2925
- "type": "sizing"
3666
+ "value": 1048,
3667
+ "type": "sizing",
3668
+ "description": "1048-1311px"
2926
3669
  },
2927
3670
  "XL": {
2928
3671
  "value": 1312,