@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.
- package/.eslintignore +2 -1
- package/.prettierignore +1 -0
- package/.storybook/decorators/withBoundingBox.tsx +30 -4
- package/.storybook/decorators/withColorMode.tsx +5 -5
- package/CONTRIBUTING.md +1 -1
- package/build/system/Accordion/Accordion.js +6 -6
- package/build/system/Accordion/Accordion.stories.js +1 -1
- package/build/system/Accordion/Accordion.test.js +7 -5
- package/build/system/Avatar/Avatar.js +3 -2
- package/build/system/Badge/Badge.js +1 -0
- package/build/system/Button/Button.d.ts +11 -0
- package/build/system/Button/Button.js +12 -1
- package/build/system/Button/Button.stories.d.ts +2 -1
- package/build/system/Button/Button.stories.js +1 -2
- package/build/system/Button/Button.test.js +72 -45
- package/build/system/Button/ButtonSubmit.d.ts +17 -1
- package/build/system/Button/ButtonSubmit.js +58 -65
- package/build/system/Button/ButtonSubmit.stories.d.ts +17 -37
- package/build/system/Button/ButtonSubmit.stories.js +52 -0
- package/build/system/Button/ButtonSubmit.test.js +55 -35
- package/build/system/Button/index.d.ts +7 -3
- package/build/system/Button/index.js +8 -7
- package/build/system/Dropdown/DropdownContent.js +1 -1
- package/build/system/Dropdown/DropdownItem.js +1 -1
- package/build/system/Dropdown/DropdownLabel.js +1 -1
- package/build/system/Form/Checkbox.d.ts +9 -9
- package/build/system/Form/Checkbox.js +56 -61
- package/build/system/Form/Checkbox.stories.d.ts +6 -6
- package/build/system/Form/Checkbox.stories.js +71 -0
- package/build/system/Form/Input.d.ts +14 -1
- package/build/system/Form/Input.js +59 -72
- package/build/system/Form/Input.stories.d.ts +6 -4
- package/build/system/Form/Input.stories.js +53 -0
- package/build/system/Form/Input.styles.d.ts +23 -14
- package/build/system/Form/Input.styles.js +40 -28
- package/build/system/Form/InputWithCopyButton.stories.jsx +7 -0
- package/build/system/Form/Label.d.ts +19 -8
- package/build/system/Form/Label.js +39 -43
- package/build/system/Form/Label.stories.d.ts +7 -5
- package/build/system/Form/Label.stories.js +32 -0
- package/build/system/Form/Radio.js +4 -4
- package/build/system/Form/Radio.stories.jsx +1 -1
- package/build/system/Form/RadioBoxGroup.js +1 -1
- package/build/system/Form/RequiredLabel.d.ts +2 -1
- package/build/system/Form/RequiredLabel.js +16 -7
- package/build/system/Form/Toggle.js +2 -2
- package/build/system/Form/Validation.d.ts +8 -13
- package/build/system/Form/Validation.js +39 -35
- package/build/system/Heading/Heading.stories.js +3 -0
- package/build/system/Link/Link.js +1 -1
- package/build/system/NewDialog/DialogClose.js +2 -2
- package/build/system/NewDialog/DialogContent.js +3 -3
- package/build/system/NewDialog/DialogTitle.js +3 -1
- package/build/system/NewDialog/NewDialog.stories.d.ts +0 -1
- package/build/system/NewDialog/NewDialog.stories.jsx +0 -27
- package/build/system/NewForm/Fieldset.d.ts +12 -1
- package/build/system/NewForm/Fieldset.js +38 -40
- package/build/system/NewForm/Form.d.ts +8 -1
- package/build/system/NewForm/Form.js +24 -23
- package/build/system/NewForm/FormAutocomplete.css +0 -11
- package/build/system/NewForm/FormAutocomplete.js +8 -8
- package/build/system/NewForm/FormAutocomplete.stories.jsx +1 -3
- package/build/system/NewForm/FormAutocompleteMultiselect.js +10 -10
- package/build/system/NewForm/FormSelect.js +1 -1
- package/build/system/NewForm/FormSelectArrow.js +1 -1
- package/build/system/NewForm/FormSelectInline.js +1 -1
- package/build/system/NewForm/FormSelectLoading.js +1 -1
- package/build/system/NewForm/FormSelectSearch.js +2 -2
- package/build/system/NewForm/Legend.d.ts +12 -1
- package/build/system/NewForm/Legend.js +32 -34
- package/build/system/NewForm/index.d.ts +1 -1
- package/build/system/OptionRow/OptionRow.js +1 -1
- package/build/system/Progress/Progress.d.ts +9 -2
- package/build/system/Progress/Progress.js +75 -70
- package/build/system/Progress/Progress.stories.d.ts +9 -7
- package/build/system/Progress/Progress.stories.js +34 -0
- package/build/system/Progress/Progress.test.d.ts +1 -0
- package/build/system/Progress/Progress.test.js +65 -0
- package/build/system/Progress/index.d.ts +4 -2
- package/build/system/Progress/index.js +5 -5
- package/build/system/ScreenReaderText/ScreenReaderText.js +1 -2
- package/build/system/Tabs/TabsTrigger.js +0 -1
- package/build/system/Text/Text.js +1 -1
- package/build/system/Text/Text.stories.js +36 -0
- package/build/system/Tooltip/Tooltip.css +6 -2
- package/build/system/Tooltip/Tooltip.stories.js +2 -2
- package/build/system/Wizard/Wizard.d.ts +14 -1
- package/build/system/Wizard/Wizard.js +62 -93
- package/build/system/Wizard/Wizard.stories.d.ts +11 -8
- package/build/system/Wizard/Wizard.stories.js +167 -0
- package/build/system/Wizard/WizardStep.d.ts +24 -1
- package/build/system/Wizard/WizardStep.js +180 -190
- package/build/system/Wizard/index.d.ts +4 -2
- package/build/system/Wizard/index.js +6 -7
- package/build/system/index.d.ts +2 -2
- package/build/system/index.js +2 -1
- package/build/system/theme/generated/valet-theme-dark.json +1219 -476
- package/build/system/theme/generated/valet-theme-light.json +1217 -474
- package/build/system/theme/{getColor.d.ts → getPropValue.d.ts} +2 -1
- package/{src/system/theme/getColor.js → build/system/theme/getPropValue.js} +36 -4
- package/build/system/theme/index.d.ts +20 -65
- package/build/system/theme/index.js +27 -57
- package/package.json +4 -4
- package/src/system/Accordion/Accordion.stories.tsx +1 -1
- package/src/system/Accordion/Accordion.test.tsx +3 -0
- package/src/system/Accordion/Accordion.tsx +6 -6
- package/src/system/Avatar/Avatar.tsx +3 -3
- package/src/system/Badge/Badge.tsx +1 -1
- package/src/system/Button/Button.stories.tsx +2 -3
- package/src/system/Button/{Button.test.js → Button.test.tsx} +2 -2
- package/src/system/Button/Button.tsx +12 -0
- package/src/system/Button/ButtonSubmit.stories.tsx +31 -0
- package/src/system/Button/{ButtonSubmit.test.js → ButtonSubmit.test.tsx} +4 -4
- package/src/system/Button/{ButtonSubmit.js → ButtonSubmit.tsx} +21 -27
- package/src/system/Button/index.ts +8 -0
- package/src/system/Dropdown/DropdownContent.js +1 -1
- package/src/system/Dropdown/DropdownItem.js +1 -1
- package/src/system/Dropdown/DropdownLabel.js +1 -1
- package/src/system/Form/{Checkbox.stories.jsx → Checkbox.stories.tsx} +3 -2
- package/src/system/Form/{Checkbox.js → Checkbox.tsx} +6 -10
- package/src/system/Form/{Input.stories.jsx → Input.stories.tsx} +1 -0
- package/src/system/Form/{Input.styles.js → Input.styles.ts} +14 -5
- package/src/system/Form/{Input.js → Input.tsx} +10 -19
- package/src/system/Form/InputWithCopyButton.stories.jsx +7 -0
- package/src/system/Form/{Label.js → Label.tsx} +8 -13
- package/src/system/Form/Radio.js +4 -4
- package/src/system/Form/Radio.stories.jsx +1 -1
- package/src/system/Form/RadioBoxGroup.js +1 -1
- package/src/system/Form/{RequiredLabel.js → RequiredLabel.tsx} +1 -3
- package/src/system/Form/Toggle.js +2 -2
- package/src/system/Form/{Validation.js → Validation.tsx} +11 -12
- package/src/system/Heading/Heading.stories.tsx +1 -0
- package/src/system/Link/Link.tsx +1 -1
- package/src/system/NewDialog/DialogClose.js +2 -2
- package/src/system/NewDialog/DialogContent.js +3 -3
- package/src/system/NewDialog/DialogTitle.js +3 -1
- package/src/system/NewDialog/NewDialog.stories.jsx +0 -27
- package/src/system/NewForm/Fieldset.tsx +46 -0
- package/src/system/NewForm/Form.tsx +23 -0
- package/src/system/NewForm/FormAutocomplete.css +0 -11
- package/src/system/NewForm/FormAutocomplete.js +8 -8
- package/src/system/NewForm/FormAutocomplete.stories.jsx +1 -3
- package/src/system/NewForm/FormAutocompleteMultiselect.js +10 -10
- package/src/system/NewForm/FormSelect.js +1 -1
- package/src/system/NewForm/FormSelectArrow.js +1 -1
- package/src/system/NewForm/FormSelectInline.js +1 -1
- package/src/system/NewForm/FormSelectLoading.js +1 -1
- package/src/system/NewForm/FormSelectSearch.js +2 -2
- package/src/system/NewForm/Legend.tsx +40 -0
- package/src/system/OptionRow/OptionRow.js +1 -1
- package/src/system/Progress/Progress.test.tsx +33 -0
- package/src/system/Progress/{Progress.js → Progress.tsx} +16 -19
- package/src/system/Progress/index.ts +4 -0
- package/src/system/ScreenReaderText/ScreenReaderText.tsx +0 -2
- package/src/system/Tabs/TabsTrigger.js +0 -1
- package/src/system/Text/Text.stories.tsx +7 -0
- package/src/system/Text/Text.tsx +1 -1
- package/src/system/Tooltip/Tooltip.css +6 -2
- package/src/system/Tooltip/Tooltip.stories.tsx +4 -4
- package/{build/system/Wizard/Wizard.stories.jsx → src/system/Wizard/Wizard.stories.tsx} +18 -23
- package/src/system/Wizard/Wizard.tsx +62 -0
- package/src/system/Wizard/{WizardStep.js → WizardStep.tsx} +38 -41
- package/src/system/Wizard/index.ts +7 -0
- package/src/system/index.js +2 -1
- package/src/system/theme/generated/valet-theme-dark.json +1219 -476
- package/src/system/theme/generated/valet-theme-light.json +1217 -474
- package/{build/system/theme/getColor.js → src/system/theme/getPropValue.js} +36 -4
- package/src/system/theme/index.js +27 -57
- package/tokens/utilities/colors/color output/blue.json +305 -0
- package/tokens/utilities/colors/color output/gold.json +305 -0
- package/tokens/utilities/colors/color output/gray.json +305 -0
- package/tokens/utilities/colors/color output/green.json +305 -0
- package/tokens/utilities/colors/color output/orange.json +305 -0
- package/tokens/utilities/colors/color output/pink.json +305 -0
- package/tokens/utilities/colors/color output/red.json +305 -0
- package/tokens/utilities/colors/color output/salmon.json +305 -0
- package/tokens/utilities/colors/color output/yellow.json +305 -0
- package/tokens/utilities/colors/colorOutput.json +4062 -0
- package/tokens/utilities/colors/color_3d_plot.js +43 -0
- package/tokens/utilities/colors/color_graph.js +31 -0
- package/tokens/utilities/colors/colors.json +1981 -0
- package/tokens/utilities/colors/index.js +118 -0
- package/tokens/utilities/colors/package-lock.json +6749 -0
- package/tokens/utilities/colors/package.json +21 -0
- package/tokens/utilities/figma-type-calculator/responsive-type.js +98 -0
- package/tokens/valet-core/$metadata.json +19 -15
- package/tokens/valet-core/$themes.json +3323 -419
- package/tokens/valet-core/{figma-parsely-expressive-type.json → figma-parsely-web-type.json} +128 -128
- package/tokens/valet-core/{figma-valet-expressive-type.json → figma-valet-web-type.json} +126 -126
- package/tokens/valet-core/figma-wpvip-services-web-type.json +1267 -0
- package/tokens/valet-core/{figma-wpvip-expressive-type.json → figma-wpvip-web-type.json} +162 -162
- package/tokens/valet-core/{parsely-expressive-color.json → parsely-web-color.json} +1 -1
- package/tokens/valet-core/{wpvip-expressive-core.json → parsely-web-core.json} +73 -23
- package/tokens/valet-core/{parsely-expressive-type.json → parsely-web-type.json} +21 -9
- package/tokens/valet-core/valet-core.json +331 -232
- package/tokens/valet-core/{valet-expressive-color.json → valet-web-color.json} +1 -1
- package/tokens/valet-core/{parsely-expressive-core.json → valet-web-core.json} +72 -22
- package/tokens/valet-core/{wpvip-productive-color.json → wpvip-product-core.json} +663 -7
- package/tokens/valet-core/{wpvip-productive-color-dark.json → wpvip-product-dark.json} +332 -10
- package/tokens/valet-core/{wpvip-expressive-color.json → wpvip-services-web-color.json} +1 -1
- package/tokens/valet-core/{valet-expressive-core.json → wpvip-services-web-core.json} +72 -22
- package/tokens/valet-core/wpvip-services-web-type.json +412 -0
- package/tokens/valet-core/{wpvip-expressive-color-dark.json → wpvip-web-color-dark.json} +1 -1
- package/tokens/valet-core/wpvip-web-color.json +730 -0
- package/tokens/valet-core/{wpvip-expressive-type.json → wpvip-web-type.json} +24 -12
- package/tokens/valet-core/wpvip-web.json +1310 -0
- package/tsconfig.json +2 -1
- package/build/system/Button/ButtonSubmit.stories.jsx +0 -40
- package/build/system/Button/variants.d.ts +0 -2
- package/build/system/Button/variants.js +0 -1
- package/build/system/Form/Checkbox.stories.jsx +0 -54
- package/build/system/Form/Input.stories.jsx +0 -38
- package/build/system/Wizard/WizardStepHorizontal.d.ts +0 -2
- package/build/system/Wizard/WizardStepHorizontal.js +0 -55
- package/build/system/theme/textStyles.d.ts +0 -71
- package/build/system/theme/textStyles.js +0 -46
- package/src/system/Button/ButtonSubmit.stories.jsx +0 -40
- package/src/system/Button/index.js +0 -8
- package/src/system/Button/variants.js +0 -1
- package/src/system/Form/Label.stories.jsx +0 -36
- package/src/system/NewForm/Fieldset.js +0 -47
- package/src/system/NewForm/Form.js +0 -26
- package/src/system/NewForm/Legend.js +0 -41
- package/src/system/Progress/Progress.stories.jsx +0 -25
- package/src/system/Progress/index.js +0 -6
- package/src/system/Wizard/Wizard.js +0 -103
- package/src/system/Wizard/Wizard.stories.jsx +0 -145
- package/src/system/Wizard/WizardStepHorizontal.js +0 -55
- package/src/system/Wizard/index.js +0 -8
- package/src/system/theme/textStyles.js +0 -46
- /package/{build/system/Form/Label.stories.jsx → src/system/Form/Label.stories.tsx} +0 -0
- /package/{build/system/Progress/Progress.stories.jsx → src/system/Progress/Progress.stories.tsx} +0 -0
package/tokens/valet-core/{figma-parsely-expressive-type.json → figma-parsely-web-type.json}
RENAMED
|
@@ -81,7 +81,7 @@
|
|
|
81
81
|
"fontFamily": "{fontFamily.sans}",
|
|
82
82
|
"fontWeight": "{fontWeight.bold}",
|
|
83
83
|
"lineHeight": "{lineHeight.3}",
|
|
84
|
-
"fontSize": "{fontSize.figma.4.
|
|
84
|
+
"fontSize": "{fontSize.figma.4.S}",
|
|
85
85
|
"letterSpacing": "{letterSpacing.tight}"
|
|
86
86
|
},
|
|
87
87
|
"type": "typography"
|
|
@@ -91,7 +91,7 @@
|
|
|
91
91
|
"fontFamily": "{fontFamily.sans}",
|
|
92
92
|
"fontWeight": "{fontWeight.bold}",
|
|
93
93
|
"lineHeight": "{lineHeight.3}",
|
|
94
|
-
"fontSize": "{fontSize.figma.4.
|
|
94
|
+
"fontSize": "{fontSize.figma.4.M}",
|
|
95
95
|
"letterSpacing": "{letterSpacing.tight}"
|
|
96
96
|
},
|
|
97
97
|
"type": "typography"
|
|
@@ -101,7 +101,7 @@
|
|
|
101
101
|
"fontFamily": "{fontFamily.sans}",
|
|
102
102
|
"fontWeight": "{fontWeight.bold}",
|
|
103
103
|
"lineHeight": "{lineHeight.3}",
|
|
104
|
-
"fontSize": "{fontSize.figma.4.
|
|
104
|
+
"fontSize": "{fontSize.figma.4.L}",
|
|
105
105
|
"letterSpacing": "{letterSpacing.tight}"
|
|
106
106
|
},
|
|
107
107
|
"type": "typography"
|
|
@@ -111,7 +111,7 @@
|
|
|
111
111
|
"fontFamily": "{fontFamily.sans}",
|
|
112
112
|
"fontWeight": "{fontWeight.bold}",
|
|
113
113
|
"lineHeight": "{lineHeight.3}",
|
|
114
|
-
"fontSize": "{fontSize.figma.4.
|
|
114
|
+
"fontSize": "{fontSize.figma.4.XL}",
|
|
115
115
|
"letterSpacing": "{letterSpacing.tight}"
|
|
116
116
|
},
|
|
117
117
|
"type": "typography"
|
|
@@ -121,7 +121,7 @@
|
|
|
121
121
|
"fontFamily": "{fontFamily.sans}",
|
|
122
122
|
"fontWeight": "{fontWeight.bold}",
|
|
123
123
|
"lineHeight": "{lineHeight.3}",
|
|
124
|
-
"fontSize": "{fontSize.figma.4.
|
|
124
|
+
"fontSize": "{fontSize.figma.4.MAX}",
|
|
125
125
|
"letterSpacing": "{letterSpacing.tight}"
|
|
126
126
|
},
|
|
127
127
|
"type": "typography"
|
|
@@ -133,7 +133,7 @@
|
|
|
133
133
|
"fontFamily": "{fontFamily.sans}",
|
|
134
134
|
"fontWeight": "{fontWeight.bold}",
|
|
135
135
|
"lineHeight": "{lineHeight.2}",
|
|
136
|
-
"fontSize": "{fontSize.figma.8.
|
|
136
|
+
"fontSize": "{fontSize.figma.8.S}",
|
|
137
137
|
"letterSpacing": "{letterSpacing.tight}"
|
|
138
138
|
},
|
|
139
139
|
"type": "typography"
|
|
@@ -143,7 +143,7 @@
|
|
|
143
143
|
"fontFamily": "{fontFamily.sans}",
|
|
144
144
|
"fontWeight": "{fontWeight.bold}",
|
|
145
145
|
"lineHeight": "{lineHeight.2}",
|
|
146
|
-
"fontSize": "{fontSize.figma.8.
|
|
146
|
+
"fontSize": "{fontSize.figma.8.M}",
|
|
147
147
|
"letterSpacing": "{letterSpacing.tight}"
|
|
148
148
|
},
|
|
149
149
|
"type": "typography"
|
|
@@ -153,7 +153,7 @@
|
|
|
153
153
|
"fontFamily": "{fontFamily.sans}",
|
|
154
154
|
"fontWeight": "{fontWeight.bold}",
|
|
155
155
|
"lineHeight": "{lineHeight.2}",
|
|
156
|
-
"fontSize": "{fontSize.figma.8.
|
|
156
|
+
"fontSize": "{fontSize.figma.8.L}",
|
|
157
157
|
"letterSpacing": "{letterSpacing.tight}"
|
|
158
158
|
},
|
|
159
159
|
"type": "typography"
|
|
@@ -163,7 +163,7 @@
|
|
|
163
163
|
"fontFamily": "{fontFamily.sans}",
|
|
164
164
|
"fontWeight": "{fontWeight.bold}",
|
|
165
165
|
"lineHeight": "{lineHeight.2}",
|
|
166
|
-
"fontSize": "{fontSize.figma.8.
|
|
166
|
+
"fontSize": "{fontSize.figma.8.XL}",
|
|
167
167
|
"letterSpacing": "{letterSpacing.tight}"
|
|
168
168
|
},
|
|
169
169
|
"type": "typography"
|
|
@@ -173,7 +173,7 @@
|
|
|
173
173
|
"fontFamily": "{fontFamily.sans}",
|
|
174
174
|
"fontWeight": "{fontWeight.bold}",
|
|
175
175
|
"lineHeight": "{lineHeight.2}",
|
|
176
|
-
"fontSize": "{fontSize.figma.8.
|
|
176
|
+
"fontSize": "{fontSize.figma.8.MAX}",
|
|
177
177
|
"letterSpacing": "{letterSpacing.tight}"
|
|
178
178
|
},
|
|
179
179
|
"type": "typography"
|
|
@@ -185,7 +185,7 @@
|
|
|
185
185
|
"fontFamily": "{fontFamily.sans}",
|
|
186
186
|
"fontWeight": "{fontWeight.bold}",
|
|
187
187
|
"lineHeight": "{lineHeight.3}",
|
|
188
|
-
"fontSize": "{fontSize.figma.9.
|
|
188
|
+
"fontSize": "{fontSize.figma.9.S}",
|
|
189
189
|
"letterSpacing": "{letterSpacing.tight}"
|
|
190
190
|
},
|
|
191
191
|
"type": "typography"
|
|
@@ -195,7 +195,7 @@
|
|
|
195
195
|
"fontFamily": "{fontFamily.sans}",
|
|
196
196
|
"fontWeight": "{fontWeight.bold}",
|
|
197
197
|
"lineHeight": "{lineHeight.3}",
|
|
198
|
-
"fontSize": "{fontSize.figma.9.
|
|
198
|
+
"fontSize": "{fontSize.figma.9.M}",
|
|
199
199
|
"letterSpacing": "{letterSpacing.tight}"
|
|
200
200
|
},
|
|
201
201
|
"type": "typography"
|
|
@@ -205,7 +205,7 @@
|
|
|
205
205
|
"fontFamily": "{fontFamily.sans}",
|
|
206
206
|
"fontWeight": "{fontWeight.bold}",
|
|
207
207
|
"lineHeight": "{lineHeight.3}",
|
|
208
|
-
"fontSize": "{fontSize.figma.9.
|
|
208
|
+
"fontSize": "{fontSize.figma.9.L}",
|
|
209
209
|
"letterSpacing": "{letterSpacing.tight}"
|
|
210
210
|
},
|
|
211
211
|
"type": "typography"
|
|
@@ -215,7 +215,7 @@
|
|
|
215
215
|
"fontFamily": "{fontFamily.sans}",
|
|
216
216
|
"fontWeight": "{fontWeight.bold}",
|
|
217
217
|
"lineHeight": "{lineHeight.3}",
|
|
218
|
-
"fontSize": "{fontSize.figma.9.
|
|
218
|
+
"fontSize": "{fontSize.figma.9.XL}",
|
|
219
219
|
"letterSpacing": "{letterSpacing.tight}"
|
|
220
220
|
},
|
|
221
221
|
"type": "typography"
|
|
@@ -225,7 +225,7 @@
|
|
|
225
225
|
"fontFamily": "{fontFamily.sans}",
|
|
226
226
|
"fontWeight": "{fontWeight.bold}",
|
|
227
227
|
"lineHeight": "{lineHeight.3}",
|
|
228
|
-
"fontSize": "{fontSize.figma.9.
|
|
228
|
+
"fontSize": "{fontSize.figma.9.MAX}",
|
|
229
229
|
"letterSpacing": "{letterSpacing.tight}"
|
|
230
230
|
},
|
|
231
231
|
"type": "typography"
|
|
@@ -237,7 +237,7 @@
|
|
|
237
237
|
"fontFamily": "{fontFamily.sans}",
|
|
238
238
|
"fontWeight": "{fontWeight.bold}",
|
|
239
239
|
"lineHeight": "{lineHeight.2}",
|
|
240
|
-
"fontSize": "{fontSize.figma.10.
|
|
240
|
+
"fontSize": "{fontSize.figma.10.S}",
|
|
241
241
|
"letterSpacing": "{letterSpacing.tight}"
|
|
242
242
|
},
|
|
243
243
|
"type": "typography"
|
|
@@ -247,7 +247,7 @@
|
|
|
247
247
|
"fontFamily": "{fontFamily.sans}",
|
|
248
248
|
"fontWeight": "{fontWeight.bold}",
|
|
249
249
|
"lineHeight": "{lineHeight.2}",
|
|
250
|
-
"fontSize": "{fontSize.figma.10.
|
|
250
|
+
"fontSize": "{fontSize.figma.10.M}",
|
|
251
251
|
"letterSpacing": "{letterSpacing.tight}"
|
|
252
252
|
},
|
|
253
253
|
"type": "typography"
|
|
@@ -257,7 +257,7 @@
|
|
|
257
257
|
"fontFamily": "{fontFamily.sans}",
|
|
258
258
|
"fontWeight": "{fontWeight.bold}",
|
|
259
259
|
"lineHeight": "{lineHeight.2}",
|
|
260
|
-
"fontSize": "{fontSize.figma.10.
|
|
260
|
+
"fontSize": "{fontSize.figma.10.L}",
|
|
261
261
|
"letterSpacing": "{letterSpacing.tight}"
|
|
262
262
|
},
|
|
263
263
|
"type": "typography"
|
|
@@ -267,7 +267,7 @@
|
|
|
267
267
|
"fontFamily": "{fontFamily.sans}",
|
|
268
268
|
"fontWeight": "{fontWeight.bold}",
|
|
269
269
|
"lineHeight": "{lineHeight.2}",
|
|
270
|
-
"fontSize": "{fontSize.figma.10.
|
|
270
|
+
"fontSize": "{fontSize.figma.10.XL}",
|
|
271
271
|
"letterSpacing": "{letterSpacing.tight}"
|
|
272
272
|
},
|
|
273
273
|
"type": "typography"
|
|
@@ -277,7 +277,7 @@
|
|
|
277
277
|
"fontFamily": "{fontFamily.sans}",
|
|
278
278
|
"fontWeight": "{fontWeight.bold}",
|
|
279
279
|
"lineHeight": "{lineHeight.2}",
|
|
280
|
-
"fontSize": "{fontSize.figma.10.
|
|
280
|
+
"fontSize": "{fontSize.figma.10.MAX}",
|
|
281
281
|
"letterSpacing": "{letterSpacing.tight}"
|
|
282
282
|
},
|
|
283
283
|
"type": "typography"
|
|
@@ -289,7 +289,7 @@
|
|
|
289
289
|
"fontFamily": "{fontFamily.sans}",
|
|
290
290
|
"fontWeight": "{fontWeight.bold}",
|
|
291
291
|
"lineHeight": "{lineHeight.1}",
|
|
292
|
-
"fontSize": "{fontSize.figma.11.
|
|
292
|
+
"fontSize": "{fontSize.figma.11.S}",
|
|
293
293
|
"letterSpacing": "{letterSpacing.tight}"
|
|
294
294
|
},
|
|
295
295
|
"type": "typography"
|
|
@@ -299,7 +299,7 @@
|
|
|
299
299
|
"fontFamily": "{fontFamily.sans}",
|
|
300
300
|
"fontWeight": "{fontWeight.bold}",
|
|
301
301
|
"lineHeight": "{lineHeight.1}",
|
|
302
|
-
"fontSize": "{fontSize.figma.11.
|
|
302
|
+
"fontSize": "{fontSize.figma.11.M}",
|
|
303
303
|
"letterSpacing": "{letterSpacing.tight}"
|
|
304
304
|
},
|
|
305
305
|
"type": "typography"
|
|
@@ -309,7 +309,7 @@
|
|
|
309
309
|
"fontFamily": "{fontFamily.sans}",
|
|
310
310
|
"fontWeight": "{fontWeight.bold}",
|
|
311
311
|
"lineHeight": "{lineHeight.1}",
|
|
312
|
-
"fontSize": "{fontSize.figma.11.
|
|
312
|
+
"fontSize": "{fontSize.figma.11.L}",
|
|
313
313
|
"letterSpacing": "{letterSpacing.tight}"
|
|
314
314
|
},
|
|
315
315
|
"type": "typography"
|
|
@@ -319,7 +319,7 @@
|
|
|
319
319
|
"fontFamily": "{fontFamily.sans}",
|
|
320
320
|
"fontWeight": "{fontWeight.bold}",
|
|
321
321
|
"lineHeight": "{lineHeight.1}",
|
|
322
|
-
"fontSize": "{fontSize.figma.11.
|
|
322
|
+
"fontSize": "{fontSize.figma.11.XL}",
|
|
323
323
|
"letterSpacing": "{letterSpacing.tight}"
|
|
324
324
|
},
|
|
325
325
|
"type": "typography"
|
|
@@ -329,7 +329,7 @@
|
|
|
329
329
|
"fontFamily": "{fontFamily.sans}",
|
|
330
330
|
"fontWeight": "{fontWeight.bold}",
|
|
331
331
|
"lineHeight": "{lineHeight.1}",
|
|
332
|
-
"fontSize": "{fontSize.figma.11.
|
|
332
|
+
"fontSize": "{fontSize.figma.11.MAX}",
|
|
333
333
|
"letterSpacing": "{letterSpacing.tight}"
|
|
334
334
|
},
|
|
335
335
|
"type": "typography"
|
|
@@ -341,7 +341,7 @@
|
|
|
341
341
|
"fontFamily": "{fontFamily.sans}",
|
|
342
342
|
"fontWeight": "{fontWeight.bold}",
|
|
343
343
|
"lineHeight": "{lineHeight.1}",
|
|
344
|
-
"fontSize": "{fontSize.figma.12.
|
|
344
|
+
"fontSize": "{fontSize.figma.12.S}",
|
|
345
345
|
"letterSpacing": "{letterSpacing.tight}"
|
|
346
346
|
},
|
|
347
347
|
"type": "typography"
|
|
@@ -351,7 +351,7 @@
|
|
|
351
351
|
"fontFamily": "{fontFamily.sans}",
|
|
352
352
|
"fontWeight": "{fontWeight.bold}",
|
|
353
353
|
"lineHeight": "{lineHeight.1}",
|
|
354
|
-
"fontSize": "{fontSize.figma.12.
|
|
354
|
+
"fontSize": "{fontSize.figma.12.M}",
|
|
355
355
|
"letterSpacing": "{letterSpacing.tight}"
|
|
356
356
|
},
|
|
357
357
|
"type": "typography"
|
|
@@ -361,7 +361,7 @@
|
|
|
361
361
|
"fontFamily": "{fontFamily.sans}",
|
|
362
362
|
"fontWeight": "{fontWeight.bold}",
|
|
363
363
|
"lineHeight": "{lineHeight.1}",
|
|
364
|
-
"fontSize": "{fontSize.figma.12.
|
|
364
|
+
"fontSize": "{fontSize.figma.12.L}",
|
|
365
365
|
"letterSpacing": "{letterSpacing.tight}"
|
|
366
366
|
},
|
|
367
367
|
"type": "typography"
|
|
@@ -371,7 +371,7 @@
|
|
|
371
371
|
"fontFamily": "{fontFamily.sans}",
|
|
372
372
|
"fontWeight": "{fontWeight.bold}",
|
|
373
373
|
"lineHeight": "{lineHeight.1}",
|
|
374
|
-
"fontSize": "{fontSize.figma.12.
|
|
374
|
+
"fontSize": "{fontSize.figma.12.XL}",
|
|
375
375
|
"letterSpacing": "{letterSpacing.tight}"
|
|
376
376
|
},
|
|
377
377
|
"type": "typography"
|
|
@@ -381,7 +381,7 @@
|
|
|
381
381
|
"fontFamily": "{fontFamily.sans}",
|
|
382
382
|
"fontWeight": "{fontWeight.bold}",
|
|
383
383
|
"lineHeight": "{lineHeight.1}",
|
|
384
|
-
"fontSize": "{fontSize.figma.12.
|
|
384
|
+
"fontSize": "{fontSize.figma.12.MAX}",
|
|
385
385
|
"letterSpacing": "{letterSpacing.tight}"
|
|
386
386
|
},
|
|
387
387
|
"type": "typography"
|
|
@@ -393,7 +393,7 @@
|
|
|
393
393
|
"fontFamily": "{fontFamily.sans}",
|
|
394
394
|
"fontWeight": "{fontWeight.bold}",
|
|
395
395
|
"lineHeight": "{lineHeight.1}",
|
|
396
|
-
"fontSize": "{fontSize.figma.13.
|
|
396
|
+
"fontSize": "{fontSize.figma.13.S}",
|
|
397
397
|
"letterSpacing": "{letterSpacing.tight}"
|
|
398
398
|
},
|
|
399
399
|
"type": "typography"
|
|
@@ -403,7 +403,7 @@
|
|
|
403
403
|
"fontFamily": "{fontFamily.sans}",
|
|
404
404
|
"fontWeight": "{fontWeight.bold}",
|
|
405
405
|
"lineHeight": "{lineHeight.1}",
|
|
406
|
-
"fontSize": "{fontSize.figma.13.
|
|
406
|
+
"fontSize": "{fontSize.figma.13.M}",
|
|
407
407
|
"letterSpacing": "{letterSpacing.tight}"
|
|
408
408
|
},
|
|
409
409
|
"type": "typography"
|
|
@@ -413,7 +413,7 @@
|
|
|
413
413
|
"fontFamily": "{fontFamily.sans}",
|
|
414
414
|
"fontWeight": "{fontWeight.bold}",
|
|
415
415
|
"lineHeight": "{lineHeight.1}",
|
|
416
|
-
"fontSize": "{fontSize.figma.13.
|
|
416
|
+
"fontSize": "{fontSize.figma.13.L}",
|
|
417
417
|
"letterSpacing": "{letterSpacing.tight}"
|
|
418
418
|
},
|
|
419
419
|
"type": "typography"
|
|
@@ -423,7 +423,7 @@
|
|
|
423
423
|
"fontFamily": "{fontFamily.sans}",
|
|
424
424
|
"fontWeight": "{fontWeight.bold}",
|
|
425
425
|
"lineHeight": "{lineHeight.1}",
|
|
426
|
-
"fontSize": "{fontSize.figma.13.
|
|
426
|
+
"fontSize": "{fontSize.figma.13.XL}",
|
|
427
427
|
"letterSpacing": "{letterSpacing.tight}"
|
|
428
428
|
},
|
|
429
429
|
"type": "typography"
|
|
@@ -433,7 +433,7 @@
|
|
|
433
433
|
"fontFamily": "{fontFamily.sans}",
|
|
434
434
|
"fontWeight": "{fontWeight.bold}",
|
|
435
435
|
"lineHeight": "{lineHeight.1}",
|
|
436
|
-
"fontSize": "{fontSize.figma.13.
|
|
436
|
+
"fontSize": "{fontSize.figma.13.MAX}",
|
|
437
437
|
"letterSpacing": "{letterSpacing.tight}"
|
|
438
438
|
},
|
|
439
439
|
"type": "typography"
|
|
@@ -445,7 +445,7 @@
|
|
|
445
445
|
"fontFamily": "{fontFamily.sans}",
|
|
446
446
|
"fontWeight": "{fontWeight.light}",
|
|
447
447
|
"lineHeight": "{lineHeight.3}",
|
|
448
|
-
"fontSize": "{fontSize.figma.4.
|
|
448
|
+
"fontSize": "{fontSize.figma.4.S}",
|
|
449
449
|
"letterSpacing": "{letterSpacing.tight}"
|
|
450
450
|
},
|
|
451
451
|
"type": "typography"
|
|
@@ -455,7 +455,7 @@
|
|
|
455
455
|
"fontFamily": "{fontFamily.sans}",
|
|
456
456
|
"fontWeight": "{fontWeight.light}",
|
|
457
457
|
"lineHeight": "{lineHeight.3}",
|
|
458
|
-
"fontSize": "{fontSize.figma.4.
|
|
458
|
+
"fontSize": "{fontSize.figma.4.M}",
|
|
459
459
|
"letterSpacing": "{letterSpacing.tight}"
|
|
460
460
|
},
|
|
461
461
|
"type": "typography"
|
|
@@ -465,7 +465,7 @@
|
|
|
465
465
|
"fontFamily": "{fontFamily.sans}",
|
|
466
466
|
"fontWeight": "{fontWeight.light}",
|
|
467
467
|
"lineHeight": "{lineHeight.3}",
|
|
468
|
-
"fontSize": "{fontSize.figma.4.
|
|
468
|
+
"fontSize": "{fontSize.figma.4.L}",
|
|
469
469
|
"letterSpacing": "{letterSpacing.tight}"
|
|
470
470
|
},
|
|
471
471
|
"type": "typography"
|
|
@@ -475,7 +475,7 @@
|
|
|
475
475
|
"fontFamily": "{fontFamily.sans}",
|
|
476
476
|
"fontWeight": "{fontWeight.light}",
|
|
477
477
|
"lineHeight": "{lineHeight.3}",
|
|
478
|
-
"fontSize": "{fontSize.figma.4.
|
|
478
|
+
"fontSize": "{fontSize.figma.4.XL}",
|
|
479
479
|
"letterSpacing": "{letterSpacing.tight}"
|
|
480
480
|
},
|
|
481
481
|
"type": "typography"
|
|
@@ -485,7 +485,7 @@
|
|
|
485
485
|
"fontFamily": "{fontFamily.sans}",
|
|
486
486
|
"fontWeight": "{fontWeight.light}",
|
|
487
487
|
"lineHeight": "{lineHeight.3}",
|
|
488
|
-
"fontSize": "{fontSize.figma.4.
|
|
488
|
+
"fontSize": "{fontSize.figma.4.MAX}",
|
|
489
489
|
"letterSpacing": "{letterSpacing.tight}"
|
|
490
490
|
},
|
|
491
491
|
"type": "typography"
|
|
@@ -497,7 +497,7 @@
|
|
|
497
497
|
"fontFamily": "{fontFamily.sans}",
|
|
498
498
|
"fontWeight": "{fontWeight.light}",
|
|
499
499
|
"lineHeight": "{lineHeight.2}",
|
|
500
|
-
"fontSize": "{fontSize.figma.8.
|
|
500
|
+
"fontSize": "{fontSize.figma.8.S}",
|
|
501
501
|
"letterSpacing": "{letterSpacing.tight}"
|
|
502
502
|
},
|
|
503
503
|
"type": "typography"
|
|
@@ -507,7 +507,7 @@
|
|
|
507
507
|
"fontFamily": "{fontFamily.sans}",
|
|
508
508
|
"fontWeight": "{fontWeight.light}",
|
|
509
509
|
"lineHeight": "{lineHeight.2}",
|
|
510
|
-
"fontSize": "{fontSize.figma.8.
|
|
510
|
+
"fontSize": "{fontSize.figma.8.M}",
|
|
511
511
|
"letterSpacing": "{letterSpacing.tight}"
|
|
512
512
|
},
|
|
513
513
|
"type": "typography"
|
|
@@ -517,7 +517,7 @@
|
|
|
517
517
|
"fontFamily": "{fontFamily.sans}",
|
|
518
518
|
"fontWeight": "{fontWeight.light}",
|
|
519
519
|
"lineHeight": "{lineHeight.2}",
|
|
520
|
-
"fontSize": "{fontSize.figma.8.
|
|
520
|
+
"fontSize": "{fontSize.figma.8.L}",
|
|
521
521
|
"letterSpacing": "{letterSpacing.tight}"
|
|
522
522
|
},
|
|
523
523
|
"type": "typography"
|
|
@@ -527,7 +527,7 @@
|
|
|
527
527
|
"fontFamily": "{fontFamily.sans}",
|
|
528
528
|
"fontWeight": "{fontWeight.light}",
|
|
529
529
|
"lineHeight": "{lineHeight.2}",
|
|
530
|
-
"fontSize": "{fontSize.figma.8.
|
|
530
|
+
"fontSize": "{fontSize.figma.8.XL}",
|
|
531
531
|
"letterSpacing": "{letterSpacing.tight}"
|
|
532
532
|
},
|
|
533
533
|
"type": "typography"
|
|
@@ -537,7 +537,7 @@
|
|
|
537
537
|
"fontFamily": "{fontFamily.sans}",
|
|
538
538
|
"fontWeight": "{fontWeight.light}",
|
|
539
539
|
"lineHeight": "{lineHeight.2}",
|
|
540
|
-
"fontSize": "{fontSize.figma.8.
|
|
540
|
+
"fontSize": "{fontSize.figma.8.MAX}",
|
|
541
541
|
"letterSpacing": "{letterSpacing.tight}"
|
|
542
542
|
},
|
|
543
543
|
"type": "typography"
|
|
@@ -549,7 +549,7 @@
|
|
|
549
549
|
"fontFamily": "{fontFamily.sans}",
|
|
550
550
|
"fontWeight": "{fontWeight.light}",
|
|
551
551
|
"lineHeight": "{lineHeight.3}",
|
|
552
|
-
"fontSize": "{fontSize.figma.9.
|
|
552
|
+
"fontSize": "{fontSize.figma.9.S}",
|
|
553
553
|
"letterSpacing": "{letterSpacing.tight}"
|
|
554
554
|
},
|
|
555
555
|
"type": "typography"
|
|
@@ -559,7 +559,7 @@
|
|
|
559
559
|
"fontFamily": "{fontFamily.sans}",
|
|
560
560
|
"fontWeight": "{fontWeight.light}",
|
|
561
561
|
"lineHeight": "{lineHeight.3}",
|
|
562
|
-
"fontSize": "{fontSize.figma.9.
|
|
562
|
+
"fontSize": "{fontSize.figma.9.M}",
|
|
563
563
|
"letterSpacing": "{letterSpacing.tight}"
|
|
564
564
|
},
|
|
565
565
|
"type": "typography"
|
|
@@ -569,7 +569,7 @@
|
|
|
569
569
|
"fontFamily": "{fontFamily.sans}",
|
|
570
570
|
"fontWeight": "{fontWeight.light}",
|
|
571
571
|
"lineHeight": "{lineHeight.3}",
|
|
572
|
-
"fontSize": "{fontSize.figma.9.
|
|
572
|
+
"fontSize": "{fontSize.figma.9.L}",
|
|
573
573
|
"letterSpacing": "{letterSpacing.tight}"
|
|
574
574
|
},
|
|
575
575
|
"type": "typography"
|
|
@@ -579,7 +579,7 @@
|
|
|
579
579
|
"fontFamily": "{fontFamily.sans}",
|
|
580
580
|
"fontWeight": "{fontWeight.light}",
|
|
581
581
|
"lineHeight": "{lineHeight.3}",
|
|
582
|
-
"fontSize": "{fontSize.figma.9.
|
|
582
|
+
"fontSize": "{fontSize.figma.9.XL}",
|
|
583
583
|
"letterSpacing": "{letterSpacing.tight}"
|
|
584
584
|
},
|
|
585
585
|
"type": "typography"
|
|
@@ -589,7 +589,7 @@
|
|
|
589
589
|
"fontFamily": "{fontFamily.sans}",
|
|
590
590
|
"fontWeight": "{fontWeight.light}",
|
|
591
591
|
"lineHeight": "{lineHeight.3}",
|
|
592
|
-
"fontSize": "{fontSize.figma.9.
|
|
592
|
+
"fontSize": "{fontSize.figma.9.MAX}",
|
|
593
593
|
"letterSpacing": "{letterSpacing.tight}"
|
|
594
594
|
},
|
|
595
595
|
"type": "typography"
|
|
@@ -601,7 +601,7 @@
|
|
|
601
601
|
"fontFamily": "{fontFamily.sans}",
|
|
602
602
|
"fontWeight": "{fontWeight.light}",
|
|
603
603
|
"lineHeight": "{lineHeight.2}",
|
|
604
|
-
"fontSize": "{fontSize.figma.10.
|
|
604
|
+
"fontSize": "{fontSize.figma.10.S}",
|
|
605
605
|
"letterSpacing": "{letterSpacing.tight}"
|
|
606
606
|
},
|
|
607
607
|
"type": "typography"
|
|
@@ -611,7 +611,7 @@
|
|
|
611
611
|
"fontFamily": "{fontFamily.sans}",
|
|
612
612
|
"fontWeight": "{fontWeight.light}",
|
|
613
613
|
"lineHeight": "{lineHeight.2}",
|
|
614
|
-
"fontSize": "{fontSize.figma.10.
|
|
614
|
+
"fontSize": "{fontSize.figma.10.M}",
|
|
615
615
|
"letterSpacing": "{letterSpacing.tight}"
|
|
616
616
|
},
|
|
617
617
|
"type": "typography"
|
|
@@ -621,7 +621,7 @@
|
|
|
621
621
|
"fontFamily": "{fontFamily.sans}",
|
|
622
622
|
"fontWeight": "{fontWeight.light}",
|
|
623
623
|
"lineHeight": "{lineHeight.2}",
|
|
624
|
-
"fontSize": "{fontSize.figma.10.
|
|
624
|
+
"fontSize": "{fontSize.figma.10.L}",
|
|
625
625
|
"letterSpacing": "{letterSpacing.tight}"
|
|
626
626
|
},
|
|
627
627
|
"type": "typography"
|
|
@@ -631,7 +631,7 @@
|
|
|
631
631
|
"fontFamily": "{fontFamily.sans}",
|
|
632
632
|
"fontWeight": "{fontWeight.light}",
|
|
633
633
|
"lineHeight": "{lineHeight.2}",
|
|
634
|
-
"fontSize": "{fontSize.figma.10.
|
|
634
|
+
"fontSize": "{fontSize.figma.10.XL}",
|
|
635
635
|
"letterSpacing": "{letterSpacing.tight}"
|
|
636
636
|
},
|
|
637
637
|
"type": "typography"
|
|
@@ -641,7 +641,7 @@
|
|
|
641
641
|
"fontFamily": "{fontFamily.sans}",
|
|
642
642
|
"fontWeight": "{fontWeight.light}",
|
|
643
643
|
"lineHeight": "{lineHeight.2}",
|
|
644
|
-
"fontSize": "{fontSize.figma.10.
|
|
644
|
+
"fontSize": "{fontSize.figma.10.MAX}",
|
|
645
645
|
"letterSpacing": "{letterSpacing.tight}"
|
|
646
646
|
},
|
|
647
647
|
"type": "typography"
|
|
@@ -653,7 +653,7 @@
|
|
|
653
653
|
"fontFamily": "{fontFamily.sans}",
|
|
654
654
|
"fontWeight": "{fontWeight.light}",
|
|
655
655
|
"lineHeight": "{lineHeight.1}",
|
|
656
|
-
"fontSize": "{fontSize.figma.11.
|
|
656
|
+
"fontSize": "{fontSize.figma.11.S}",
|
|
657
657
|
"letterSpacing": "{letterSpacing.tight}"
|
|
658
658
|
},
|
|
659
659
|
"type": "typography"
|
|
@@ -663,7 +663,7 @@
|
|
|
663
663
|
"fontFamily": "{fontFamily.sans}",
|
|
664
664
|
"fontWeight": "{fontWeight.light}",
|
|
665
665
|
"lineHeight": "{lineHeight.1}",
|
|
666
|
-
"fontSize": "{fontSize.figma.11.
|
|
666
|
+
"fontSize": "{fontSize.figma.11.M}",
|
|
667
667
|
"letterSpacing": "{letterSpacing.tight}"
|
|
668
668
|
},
|
|
669
669
|
"type": "typography"
|
|
@@ -673,7 +673,7 @@
|
|
|
673
673
|
"fontFamily": "{fontFamily.sans}",
|
|
674
674
|
"fontWeight": "{fontWeight.light}",
|
|
675
675
|
"lineHeight": "{lineHeight.1}",
|
|
676
|
-
"fontSize": "{fontSize.figma.11.
|
|
676
|
+
"fontSize": "{fontSize.figma.11.L}",
|
|
677
677
|
"letterSpacing": "{letterSpacing.tight}"
|
|
678
678
|
},
|
|
679
679
|
"type": "typography"
|
|
@@ -683,7 +683,7 @@
|
|
|
683
683
|
"fontFamily": "{fontFamily.sans}",
|
|
684
684
|
"fontWeight": "{fontWeight.light}",
|
|
685
685
|
"lineHeight": "{lineHeight.1}",
|
|
686
|
-
"fontSize": "{fontSize.figma.11.
|
|
686
|
+
"fontSize": "{fontSize.figma.11.XL}",
|
|
687
687
|
"letterSpacing": "{letterSpacing.tight}"
|
|
688
688
|
},
|
|
689
689
|
"type": "typography"
|
|
@@ -693,7 +693,7 @@
|
|
|
693
693
|
"fontFamily": "{fontFamily.sans}",
|
|
694
694
|
"fontWeight": "{fontWeight.light}",
|
|
695
695
|
"lineHeight": "{lineHeight.1}",
|
|
696
|
-
"fontSize": "{fontSize.figma.11.
|
|
696
|
+
"fontSize": "{fontSize.figma.11.MAX}",
|
|
697
697
|
"letterSpacing": "{letterSpacing.tight}"
|
|
698
698
|
},
|
|
699
699
|
"type": "typography"
|
|
@@ -702,50 +702,50 @@
|
|
|
702
702
|
"5-serif": {
|
|
703
703
|
"S": {
|
|
704
704
|
"value": {
|
|
705
|
-
"fontFamily": "{fontFamily.
|
|
705
|
+
"fontFamily": "{fontFamily.serif}",
|
|
706
706
|
"fontWeight": "{fontWeight.bold}",
|
|
707
707
|
"lineHeight": "{lineHeight.1}",
|
|
708
|
-
"fontSize": "{fontSize.figma.11.
|
|
708
|
+
"fontSize": "{fontSize.figma.11.S}",
|
|
709
709
|
"letterSpacing": "{letterSpacing.tight}"
|
|
710
710
|
},
|
|
711
711
|
"type": "typography"
|
|
712
712
|
},
|
|
713
713
|
"M": {
|
|
714
714
|
"value": {
|
|
715
|
-
"fontFamily": "{fontFamily.
|
|
715
|
+
"fontFamily": "{fontFamily.serif}",
|
|
716
716
|
"fontWeight": "{fontWeight.bold}",
|
|
717
717
|
"lineHeight": "{lineHeight.1}",
|
|
718
|
-
"fontSize": "{fontSize.figma.11.
|
|
718
|
+
"fontSize": "{fontSize.figma.11.M}",
|
|
719
719
|
"letterSpacing": "{letterSpacing.tight}"
|
|
720
720
|
},
|
|
721
721
|
"type": "typography"
|
|
722
722
|
},
|
|
723
723
|
"L": {
|
|
724
724
|
"value": {
|
|
725
|
-
"fontFamily": "{fontFamily.
|
|
725
|
+
"fontFamily": "{fontFamily.serif}",
|
|
726
726
|
"fontWeight": "{fontWeight.bold}",
|
|
727
727
|
"lineHeight": "{lineHeight.1}",
|
|
728
|
-
"fontSize": "{fontSize.figma.11.
|
|
728
|
+
"fontSize": "{fontSize.figma.11.L}",
|
|
729
729
|
"letterSpacing": "{letterSpacing.tight}"
|
|
730
730
|
},
|
|
731
731
|
"type": "typography"
|
|
732
732
|
},
|
|
733
733
|
"XL": {
|
|
734
734
|
"value": {
|
|
735
|
-
"fontFamily": "{fontFamily.
|
|
735
|
+
"fontFamily": "{fontFamily.serif}",
|
|
736
736
|
"fontWeight": "{fontWeight.bold}",
|
|
737
737
|
"lineHeight": "{lineHeight.1}",
|
|
738
|
-
"fontSize": "{fontSize.figma.11.
|
|
738
|
+
"fontSize": "{fontSize.figma.11.XL}",
|
|
739
739
|
"letterSpacing": "{letterSpacing.tight}"
|
|
740
740
|
},
|
|
741
741
|
"type": "typography"
|
|
742
742
|
},
|
|
743
743
|
"MAX": {
|
|
744
744
|
"value": {
|
|
745
|
-
"fontFamily": "{fontFamily.
|
|
745
|
+
"fontFamily": "{fontFamily.serif}",
|
|
746
746
|
"fontWeight": "{fontWeight.bold}",
|
|
747
747
|
"lineHeight": "{lineHeight.1}",
|
|
748
|
-
"fontSize": "{fontSize.figma.11.
|
|
748
|
+
"fontSize": "{fontSize.figma.11.MAX}",
|
|
749
749
|
"letterSpacing": "{letterSpacing.tight}"
|
|
750
750
|
},
|
|
751
751
|
"type": "typography"
|
|
@@ -754,50 +754,50 @@
|
|
|
754
754
|
"6-serif": {
|
|
755
755
|
"S": {
|
|
756
756
|
"value": {
|
|
757
|
-
"fontFamily": "{fontFamily.
|
|
757
|
+
"fontFamily": "{fontFamily.serif}",
|
|
758
758
|
"fontWeight": "{fontWeight.bold}",
|
|
759
759
|
"lineHeight": "{lineHeight.1}",
|
|
760
|
-
"fontSize": "{fontSize.figma.12.
|
|
760
|
+
"fontSize": "{fontSize.figma.12.S}",
|
|
761
761
|
"letterSpacing": "{letterSpacing.tight}"
|
|
762
762
|
},
|
|
763
763
|
"type": "typography"
|
|
764
764
|
},
|
|
765
765
|
"M": {
|
|
766
766
|
"value": {
|
|
767
|
-
"fontFamily": "{fontFamily.
|
|
767
|
+
"fontFamily": "{fontFamily.serif}",
|
|
768
768
|
"fontWeight": "{fontWeight.bold}",
|
|
769
769
|
"lineHeight": "{lineHeight.1}",
|
|
770
|
-
"fontSize": "{fontSize.figma.12.
|
|
770
|
+
"fontSize": "{fontSize.figma.12.M}",
|
|
771
771
|
"letterSpacing": "{letterSpacing.tight}"
|
|
772
772
|
},
|
|
773
773
|
"type": "typography"
|
|
774
774
|
},
|
|
775
775
|
"L": {
|
|
776
776
|
"value": {
|
|
777
|
-
"fontFamily": "{fontFamily.
|
|
777
|
+
"fontFamily": "{fontFamily.serif}",
|
|
778
778
|
"fontWeight": "{fontWeight.bold}",
|
|
779
779
|
"lineHeight": "{lineHeight.1}",
|
|
780
|
-
"fontSize": "{fontSize.figma.12.
|
|
780
|
+
"fontSize": "{fontSize.figma.12.L}",
|
|
781
781
|
"letterSpacing": "{letterSpacing.tight}"
|
|
782
782
|
},
|
|
783
783
|
"type": "typography"
|
|
784
784
|
},
|
|
785
785
|
"XL": {
|
|
786
786
|
"value": {
|
|
787
|
-
"fontFamily": "{fontFamily.
|
|
787
|
+
"fontFamily": "{fontFamily.serif}",
|
|
788
788
|
"fontWeight": "{fontWeight.bold}",
|
|
789
789
|
"lineHeight": "{lineHeight.1}",
|
|
790
|
-
"fontSize": "{fontSize.figma.12.
|
|
790
|
+
"fontSize": "{fontSize.figma.12.XL}",
|
|
791
791
|
"letterSpacing": "{letterSpacing.tight}"
|
|
792
792
|
},
|
|
793
793
|
"type": "typography"
|
|
794
794
|
},
|
|
795
795
|
"MAX": {
|
|
796
796
|
"value": {
|
|
797
|
-
"fontFamily": "{fontFamily.
|
|
797
|
+
"fontFamily": "{fontFamily.serif}",
|
|
798
798
|
"fontWeight": "{fontWeight.bold}",
|
|
799
799
|
"lineHeight": "{lineHeight.1}",
|
|
800
|
-
"fontSize": "{fontSize.figma.12.
|
|
800
|
+
"fontSize": "{fontSize.figma.12.MAX}",
|
|
801
801
|
"letterSpacing": "{letterSpacing.tight}"
|
|
802
802
|
},
|
|
803
803
|
"type": "typography"
|
|
@@ -806,50 +806,50 @@
|
|
|
806
806
|
"7-serif": {
|
|
807
807
|
"S": {
|
|
808
808
|
"value": {
|
|
809
|
-
"fontFamily": "{fontFamily.
|
|
809
|
+
"fontFamily": "{fontFamily.serif}",
|
|
810
810
|
"fontWeight": "{fontWeight.bold}",
|
|
811
811
|
"lineHeight": "{lineHeight.1}",
|
|
812
|
-
"fontSize": "{fontSize.figma.13.
|
|
812
|
+
"fontSize": "{fontSize.figma.13.S}",
|
|
813
813
|
"letterSpacing": "{letterSpacing.tight}"
|
|
814
814
|
},
|
|
815
815
|
"type": "typography"
|
|
816
816
|
},
|
|
817
817
|
"M": {
|
|
818
818
|
"value": {
|
|
819
|
-
"fontFamily": "{fontFamily.
|
|
819
|
+
"fontFamily": "{fontFamily.serif}",
|
|
820
820
|
"fontWeight": "{fontWeight.bold}",
|
|
821
821
|
"lineHeight": "{lineHeight.1}",
|
|
822
|
-
"fontSize": "{fontSize.figma.13.
|
|
822
|
+
"fontSize": "{fontSize.figma.13.M}",
|
|
823
823
|
"letterSpacing": "{letterSpacing.tight}"
|
|
824
824
|
},
|
|
825
825
|
"type": "typography"
|
|
826
826
|
},
|
|
827
827
|
"L": {
|
|
828
828
|
"value": {
|
|
829
|
-
"fontFamily": "{fontFamily.
|
|
829
|
+
"fontFamily": "{fontFamily.serif}",
|
|
830
830
|
"fontWeight": "{fontWeight.bold}",
|
|
831
831
|
"lineHeight": "{lineHeight.1}",
|
|
832
|
-
"fontSize": "{fontSize.figma.13.
|
|
832
|
+
"fontSize": "{fontSize.figma.13.L}",
|
|
833
833
|
"letterSpacing": "{letterSpacing.tight}"
|
|
834
834
|
},
|
|
835
835
|
"type": "typography"
|
|
836
836
|
},
|
|
837
837
|
"XL": {
|
|
838
838
|
"value": {
|
|
839
|
-
"fontFamily": "{fontFamily.
|
|
839
|
+
"fontFamily": "{fontFamily.serif}",
|
|
840
840
|
"fontWeight": "{fontWeight.bold}",
|
|
841
841
|
"lineHeight": "{lineHeight.1}",
|
|
842
|
-
"fontSize": "{fontSize.figma.13.
|
|
842
|
+
"fontSize": "{fontSize.figma.13.XL}",
|
|
843
843
|
"letterSpacing": "{letterSpacing.tight}"
|
|
844
844
|
},
|
|
845
845
|
"type": "typography"
|
|
846
846
|
},
|
|
847
847
|
"MAX": {
|
|
848
848
|
"value": {
|
|
849
|
-
"fontFamily": "{fontFamily.
|
|
849
|
+
"fontFamily": "{fontFamily.serif}",
|
|
850
850
|
"fontWeight": "{fontWeight.bold}",
|
|
851
851
|
"lineHeight": "{lineHeight.1}",
|
|
852
|
-
"fontSize": "{fontSize.figma.13.
|
|
852
|
+
"fontSize": "{fontSize.figma.13.MAX}",
|
|
853
853
|
"letterSpacing": "{letterSpacing.tight}"
|
|
854
854
|
},
|
|
855
855
|
"type": "typography"
|
|
@@ -863,7 +863,7 @@
|
|
|
863
863
|
"fontFamily": "{fontFamily.sans}",
|
|
864
864
|
"fontWeight": "{fontWeight.light}",
|
|
865
865
|
"lineHeight": "{lineHeight.4}",
|
|
866
|
-
"fontSize": "{fontSize.figma.9.
|
|
866
|
+
"fontSize": "{fontSize.figma.9.S}",
|
|
867
867
|
"letterSpacing": "{letterSpacing.tight}"
|
|
868
868
|
},
|
|
869
869
|
"type": "typography"
|
|
@@ -873,7 +873,7 @@
|
|
|
873
873
|
"fontFamily": "{fontFamily.sans}",
|
|
874
874
|
"fontWeight": "{fontWeight.light}",
|
|
875
875
|
"lineHeight": "{lineHeight.4}",
|
|
876
|
-
"fontSize": "{fontSize.figma.9.
|
|
876
|
+
"fontSize": "{fontSize.figma.9.M}",
|
|
877
877
|
"letterSpacing": "{letterSpacing.tight}"
|
|
878
878
|
},
|
|
879
879
|
"type": "typography"
|
|
@@ -883,7 +883,7 @@
|
|
|
883
883
|
"fontFamily": "{fontFamily.sans}",
|
|
884
884
|
"fontWeight": "{fontWeight.light}",
|
|
885
885
|
"lineHeight": "{lineHeight.4}",
|
|
886
|
-
"fontSize": "{fontSize.figma.9.
|
|
886
|
+
"fontSize": "{fontSize.figma.9.L}",
|
|
887
887
|
"letterSpacing": "{letterSpacing.tight}"
|
|
888
888
|
},
|
|
889
889
|
"type": "typography"
|
|
@@ -893,7 +893,7 @@
|
|
|
893
893
|
"fontFamily": "{fontFamily.sans}",
|
|
894
894
|
"fontWeight": "{fontWeight.light}",
|
|
895
895
|
"lineHeight": "{lineHeight.4}",
|
|
896
|
-
"fontSize": "{fontSize.figma.9.
|
|
896
|
+
"fontSize": "{fontSize.figma.9.XL}",
|
|
897
897
|
"letterSpacing": "{letterSpacing.tight}"
|
|
898
898
|
},
|
|
899
899
|
"type": "typography"
|
|
@@ -903,7 +903,7 @@
|
|
|
903
903
|
"fontFamily": "{fontFamily.sans}",
|
|
904
904
|
"fontWeight": "{fontWeight.light}",
|
|
905
905
|
"lineHeight": "{lineHeight.4}",
|
|
906
|
-
"fontSize": "{fontSize.figma.9.
|
|
906
|
+
"fontSize": "{fontSize.figma.9.MAX}",
|
|
907
907
|
"letterSpacing": "{letterSpacing.tight}"
|
|
908
908
|
},
|
|
909
909
|
"type": "typography"
|
|
@@ -914,50 +914,50 @@
|
|
|
914
914
|
"1": {
|
|
915
915
|
"S": {
|
|
916
916
|
"value": {
|
|
917
|
-
"fontFamily": "{fontFamily.
|
|
917
|
+
"fontFamily": "{fontFamily.serif}",
|
|
918
918
|
"fontWeight": "{fontWeight.bold}",
|
|
919
919
|
"lineHeight": "{lineHeight.4}",
|
|
920
|
-
"fontSize": "{fontSize.figma.9.
|
|
920
|
+
"fontSize": "{fontSize.figma.9.S}",
|
|
921
921
|
"letterSpacing": "{letterSpacing.tight}"
|
|
922
922
|
},
|
|
923
923
|
"type": "typography"
|
|
924
924
|
},
|
|
925
925
|
"M": {
|
|
926
926
|
"value": {
|
|
927
|
-
"fontFamily": "{fontFamily.
|
|
927
|
+
"fontFamily": "{fontFamily.serif}",
|
|
928
928
|
"fontWeight": "{fontWeight.bold}",
|
|
929
929
|
"lineHeight": "{lineHeight.4}",
|
|
930
|
-
"fontSize": "{fontSize.figma.9.
|
|
930
|
+
"fontSize": "{fontSize.figma.9.M}",
|
|
931
931
|
"letterSpacing": "{letterSpacing.tight}"
|
|
932
932
|
},
|
|
933
933
|
"type": "typography"
|
|
934
934
|
},
|
|
935
935
|
"L": {
|
|
936
936
|
"value": {
|
|
937
|
-
"fontFamily": "{fontFamily.
|
|
937
|
+
"fontFamily": "{fontFamily.serif}",
|
|
938
938
|
"fontWeight": "{fontWeight.bold}",
|
|
939
939
|
"lineHeight": "{lineHeight.4}",
|
|
940
|
-
"fontSize": "{fontSize.figma.9.
|
|
940
|
+
"fontSize": "{fontSize.figma.9.L}",
|
|
941
941
|
"letterSpacing": "{letterSpacing.tight}"
|
|
942
942
|
},
|
|
943
943
|
"type": "typography"
|
|
944
944
|
},
|
|
945
945
|
"XL": {
|
|
946
946
|
"value": {
|
|
947
|
-
"fontFamily": "{fontFamily.
|
|
947
|
+
"fontFamily": "{fontFamily.serif}",
|
|
948
948
|
"fontWeight": "{fontWeight.bold}",
|
|
949
949
|
"lineHeight": "{lineHeight.4}",
|
|
950
|
-
"fontSize": "{fontSize.figma.9.
|
|
950
|
+
"fontSize": "{fontSize.figma.9.XL}",
|
|
951
951
|
"letterSpacing": "{letterSpacing.tight}"
|
|
952
952
|
},
|
|
953
953
|
"type": "typography"
|
|
954
954
|
},
|
|
955
955
|
"MAX": {
|
|
956
956
|
"value": {
|
|
957
|
-
"fontFamily": "{fontFamily.
|
|
957
|
+
"fontFamily": "{fontFamily.serif}",
|
|
958
958
|
"fontWeight": "{fontWeight.bold}",
|
|
959
959
|
"lineHeight": "{lineHeight.4}",
|
|
960
|
-
"fontSize": "{fontSize.figma.9.
|
|
960
|
+
"fontSize": "{fontSize.figma.9.MAX}",
|
|
961
961
|
"letterSpacing": "{letterSpacing.tight}"
|
|
962
962
|
},
|
|
963
963
|
"type": "typography"
|
|
@@ -966,50 +966,50 @@
|
|
|
966
966
|
"2": {
|
|
967
967
|
"S": {
|
|
968
968
|
"value": {
|
|
969
|
-
"fontFamily": "{fontFamily.
|
|
969
|
+
"fontFamily": "{fontFamily.serif}",
|
|
970
970
|
"fontWeight": "{fontWeight.bold}",
|
|
971
971
|
"lineHeight": "{lineHeight.4}",
|
|
972
|
-
"fontSize": "{fontSize.figma.10.
|
|
972
|
+
"fontSize": "{fontSize.figma.10.S}",
|
|
973
973
|
"letterSpacing": "{letterSpacing.tight}"
|
|
974
974
|
},
|
|
975
975
|
"type": "typography"
|
|
976
976
|
},
|
|
977
977
|
"M": {
|
|
978
978
|
"value": {
|
|
979
|
-
"fontFamily": "{fontFamily.
|
|
979
|
+
"fontFamily": "{fontFamily.serif}",
|
|
980
980
|
"fontWeight": "{fontWeight.bold}",
|
|
981
981
|
"lineHeight": "{lineHeight.4}",
|
|
982
|
-
"fontSize": "{fontSize.figma.10.
|
|
982
|
+
"fontSize": "{fontSize.figma.10.M}",
|
|
983
983
|
"letterSpacing": "{letterSpacing.tight}"
|
|
984
984
|
},
|
|
985
985
|
"type": "typography"
|
|
986
986
|
},
|
|
987
987
|
"L": {
|
|
988
988
|
"value": {
|
|
989
|
-
"fontFamily": "{fontFamily.
|
|
989
|
+
"fontFamily": "{fontFamily.serif}",
|
|
990
990
|
"fontWeight": "{fontWeight.bold}",
|
|
991
991
|
"lineHeight": "{lineHeight.4}",
|
|
992
|
-
"fontSize": "{fontSize.figma.10.
|
|
992
|
+
"fontSize": "{fontSize.figma.10.L}",
|
|
993
993
|
"letterSpacing": "{letterSpacing.tight}"
|
|
994
994
|
},
|
|
995
995
|
"type": "typography"
|
|
996
996
|
},
|
|
997
997
|
"XL": {
|
|
998
998
|
"value": {
|
|
999
|
-
"fontFamily": "{fontFamily.
|
|
999
|
+
"fontFamily": "{fontFamily.serif}",
|
|
1000
1000
|
"fontWeight": "{fontWeight.bold}",
|
|
1001
1001
|
"lineHeight": "{lineHeight.4}",
|
|
1002
|
-
"fontSize": "{fontSize.figma.10.
|
|
1002
|
+
"fontSize": "{fontSize.figma.10.XL}",
|
|
1003
1003
|
"letterSpacing": "{letterSpacing.tight}"
|
|
1004
1004
|
},
|
|
1005
1005
|
"type": "typography"
|
|
1006
1006
|
},
|
|
1007
1007
|
"MAX": {
|
|
1008
1008
|
"value": {
|
|
1009
|
-
"fontFamily": "{fontFamily.
|
|
1009
|
+
"fontFamily": "{fontFamily.serif}",
|
|
1010
1010
|
"fontWeight": "{fontWeight.bold}",
|
|
1011
1011
|
"lineHeight": "{lineHeight.4}",
|
|
1012
|
-
"fontSize": "{fontSize.figma.10.
|
|
1012
|
+
"fontSize": "{fontSize.figma.10.MAX}",
|
|
1013
1013
|
"letterSpacing": "{letterSpacing.tight}"
|
|
1014
1014
|
},
|
|
1015
1015
|
"type": "typography"
|
|
@@ -1018,50 +1018,50 @@
|
|
|
1018
1018
|
"3": {
|
|
1019
1019
|
"S": {
|
|
1020
1020
|
"value": {
|
|
1021
|
-
"fontFamily": "{fontFamily.
|
|
1021
|
+
"fontFamily": "{fontFamily.serif}",
|
|
1022
1022
|
"fontWeight": "{fontWeight.bold}",
|
|
1023
1023
|
"lineHeight": "{lineHeight.3}",
|
|
1024
|
-
"fontSize": "{fontSize.figma.11.
|
|
1024
|
+
"fontSize": "{fontSize.figma.11.S}",
|
|
1025
1025
|
"letterSpacing": "{letterSpacing.tight}"
|
|
1026
1026
|
},
|
|
1027
1027
|
"type": "typography"
|
|
1028
1028
|
},
|
|
1029
1029
|
"M": {
|
|
1030
1030
|
"value": {
|
|
1031
|
-
"fontFamily": "{fontFamily.
|
|
1031
|
+
"fontFamily": "{fontFamily.serif}",
|
|
1032
1032
|
"fontWeight": "{fontWeight.bold}",
|
|
1033
1033
|
"lineHeight": "{lineHeight.3}",
|
|
1034
|
-
"fontSize": "{fontSize.figma.11.
|
|
1034
|
+
"fontSize": "{fontSize.figma.11.M}",
|
|
1035
1035
|
"letterSpacing": "{letterSpacing.tight}"
|
|
1036
1036
|
},
|
|
1037
1037
|
"type": "typography"
|
|
1038
1038
|
},
|
|
1039
1039
|
"L": {
|
|
1040
1040
|
"value": {
|
|
1041
|
-
"fontFamily": "{fontFamily.
|
|
1041
|
+
"fontFamily": "{fontFamily.serif}",
|
|
1042
1042
|
"fontWeight": "{fontWeight.bold}",
|
|
1043
1043
|
"lineHeight": "{lineHeight.3}",
|
|
1044
|
-
"fontSize": "{fontSize.figma.11.
|
|
1044
|
+
"fontSize": "{fontSize.figma.11.L}",
|
|
1045
1045
|
"letterSpacing": "{letterSpacing.tight}"
|
|
1046
1046
|
},
|
|
1047
1047
|
"type": "typography"
|
|
1048
1048
|
},
|
|
1049
1049
|
"XL": {
|
|
1050
1050
|
"value": {
|
|
1051
|
-
"fontFamily": "{fontFamily.
|
|
1051
|
+
"fontFamily": "{fontFamily.serif}",
|
|
1052
1052
|
"fontWeight": "{fontWeight.bold}",
|
|
1053
1053
|
"lineHeight": "{lineHeight.3}",
|
|
1054
|
-
"fontSize": "{fontSize.figma.11.
|
|
1054
|
+
"fontSize": "{fontSize.figma.11.XL}",
|
|
1055
1055
|
"letterSpacing": "{letterSpacing.tight}"
|
|
1056
1056
|
},
|
|
1057
1057
|
"type": "typography"
|
|
1058
1058
|
},
|
|
1059
1059
|
"MAX": {
|
|
1060
1060
|
"value": {
|
|
1061
|
-
"fontFamily": "{fontFamily.
|
|
1061
|
+
"fontFamily": "{fontFamily.serif}",
|
|
1062
1062
|
"fontWeight": "{fontWeight.bold}",
|
|
1063
1063
|
"lineHeight": "{lineHeight.3}",
|
|
1064
|
-
"fontSize": "{fontSize.figma.11.
|
|
1064
|
+
"fontSize": "{fontSize.figma.11.MAX}",
|
|
1065
1065
|
"letterSpacing": "{letterSpacing.tight}"
|
|
1066
1066
|
},
|
|
1067
1067
|
"type": "typography"
|
|
@@ -1093,7 +1093,7 @@
|
|
|
1093
1093
|
"code": {
|
|
1094
1094
|
"1": {
|
|
1095
1095
|
"value": {
|
|
1096
|
-
"fontFamily": "{fontFamily.
|
|
1096
|
+
"fontFamily": "{fontFamily.monospace}",
|
|
1097
1097
|
"fontWeight": "{fontWeight.regular}",
|
|
1098
1098
|
"lineHeight": "{lineHeight.4}",
|
|
1099
1099
|
"fontSize": "{fontSize.static.2}"
|
|
@@ -1102,7 +1102,7 @@
|
|
|
1102
1102
|
},
|
|
1103
1103
|
"2": {
|
|
1104
1104
|
"value": {
|
|
1105
|
-
"fontFamily": "{fontFamily.
|
|
1105
|
+
"fontFamily": "{fontFamily.monospace}",
|
|
1106
1106
|
"fontWeight": "{fontWeight.regular}",
|
|
1107
1107
|
"lineHeight": "{lineHeight.4}",
|
|
1108
1108
|
"fontSize": "{fontSize.static.3}"
|
|
@@ -1214,4 +1214,4 @@
|
|
|
1214
1214
|
"type": "letterSpacing"
|
|
1215
1215
|
}
|
|
1216
1216
|
}
|
|
1217
|
-
}
|
|
1217
|
+
}
|