@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
|
@@ -1,4 +1,257 @@
|
|
|
1
1
|
{
|
|
2
|
+
"space": {
|
|
3
|
+
"0": {
|
|
4
|
+
"value": 0,
|
|
5
|
+
"type": "spacing"
|
|
6
|
+
},
|
|
7
|
+
"1": {
|
|
8
|
+
"value": 4,
|
|
9
|
+
"type": "spacing"
|
|
10
|
+
},
|
|
11
|
+
"2": {
|
|
12
|
+
"value": 8,
|
|
13
|
+
"type": "spacing"
|
|
14
|
+
},
|
|
15
|
+
"3": {
|
|
16
|
+
"value": 12,
|
|
17
|
+
"type": "spacing"
|
|
18
|
+
},
|
|
19
|
+
"4": {
|
|
20
|
+
"value": 16,
|
|
21
|
+
"type": "spacing"
|
|
22
|
+
},
|
|
23
|
+
"5": {
|
|
24
|
+
"value": 24,
|
|
25
|
+
"type": "spacing"
|
|
26
|
+
},
|
|
27
|
+
"6": {
|
|
28
|
+
"value": 32,
|
|
29
|
+
"type": "spacing"
|
|
30
|
+
},
|
|
31
|
+
"7": {
|
|
32
|
+
"value": 56,
|
|
33
|
+
"type": "spacing"
|
|
34
|
+
},
|
|
35
|
+
"8": {
|
|
36
|
+
"value": 80,
|
|
37
|
+
"type": "spacing"
|
|
38
|
+
},
|
|
39
|
+
"9": {
|
|
40
|
+
"value": 160,
|
|
41
|
+
"type": "spacing"
|
|
42
|
+
},
|
|
43
|
+
"responsive": {
|
|
44
|
+
"0": {
|
|
45
|
+
"value": 0,
|
|
46
|
+
"type": "spacing"
|
|
47
|
+
},
|
|
48
|
+
"1": {
|
|
49
|
+
"value": "clamp(0.75rem, calc(0.69rem + 0.30vw), 1.00rem)",
|
|
50
|
+
"type": "spacing"
|
|
51
|
+
},
|
|
52
|
+
"2": {
|
|
53
|
+
"value": "clamp(1.00rem, calc(0.88rem + 0.60vw), 1.50rem)",
|
|
54
|
+
"type": "spacing"
|
|
55
|
+
},
|
|
56
|
+
"3": {
|
|
57
|
+
"value": "clamp(1.50rem, calc(1.38rem + 0.60vw), 2.00rem)",
|
|
58
|
+
"type": "spacing"
|
|
59
|
+
},
|
|
60
|
+
"4": {
|
|
61
|
+
"value": "clamp(2.00rem, calc(1.64rem + 1.81vw), 3.50rem)",
|
|
62
|
+
"type": "spacing",
|
|
63
|
+
"description": "The default space between sequential blocks in a layout"
|
|
64
|
+
},
|
|
65
|
+
"5": {
|
|
66
|
+
"value": "clamp(3.50rem, calc(3.14rem + 1.81vw), 5.00rem)",
|
|
67
|
+
"type": "spacing"
|
|
68
|
+
},
|
|
69
|
+
"6": {
|
|
70
|
+
"value": "clamp(5.00rem, calc(4.52rem + 2.41vw), 7.00rem)",
|
|
71
|
+
"type": "spacing"
|
|
72
|
+
},
|
|
73
|
+
"7": {
|
|
74
|
+
"value": "clamp(7.00rem, calc(6.28rem + 3.61vw), 10.00rem)",
|
|
75
|
+
"type": "spacing"
|
|
76
|
+
},
|
|
77
|
+
"0-1": {
|
|
78
|
+
"value": "clamp(0.13rem, calc(0.09rem + 0.15vw), 0.25rem)",
|
|
79
|
+
"type": "spacing"
|
|
80
|
+
},
|
|
81
|
+
"1-2": {
|
|
82
|
+
"value": "clamp(0.25rem, calc(0.19rem + 0.30vw), 0.50rem)",
|
|
83
|
+
"type": "spacing"
|
|
84
|
+
},
|
|
85
|
+
"2-3": {
|
|
86
|
+
"value": "clamp(0.50rem, calc(0.44rem + 0.30vw), 0.75rem)",
|
|
87
|
+
"type": "spacing"
|
|
88
|
+
},
|
|
89
|
+
"3-4": {
|
|
90
|
+
"value": "clamp(0.75rem, calc(0.69rem + 0.30vw), 1.00rem)",
|
|
91
|
+
"type": "spacing"
|
|
92
|
+
},
|
|
93
|
+
"4-5": {
|
|
94
|
+
"value": "clamp(1.00rem, calc(0.88rem + 0.60vw), 1.50rem)",
|
|
95
|
+
"type": "spacing"
|
|
96
|
+
},
|
|
97
|
+
"5-6": {
|
|
98
|
+
"value": "clamp(1.50rem, calc(1.38rem + 0.60vw), 2.00rem)",
|
|
99
|
+
"type": "spacing"
|
|
100
|
+
},
|
|
101
|
+
"6-7": {
|
|
102
|
+
"value": "clamp(2.00rem, calc(1.64rem + 1.81vw), 3.50rem)",
|
|
103
|
+
"type": "spacing"
|
|
104
|
+
},
|
|
105
|
+
"7-8": {
|
|
106
|
+
"value": "clamp(3.50rem, calc(3.14rem + 1.81vw), 5.00rem)",
|
|
107
|
+
"type": "spacing"
|
|
108
|
+
},
|
|
109
|
+
"8-9": {
|
|
110
|
+
"value": "clamp(5.00rem, calc(4.52rem + 2.41vw), 7.00rem)",
|
|
111
|
+
"type": "spacing"
|
|
112
|
+
},
|
|
113
|
+
"9-10": {
|
|
114
|
+
"value": "clamp(7.00rem, calc(6.28rem + 3.61vw), 10.00rem)",
|
|
115
|
+
"type": "spacing"
|
|
116
|
+
},
|
|
117
|
+
"3-6": {
|
|
118
|
+
"value": "clamp(0.75rem, calc(0.45rem + 1.51vw), 2.00rem)",
|
|
119
|
+
"type": "spacing"
|
|
120
|
+
},
|
|
121
|
+
"4-7": {
|
|
122
|
+
"value": "clamp(1.00rem, calc(0.40rem + 3.01vw), 3.50rem)",
|
|
123
|
+
"type": "spacing"
|
|
124
|
+
},
|
|
125
|
+
"5-8": {
|
|
126
|
+
"value": "clamp(1.50rem, calc(0.66rem + 4.22vw), 5.00rem)",
|
|
127
|
+
"type": "spacing"
|
|
128
|
+
},
|
|
129
|
+
"6-9": {
|
|
130
|
+
"value": "clamp(2.00rem, calc(0.80rem + 6.02vw), 7.00rem)",
|
|
131
|
+
"type": "spacing"
|
|
132
|
+
}
|
|
133
|
+
},
|
|
134
|
+
"static": {
|
|
135
|
+
"0": {
|
|
136
|
+
"value": 2.08,
|
|
137
|
+
"type": "spacing"
|
|
138
|
+
},
|
|
139
|
+
"1": {
|
|
140
|
+
"value": 4,
|
|
141
|
+
"type": "spacing"
|
|
142
|
+
},
|
|
143
|
+
"2": {
|
|
144
|
+
"value": 8,
|
|
145
|
+
"type": "spacing"
|
|
146
|
+
},
|
|
147
|
+
"3": {
|
|
148
|
+
"value": 12,
|
|
149
|
+
"type": "spacing"
|
|
150
|
+
},
|
|
151
|
+
"4": {
|
|
152
|
+
"value": 16,
|
|
153
|
+
"type": "spacing"
|
|
154
|
+
},
|
|
155
|
+
"5": {
|
|
156
|
+
"value": 24,
|
|
157
|
+
"type": "spacing"
|
|
158
|
+
},
|
|
159
|
+
"6": {
|
|
160
|
+
"value": 32,
|
|
161
|
+
"type": "spacing"
|
|
162
|
+
},
|
|
163
|
+
"7": {
|
|
164
|
+
"value": 56,
|
|
165
|
+
"type": "spacing"
|
|
166
|
+
},
|
|
167
|
+
"8": {
|
|
168
|
+
"value": 80,
|
|
169
|
+
"type": "spacing"
|
|
170
|
+
},
|
|
171
|
+
"9": {
|
|
172
|
+
"value": 112,
|
|
173
|
+
"type": "spacing"
|
|
174
|
+
},
|
|
175
|
+
"10": {
|
|
176
|
+
"value": 160,
|
|
177
|
+
"type": "spacing"
|
|
178
|
+
}
|
|
179
|
+
}
|
|
180
|
+
},
|
|
181
|
+
"borderRadius": {
|
|
182
|
+
"0": {
|
|
183
|
+
"value": 0,
|
|
184
|
+
"type": "borderRadius"
|
|
185
|
+
},
|
|
186
|
+
"1": {
|
|
187
|
+
"value": 2.08,
|
|
188
|
+
"type": "borderRadius"
|
|
189
|
+
},
|
|
190
|
+
"2": {
|
|
191
|
+
"value": 4,
|
|
192
|
+
"type": "borderRadius"
|
|
193
|
+
},
|
|
194
|
+
"3": {
|
|
195
|
+
"value": 8,
|
|
196
|
+
"type": "borderRadius"
|
|
197
|
+
},
|
|
198
|
+
"4": {
|
|
199
|
+
"value": 16,
|
|
200
|
+
"type": "borderRadius"
|
|
201
|
+
},
|
|
202
|
+
"5": {
|
|
203
|
+
"value": 32,
|
|
204
|
+
"type": "borderRadius"
|
|
205
|
+
},
|
|
206
|
+
"6": {
|
|
207
|
+
"value": 40,
|
|
208
|
+
"type": "borderRadius"
|
|
209
|
+
},
|
|
210
|
+
"7": {
|
|
211
|
+
"value": 56,
|
|
212
|
+
"type": "borderRadius"
|
|
213
|
+
},
|
|
214
|
+
"static": {
|
|
215
|
+
"0": {
|
|
216
|
+
"value": 2.08,
|
|
217
|
+
"type": "borderRadius"
|
|
218
|
+
},
|
|
219
|
+
"1": {
|
|
220
|
+
"value": 4,
|
|
221
|
+
"type": "borderRadius"
|
|
222
|
+
},
|
|
223
|
+
"2": {
|
|
224
|
+
"value": 8,
|
|
225
|
+
"type": "borderRadius"
|
|
226
|
+
},
|
|
227
|
+
"3": {
|
|
228
|
+
"value": 16,
|
|
229
|
+
"type": "borderRadius"
|
|
230
|
+
},
|
|
231
|
+
"4": {
|
|
232
|
+
"value": 32,
|
|
233
|
+
"type": "borderRadius"
|
|
234
|
+
},
|
|
235
|
+
"5": {
|
|
236
|
+
"value": 40,
|
|
237
|
+
"type": "borderRadius"
|
|
238
|
+
},
|
|
239
|
+
"6": {
|
|
240
|
+
"value": 56,
|
|
241
|
+
"type": "borderRadius"
|
|
242
|
+
}
|
|
243
|
+
},
|
|
244
|
+
"responsive": {
|
|
245
|
+
"3-5": {
|
|
246
|
+
"value": "clamp(1.00rem, calc(0.64rem + 1.81vw), 2.50rem)",
|
|
247
|
+
"type": "borderRadius"
|
|
248
|
+
},
|
|
249
|
+
"4-6": {
|
|
250
|
+
"value": "clamp(2.00rem, calc(1.64rem + 1.81vw), 3.50rem)",
|
|
251
|
+
"type": "borderRadius"
|
|
252
|
+
}
|
|
253
|
+
}
|
|
254
|
+
},
|
|
2
255
|
"background": {
|
|
3
256
|
"primary": {
|
|
4
257
|
"type": "color",
|
|
@@ -40,8 +293,34 @@
|
|
|
40
293
|
},
|
|
41
294
|
"input": {
|
|
42
295
|
"background": {
|
|
43
|
-
"
|
|
44
|
-
|
|
296
|
+
"default": {
|
|
297
|
+
"value": "#fbfbfb00",
|
|
298
|
+
"type": "color"
|
|
299
|
+
},
|
|
300
|
+
"primary": {
|
|
301
|
+
"value": "#13191e",
|
|
302
|
+
"type": "color"
|
|
303
|
+
},
|
|
304
|
+
"success": {
|
|
305
|
+
"value": "#007934",
|
|
306
|
+
"type": "color"
|
|
307
|
+
},
|
|
308
|
+
"brand": {
|
|
309
|
+
"value": "#9a6014",
|
|
310
|
+
"type": "color"
|
|
311
|
+
},
|
|
312
|
+
"inactive": {
|
|
313
|
+
"value": "#827f7e",
|
|
314
|
+
"type": "color"
|
|
315
|
+
},
|
|
316
|
+
"disabled": {
|
|
317
|
+
"value": "#cbc7c6",
|
|
318
|
+
"type": "color"
|
|
319
|
+
},
|
|
320
|
+
"read-only": {
|
|
321
|
+
"value": "#f4f3f2",
|
|
322
|
+
"type": "color"
|
|
323
|
+
}
|
|
45
324
|
},
|
|
46
325
|
"label": {
|
|
47
326
|
"default": {
|
|
@@ -73,6 +352,10 @@
|
|
|
73
352
|
"value": "#d3372b",
|
|
74
353
|
"type": "color",
|
|
75
354
|
"description": "Use for inputs which are in an error state."
|
|
355
|
+
},
|
|
356
|
+
"read-only": {
|
|
357
|
+
"value": "#e3e0df",
|
|
358
|
+
"type": "color"
|
|
76
359
|
}
|
|
77
360
|
},
|
|
78
361
|
"switcher": {
|
|
@@ -94,11 +377,11 @@
|
|
|
94
377
|
"type": "color"
|
|
95
378
|
},
|
|
96
379
|
"hover": {
|
|
97
|
-
"value": "#
|
|
380
|
+
"value": "#f4f3f2",
|
|
98
381
|
"type": "color"
|
|
99
382
|
},
|
|
100
383
|
"active": {
|
|
101
|
-
"value": "#
|
|
384
|
+
"value": "#fbfbfb00",
|
|
102
385
|
"type": "color"
|
|
103
386
|
},
|
|
104
387
|
"disabled": {
|
|
@@ -150,7 +433,7 @@
|
|
|
150
433
|
"type": "color"
|
|
151
434
|
},
|
|
152
435
|
"hover": {
|
|
153
|
-
"value": "#
|
|
436
|
+
"value": "#8f8c8b",
|
|
154
437
|
"type": "color"
|
|
155
438
|
},
|
|
156
439
|
"active": {
|
|
@@ -162,6 +445,18 @@
|
|
|
162
445
|
"type": "color"
|
|
163
446
|
}
|
|
164
447
|
}
|
|
448
|
+
},
|
|
449
|
+
"toggle": {
|
|
450
|
+
"switch": {
|
|
451
|
+
"default": {
|
|
452
|
+
"value": "#ffffff",
|
|
453
|
+
"type": "color"
|
|
454
|
+
},
|
|
455
|
+
"disabled": {
|
|
456
|
+
"value": "#ebe9e8",
|
|
457
|
+
"type": "color"
|
|
458
|
+
}
|
|
459
|
+
}
|
|
165
460
|
}
|
|
166
461
|
},
|
|
167
462
|
"border": {
|
|
@@ -269,11 +564,19 @@
|
|
|
269
564
|
},
|
|
270
565
|
"inverse": {
|
|
271
566
|
"type": "color",
|
|
272
|
-
"value": "#
|
|
567
|
+
"value": "#ffffff"
|
|
273
568
|
},
|
|
274
569
|
"disabled": {
|
|
275
570
|
"type": "color",
|
|
276
571
|
"value": "#8f8c8b"
|
|
572
|
+
},
|
|
573
|
+
"brand": {
|
|
574
|
+
"value": "#9a6014",
|
|
575
|
+
"type": "color"
|
|
576
|
+
},
|
|
577
|
+
"inverse-disabled": {
|
|
578
|
+
"value": "#e3e0df",
|
|
579
|
+
"type": "color"
|
|
277
580
|
}
|
|
278
581
|
},
|
|
279
582
|
"button": {
|
|
@@ -698,6 +1001,60 @@
|
|
|
698
1001
|
"value": "#00611e"
|
|
699
1002
|
}
|
|
700
1003
|
}
|
|
1004
|
+
},
|
|
1005
|
+
"helper-text": {
|
|
1006
|
+
"value": {
|
|
1007
|
+
"fontFamily": "SF Pro Text",
|
|
1008
|
+
"fontWeight": 400,
|
|
1009
|
+
"fontSize": 12,
|
|
1010
|
+
"lineHeight": "150%"
|
|
1011
|
+
},
|
|
1012
|
+
"type": "typography"
|
|
1013
|
+
},
|
|
1014
|
+
"label-xs": {
|
|
1015
|
+
"value": {
|
|
1016
|
+
"fontFamily": "SF Pro Text",
|
|
1017
|
+
"fontWeight": 400,
|
|
1018
|
+
"lineHeight": "100%",
|
|
1019
|
+
"fontSize": 11
|
|
1020
|
+
},
|
|
1021
|
+
"type": "typography"
|
|
1022
|
+
},
|
|
1023
|
+
"label-small": {
|
|
1024
|
+
"value": {
|
|
1025
|
+
"fontFamily": "SF Pro Text",
|
|
1026
|
+
"fontWeight": 400,
|
|
1027
|
+
"lineHeight": "100%",
|
|
1028
|
+
"fontSize": 12
|
|
1029
|
+
},
|
|
1030
|
+
"type": "typography"
|
|
1031
|
+
},
|
|
1032
|
+
"label-default": {
|
|
1033
|
+
"value": {
|
|
1034
|
+
"fontFamily": "SF Pro Text",
|
|
1035
|
+
"fontWeight": 500,
|
|
1036
|
+
"lineHeight": "100%",
|
|
1037
|
+
"fontSize": 14
|
|
1038
|
+
},
|
|
1039
|
+
"type": "typography"
|
|
1040
|
+
},
|
|
1041
|
+
"label-default-quiet": {
|
|
1042
|
+
"value": {
|
|
1043
|
+
"fontFamily": "SF Pro Text",
|
|
1044
|
+
"fontWeight": 400,
|
|
1045
|
+
"lineHeight": "100%",
|
|
1046
|
+
"fontSize": 14
|
|
1047
|
+
},
|
|
1048
|
+
"type": "typography"
|
|
1049
|
+
},
|
|
1050
|
+
"label-default-loud": {
|
|
1051
|
+
"value": {
|
|
1052
|
+
"fontFamily": "SF Pro Text",
|
|
1053
|
+
"fontWeight": 700,
|
|
1054
|
+
"lineHeight": "100%",
|
|
1055
|
+
"fontSize": 14
|
|
1056
|
+
},
|
|
1057
|
+
"type": "typography"
|
|
701
1058
|
}
|
|
702
1059
|
},
|
|
703
1060
|
"focus": {
|
|
@@ -910,6 +1267,278 @@
|
|
|
910
1267
|
}
|
|
911
1268
|
}
|
|
912
1269
|
},
|
|
1270
|
+
"sticker": {
|
|
1271
|
+
"gray": {
|
|
1272
|
+
"background": {
|
|
1273
|
+
"type": "color",
|
|
1274
|
+
"value": "#201e1d"
|
|
1275
|
+
},
|
|
1276
|
+
"background-secondary": {
|
|
1277
|
+
"type": "color",
|
|
1278
|
+
"value": "#cbc7c6"
|
|
1279
|
+
},
|
|
1280
|
+
"text": {
|
|
1281
|
+
"type": "color",
|
|
1282
|
+
"value": "#ffffff"
|
|
1283
|
+
},
|
|
1284
|
+
"text-secondary": {
|
|
1285
|
+
"type": "color",
|
|
1286
|
+
"value": "#13191e"
|
|
1287
|
+
},
|
|
1288
|
+
"icon": {
|
|
1289
|
+
"type": "color",
|
|
1290
|
+
"value": "#ffffff"
|
|
1291
|
+
},
|
|
1292
|
+
"hover": {
|
|
1293
|
+
"type": "color",
|
|
1294
|
+
"value": "#383635"
|
|
1295
|
+
},
|
|
1296
|
+
"active": {
|
|
1297
|
+
"type": "color",
|
|
1298
|
+
"value": "#444140"
|
|
1299
|
+
}
|
|
1300
|
+
},
|
|
1301
|
+
"blue": {
|
|
1302
|
+
"background": {
|
|
1303
|
+
"type": "color",
|
|
1304
|
+
"value": "#54c0cd"
|
|
1305
|
+
},
|
|
1306
|
+
"background-secondary": {
|
|
1307
|
+
"type": "color",
|
|
1308
|
+
"value": "#ddebf3"
|
|
1309
|
+
},
|
|
1310
|
+
"text": {
|
|
1311
|
+
"type": "color",
|
|
1312
|
+
"value": "#13191e"
|
|
1313
|
+
},
|
|
1314
|
+
"text-secondary": {
|
|
1315
|
+
"type": "color",
|
|
1316
|
+
"value": "#13191e"
|
|
1317
|
+
},
|
|
1318
|
+
"icon": {
|
|
1319
|
+
"type": "color",
|
|
1320
|
+
"value": "#13191e"
|
|
1321
|
+
},
|
|
1322
|
+
"hover": {
|
|
1323
|
+
"type": "color",
|
|
1324
|
+
"value": "#19a8b8"
|
|
1325
|
+
},
|
|
1326
|
+
"active": {
|
|
1327
|
+
"type": "color",
|
|
1328
|
+
"value": "#009bad"
|
|
1329
|
+
}
|
|
1330
|
+
},
|
|
1331
|
+
"green": {
|
|
1332
|
+
"background": {
|
|
1333
|
+
"type": "color",
|
|
1334
|
+
"value": "#4dc679"
|
|
1335
|
+
},
|
|
1336
|
+
"background-secondary": {
|
|
1337
|
+
"type": "color",
|
|
1338
|
+
"value": "#d7efdf"
|
|
1339
|
+
},
|
|
1340
|
+
"text": {
|
|
1341
|
+
"type": "color",
|
|
1342
|
+
"value": "#13191e"
|
|
1343
|
+
},
|
|
1344
|
+
"text-secondary": {
|
|
1345
|
+
"type": "color",
|
|
1346
|
+
"value": "#13191e"
|
|
1347
|
+
},
|
|
1348
|
+
"icon": {
|
|
1349
|
+
"type": "color",
|
|
1350
|
+
"value": "#13191e"
|
|
1351
|
+
},
|
|
1352
|
+
"hover": {
|
|
1353
|
+
"type": "color",
|
|
1354
|
+
"value": "#30ac63"
|
|
1355
|
+
},
|
|
1356
|
+
"active": {
|
|
1357
|
+
"type": "color",
|
|
1358
|
+
"value": "#1da158"
|
|
1359
|
+
}
|
|
1360
|
+
},
|
|
1361
|
+
"red": {
|
|
1362
|
+
"background": {
|
|
1363
|
+
"type": "color",
|
|
1364
|
+
"value": "#bf2a23"
|
|
1365
|
+
},
|
|
1366
|
+
"background-secondary": {
|
|
1367
|
+
"type": "color",
|
|
1368
|
+
"value": "#ffdedb"
|
|
1369
|
+
},
|
|
1370
|
+
"text": {
|
|
1371
|
+
"type": "color",
|
|
1372
|
+
"value": "#ffffff"
|
|
1373
|
+
},
|
|
1374
|
+
"text-secondary": {
|
|
1375
|
+
"type": "color",
|
|
1376
|
+
"value": "#13191e"
|
|
1377
|
+
},
|
|
1378
|
+
"icon": {
|
|
1379
|
+
"type": "color",
|
|
1380
|
+
"value": "#ffffff"
|
|
1381
|
+
},
|
|
1382
|
+
"hover": {
|
|
1383
|
+
"type": "color",
|
|
1384
|
+
"value": "#9a1a19"
|
|
1385
|
+
},
|
|
1386
|
+
"active": {
|
|
1387
|
+
"type": "color",
|
|
1388
|
+
"value": "#840b10"
|
|
1389
|
+
}
|
|
1390
|
+
},
|
|
1391
|
+
"gold": {
|
|
1392
|
+
"background": {
|
|
1393
|
+
"type": "color",
|
|
1394
|
+
"value": "#d8a45f"
|
|
1395
|
+
},
|
|
1396
|
+
"background-secondary": {
|
|
1397
|
+
"type": "color",
|
|
1398
|
+
"value": "#eeeae5"
|
|
1399
|
+
},
|
|
1400
|
+
"text": {
|
|
1401
|
+
"type": "color",
|
|
1402
|
+
"value": "#13191e"
|
|
1403
|
+
},
|
|
1404
|
+
"text-secondary": {
|
|
1405
|
+
"type": "color",
|
|
1406
|
+
"value": "#13191e"
|
|
1407
|
+
},
|
|
1408
|
+
"icon": {
|
|
1409
|
+
"type": "color",
|
|
1410
|
+
"value": "#13191e"
|
|
1411
|
+
},
|
|
1412
|
+
"hover": {
|
|
1413
|
+
"type": "color",
|
|
1414
|
+
"value": "#d29137"
|
|
1415
|
+
},
|
|
1416
|
+
"active": {
|
|
1417
|
+
"type": "color",
|
|
1418
|
+
"value": "#c5832a"
|
|
1419
|
+
}
|
|
1420
|
+
},
|
|
1421
|
+
"yellow": {
|
|
1422
|
+
"background": {
|
|
1423
|
+
"type": "color",
|
|
1424
|
+
"value": "#f09d01"
|
|
1425
|
+
},
|
|
1426
|
+
"background-secondary": {
|
|
1427
|
+
"type": "color",
|
|
1428
|
+
"value": "#ffe2c2"
|
|
1429
|
+
},
|
|
1430
|
+
"text": {
|
|
1431
|
+
"type": "color",
|
|
1432
|
+
"value": "#13191e"
|
|
1433
|
+
},
|
|
1434
|
+
"text-secondary": {
|
|
1435
|
+
"type": "color",
|
|
1436
|
+
"value": "#13191e"
|
|
1437
|
+
},
|
|
1438
|
+
"icon": {
|
|
1439
|
+
"type": "color",
|
|
1440
|
+
"value": "#13191e"
|
|
1441
|
+
},
|
|
1442
|
+
"hover": {
|
|
1443
|
+
"type": "color",
|
|
1444
|
+
"value": "#d38500"
|
|
1445
|
+
},
|
|
1446
|
+
"active": {
|
|
1447
|
+
"type": "color",
|
|
1448
|
+
"value": "#c67a00"
|
|
1449
|
+
}
|
|
1450
|
+
},
|
|
1451
|
+
"orange": {
|
|
1452
|
+
"background": {
|
|
1453
|
+
"type": "color",
|
|
1454
|
+
"value": "#ff7b28"
|
|
1455
|
+
},
|
|
1456
|
+
"background-secondary": {
|
|
1457
|
+
"type": "color",
|
|
1458
|
+
"value": "#ffe0cc"
|
|
1459
|
+
},
|
|
1460
|
+
"text": {
|
|
1461
|
+
"type": "color",
|
|
1462
|
+
"value": "#13191e"
|
|
1463
|
+
},
|
|
1464
|
+
"text-secondary": {
|
|
1465
|
+
"type": "color",
|
|
1466
|
+
"value": "#13191e"
|
|
1467
|
+
},
|
|
1468
|
+
"icon": {
|
|
1469
|
+
"type": "color",
|
|
1470
|
+
"value": "#13191e"
|
|
1471
|
+
},
|
|
1472
|
+
"hover": {
|
|
1473
|
+
"type": "color",
|
|
1474
|
+
"value": "#e76205"
|
|
1475
|
+
},
|
|
1476
|
+
"active": {
|
|
1477
|
+
"type": "color",
|
|
1478
|
+
"value": "#d75001"
|
|
1479
|
+
}
|
|
1480
|
+
},
|
|
1481
|
+
"salmon": {
|
|
1482
|
+
"background": {
|
|
1483
|
+
"type": "color",
|
|
1484
|
+
"value": "#f9945e"
|
|
1485
|
+
},
|
|
1486
|
+
"background-secondary": {
|
|
1487
|
+
"type": "color",
|
|
1488
|
+
"value": "#fedfd8"
|
|
1489
|
+
},
|
|
1490
|
+
"text": {
|
|
1491
|
+
"type": "color",
|
|
1492
|
+
"value": "#13191e"
|
|
1493
|
+
},
|
|
1494
|
+
"text-secondary": {
|
|
1495
|
+
"type": "color",
|
|
1496
|
+
"value": "#13191e"
|
|
1497
|
+
},
|
|
1498
|
+
"icon": {
|
|
1499
|
+
"type": "color",
|
|
1500
|
+
"value": "#13191e"
|
|
1501
|
+
},
|
|
1502
|
+
"hover": {
|
|
1503
|
+
"type": "color",
|
|
1504
|
+
"value": "#e07b4d"
|
|
1505
|
+
},
|
|
1506
|
+
"active": {
|
|
1507
|
+
"type": "color",
|
|
1508
|
+
"value": "#d27146"
|
|
1509
|
+
}
|
|
1510
|
+
},
|
|
1511
|
+
"pink": {
|
|
1512
|
+
"background": {
|
|
1513
|
+
"type": "color",
|
|
1514
|
+
"value": "#e29e9d"
|
|
1515
|
+
},
|
|
1516
|
+
"background-secondary": {
|
|
1517
|
+
"type": "color",
|
|
1518
|
+
"value": "#ffdedb"
|
|
1519
|
+
},
|
|
1520
|
+
"text": {
|
|
1521
|
+
"type": "color",
|
|
1522
|
+
"value": "#13191e"
|
|
1523
|
+
},
|
|
1524
|
+
"text-secondary": {
|
|
1525
|
+
"type": "color",
|
|
1526
|
+
"value": "#13191e"
|
|
1527
|
+
},
|
|
1528
|
+
"icon": {
|
|
1529
|
+
"type": "color",
|
|
1530
|
+
"value": "#13191e"
|
|
1531
|
+
},
|
|
1532
|
+
"hover": {
|
|
1533
|
+
"type": "color",
|
|
1534
|
+
"value": "#ca8588"
|
|
1535
|
+
},
|
|
1536
|
+
"active": {
|
|
1537
|
+
"type": "color",
|
|
1538
|
+
"value": "#bc7a7e"
|
|
1539
|
+
}
|
|
1540
|
+
}
|
|
1541
|
+
},
|
|
913
1542
|
"toolbar": {
|
|
914
1543
|
"background": {
|
|
915
1544
|
"value": "#13191e",
|
|
@@ -969,18 +1598,55 @@
|
|
|
969
1598
|
"type": "color"
|
|
970
1599
|
},
|
|
971
1600
|
"icon": {
|
|
972
|
-
"value": "#
|
|
1601
|
+
"value": "#ffffff",
|
|
973
1602
|
"type": "color"
|
|
974
1603
|
}
|
|
975
1604
|
}
|
|
976
1605
|
},
|
|
977
|
-
"
|
|
978
|
-
"
|
|
979
|
-
|
|
980
|
-
|
|
1606
|
+
"fontFamily": {
|
|
1607
|
+
"body": {
|
|
1608
|
+
"value": "SF Pro Text",
|
|
1609
|
+
"type": "fontFamilies"
|
|
1610
|
+
},
|
|
1611
|
+
"serif": {
|
|
1612
|
+
"value": "Recoleta",
|
|
1613
|
+
"type": "fontFamilies"
|
|
1614
|
+
},
|
|
1615
|
+
"monospace": {
|
|
1616
|
+
"value": "SF Mono",
|
|
1617
|
+
"type": "fontFamilies"
|
|
1618
|
+
}
|
|
981
1619
|
},
|
|
982
1620
|
"fontSize": {
|
|
1621
|
+
"0": {
|
|
1622
|
+
"value": 10,
|
|
1623
|
+
"type": "fontSizes"
|
|
1624
|
+
},
|
|
1625
|
+
"1": {
|
|
1626
|
+
"value": 12,
|
|
1627
|
+
"type": "fontSizes"
|
|
1628
|
+
},
|
|
1629
|
+
"2": {
|
|
1630
|
+
"value": 14,
|
|
1631
|
+
"type": "fontSizes"
|
|
1632
|
+
},
|
|
1633
|
+
"3": {
|
|
1634
|
+
"value": 19,
|
|
1635
|
+
"type": "fontSizes"
|
|
1636
|
+
},
|
|
1637
|
+
"4": {
|
|
1638
|
+
"value": 32,
|
|
1639
|
+
"type": "fontSizes"
|
|
1640
|
+
},
|
|
1641
|
+
"5": {
|
|
1642
|
+
"value": 40,
|
|
1643
|
+
"type": "fontSizes"
|
|
1644
|
+
},
|
|
983
1645
|
"static": {
|
|
1646
|
+
"0": {
|
|
1647
|
+
"value": 10,
|
|
1648
|
+
"type": "fontSizes"
|
|
1649
|
+
},
|
|
984
1650
|
"1": {
|
|
985
1651
|
"value": 12,
|
|
986
1652
|
"type": "fontSizes",
|
|
@@ -1005,545 +1671,675 @@
|
|
|
1005
1671
|
},
|
|
1006
1672
|
"figma": {
|
|
1007
1673
|
"1": {
|
|
1008
|
-
"
|
|
1009
|
-
"value": 12.
|
|
1010
|
-
"type": "
|
|
1011
|
-
|
|
1012
|
-
|
|
1013
|
-
|
|
1014
|
-
"
|
|
1015
|
-
|
|
1016
|
-
|
|
1017
|
-
|
|
1018
|
-
"
|
|
1019
|
-
|
|
1020
|
-
|
|
1021
|
-
|
|
1022
|
-
"
|
|
1023
|
-
|
|
1024
|
-
|
|
1025
|
-
|
|
1026
|
-
"
|
|
1027
|
-
|
|
1674
|
+
"S": {
|
|
1675
|
+
"value": 12.29,
|
|
1676
|
+
"type": "number"
|
|
1677
|
+
},
|
|
1678
|
+
"M": {
|
|
1679
|
+
"value": 11.25,
|
|
1680
|
+
"type": "number"
|
|
1681
|
+
},
|
|
1682
|
+
"L": {
|
|
1683
|
+
"value": 10.03,
|
|
1684
|
+
"type": "number"
|
|
1685
|
+
},
|
|
1686
|
+
"XL": {
|
|
1687
|
+
"value": 9.21,
|
|
1688
|
+
"type": "number"
|
|
1689
|
+
},
|
|
1690
|
+
"XXL": {
|
|
1691
|
+
"value": 8.52,
|
|
1692
|
+
"type": "number"
|
|
1693
|
+
},
|
|
1694
|
+
"MAX": {
|
|
1695
|
+
"value": 8.17,
|
|
1696
|
+
"type": "number"
|
|
1028
1697
|
}
|
|
1029
1698
|
},
|
|
1030
1699
|
"2": {
|
|
1031
|
-
"
|
|
1032
|
-
"value": 13.
|
|
1033
|
-
"type": "
|
|
1700
|
+
"S": {
|
|
1701
|
+
"value": 13.12,
|
|
1702
|
+
"type": "number"
|
|
1703
|
+
},
|
|
1704
|
+
"M": {
|
|
1705
|
+
"value": 12.28,
|
|
1706
|
+
"type": "number"
|
|
1034
1707
|
},
|
|
1035
|
-
"
|
|
1036
|
-
"value":
|
|
1037
|
-
"type": "
|
|
1708
|
+
"L": {
|
|
1709
|
+
"value": 11.3,
|
|
1710
|
+
"type": "number"
|
|
1038
1711
|
},
|
|
1039
|
-
"
|
|
1040
|
-
"value":
|
|
1041
|
-
"type": "
|
|
1712
|
+
"XL": {
|
|
1713
|
+
"value": 10.64,
|
|
1714
|
+
"type": "number"
|
|
1042
1715
|
},
|
|
1043
|
-
"
|
|
1044
|
-
"value": 10.
|
|
1045
|
-
"type": "
|
|
1716
|
+
"XXL": {
|
|
1717
|
+
"value": 10.08,
|
|
1718
|
+
"type": "number"
|
|
1046
1719
|
},
|
|
1047
|
-
"
|
|
1048
|
-
"value": 9.
|
|
1049
|
-
"type": "
|
|
1720
|
+
"MAX": {
|
|
1721
|
+
"value": 9.92,
|
|
1722
|
+
"type": "number"
|
|
1050
1723
|
}
|
|
1051
1724
|
},
|
|
1052
1725
|
"3": {
|
|
1053
|
-
"
|
|
1054
|
-
"value": 14.
|
|
1055
|
-
"type": "
|
|
1726
|
+
"S": {
|
|
1727
|
+
"value": 14.02,
|
|
1728
|
+
"type": "number"
|
|
1729
|
+
},
|
|
1730
|
+
"M": {
|
|
1731
|
+
"value": 13.44,
|
|
1732
|
+
"type": "number"
|
|
1056
1733
|
},
|
|
1057
|
-
"
|
|
1058
|
-
"value":
|
|
1059
|
-
"type": "
|
|
1734
|
+
"L": {
|
|
1735
|
+
"value": 12.78,
|
|
1736
|
+
"type": "number"
|
|
1060
1737
|
},
|
|
1061
|
-
"
|
|
1062
|
-
"value": 12.
|
|
1063
|
-
"type": "
|
|
1738
|
+
"XL": {
|
|
1739
|
+
"value": 12.33,
|
|
1740
|
+
"type": "number"
|
|
1064
1741
|
},
|
|
1065
|
-
"
|
|
1066
|
-
"value":
|
|
1067
|
-
"type": "
|
|
1742
|
+
"XXL": {
|
|
1743
|
+
"value": 11.95,
|
|
1744
|
+
"type": "number"
|
|
1068
1745
|
},
|
|
1069
|
-
"
|
|
1070
|
-
"value": 11.
|
|
1071
|
-
"type": "
|
|
1746
|
+
"MAX": {
|
|
1747
|
+
"value": 11.84,
|
|
1748
|
+
"type": "number"
|
|
1072
1749
|
}
|
|
1073
1750
|
},
|
|
1074
1751
|
"4": {
|
|
1075
|
-
"
|
|
1076
|
-
"value": 15,
|
|
1077
|
-
"type": "
|
|
1752
|
+
"S": {
|
|
1753
|
+
"value": 15.01,
|
|
1754
|
+
"type": "number"
|
|
1078
1755
|
},
|
|
1079
|
-
"
|
|
1080
|
-
"value": 14.
|
|
1081
|
-
"type": "
|
|
1756
|
+
"M": {
|
|
1757
|
+
"value": 14.81,
|
|
1758
|
+
"type": "number"
|
|
1082
1759
|
},
|
|
1083
|
-
"
|
|
1084
|
-
"value": 14.
|
|
1085
|
-
"type": "
|
|
1760
|
+
"L": {
|
|
1761
|
+
"value": 14.57,
|
|
1762
|
+
"type": "number"
|
|
1086
1763
|
},
|
|
1087
|
-
"
|
|
1088
|
-
"value": 14.
|
|
1089
|
-
"type": "
|
|
1764
|
+
"XL": {
|
|
1765
|
+
"value": 14.41,
|
|
1766
|
+
"type": "number"
|
|
1090
1767
|
},
|
|
1091
|
-
"
|
|
1092
|
-
"value": 14.
|
|
1093
|
-
"type": "
|
|
1768
|
+
"XXL": {
|
|
1769
|
+
"value": 14.28,
|
|
1770
|
+
"type": "number"
|
|
1771
|
+
},
|
|
1772
|
+
"MAX": {
|
|
1773
|
+
"value": 14.24,
|
|
1774
|
+
"type": "number"
|
|
1094
1775
|
}
|
|
1095
1776
|
},
|
|
1096
1777
|
"5": {
|
|
1097
|
-
"
|
|
1778
|
+
"S": {
|
|
1098
1779
|
"value": 16,
|
|
1099
|
-
"type": "
|
|
1780
|
+
"type": "number"
|
|
1781
|
+
},
|
|
1782
|
+
"M": {
|
|
1783
|
+
"value": 16.2,
|
|
1784
|
+
"type": "number"
|
|
1100
1785
|
},
|
|
1101
|
-
"
|
|
1102
|
-
"value": 16.
|
|
1103
|
-
"type": "
|
|
1786
|
+
"L": {
|
|
1787
|
+
"value": 16.52,
|
|
1788
|
+
"type": "number"
|
|
1104
1789
|
},
|
|
1105
|
-
"
|
|
1106
|
-
"value": 16.
|
|
1107
|
-
"type": "
|
|
1790
|
+
"XL": {
|
|
1791
|
+
"value": 16.73,
|
|
1792
|
+
"type": "number"
|
|
1108
1793
|
},
|
|
1109
|
-
"
|
|
1110
|
-
"value": 16.
|
|
1111
|
-
"type": "
|
|
1794
|
+
"XXL": {
|
|
1795
|
+
"value": 16.91,
|
|
1796
|
+
"type": "number"
|
|
1112
1797
|
},
|
|
1113
|
-
"
|
|
1114
|
-
"value":
|
|
1115
|
-
"type": "
|
|
1798
|
+
"MAX": {
|
|
1799
|
+
"value": 16.96,
|
|
1800
|
+
"type": "number"
|
|
1116
1801
|
}
|
|
1117
1802
|
},
|
|
1118
1803
|
"6": {
|
|
1119
|
-
"
|
|
1120
|
-
"value": 17.
|
|
1121
|
-
"type": "
|
|
1804
|
+
"S": {
|
|
1805
|
+
"value": 17.12,
|
|
1806
|
+
"type": "number"
|
|
1122
1807
|
},
|
|
1123
|
-
"
|
|
1124
|
-
"value": 17.
|
|
1125
|
-
"type": "
|
|
1808
|
+
"M": {
|
|
1809
|
+
"value": 17.96,
|
|
1810
|
+
"type": "number"
|
|
1126
1811
|
},
|
|
1127
|
-
"
|
|
1128
|
-
"value": 18.
|
|
1129
|
-
"type": "
|
|
1812
|
+
"L": {
|
|
1813
|
+
"value": 18.94,
|
|
1814
|
+
"type": "number"
|
|
1130
1815
|
},
|
|
1131
|
-
"
|
|
1132
|
-
"value": 19.
|
|
1133
|
-
"type": "
|
|
1816
|
+
"XL": {
|
|
1817
|
+
"value": 19.6,
|
|
1818
|
+
"type": "number"
|
|
1134
1819
|
},
|
|
1135
|
-
"
|
|
1136
|
-
"value": 20.
|
|
1137
|
-
"type": "
|
|
1820
|
+
"XXL": {
|
|
1821
|
+
"value": 20.16,
|
|
1822
|
+
"type": "number"
|
|
1823
|
+
},
|
|
1824
|
+
"MAX": {
|
|
1825
|
+
"value": 20.44,
|
|
1826
|
+
"type": "number"
|
|
1138
1827
|
}
|
|
1139
1828
|
},
|
|
1140
1829
|
"7": {
|
|
1141
|
-
"
|
|
1142
|
-
"value": 18.
|
|
1143
|
-
"type": "
|
|
1830
|
+
"S": {
|
|
1831
|
+
"value": 18.24,
|
|
1832
|
+
"type": "number"
|
|
1833
|
+
},
|
|
1834
|
+
"M": {
|
|
1835
|
+
"value": 19.72,
|
|
1836
|
+
"type": "number"
|
|
1144
1837
|
},
|
|
1145
|
-
"
|
|
1146
|
-
"value":
|
|
1147
|
-
"type": "
|
|
1838
|
+
"L": {
|
|
1839
|
+
"value": 21.57,
|
|
1840
|
+
"type": "number"
|
|
1148
1841
|
},
|
|
1149
|
-
"
|
|
1150
|
-
"value":
|
|
1151
|
-
"type": "
|
|
1842
|
+
"XL": {
|
|
1843
|
+
"value": 22.81,
|
|
1844
|
+
"type": "number"
|
|
1152
1845
|
},
|
|
1153
|
-
"
|
|
1154
|
-
"value":
|
|
1155
|
-
"type": "
|
|
1846
|
+
"XXL": {
|
|
1847
|
+
"value": 23.86,
|
|
1848
|
+
"type": "number"
|
|
1156
1849
|
},
|
|
1157
|
-
"
|
|
1158
|
-
"value": 24.
|
|
1159
|
-
"type": "
|
|
1850
|
+
"MAX": {
|
|
1851
|
+
"value": 24.39,
|
|
1852
|
+
"type": "number"
|
|
1160
1853
|
}
|
|
1161
1854
|
},
|
|
1162
1855
|
"8": {
|
|
1163
|
-
"
|
|
1164
|
-
"value": 19.
|
|
1165
|
-
"type": "
|
|
1856
|
+
"S": {
|
|
1857
|
+
"value": 19.52,
|
|
1858
|
+
"type": "number"
|
|
1859
|
+
},
|
|
1860
|
+
"M": {
|
|
1861
|
+
"value": 22.04,
|
|
1862
|
+
"type": "number"
|
|
1166
1863
|
},
|
|
1167
|
-
"
|
|
1168
|
-
"value":
|
|
1169
|
-
"type": "
|
|
1864
|
+
"L": {
|
|
1865
|
+
"value": 24.98,
|
|
1866
|
+
"type": "number"
|
|
1170
1867
|
},
|
|
1171
|
-
"
|
|
1172
|
-
"value":
|
|
1173
|
-
"type": "
|
|
1868
|
+
"XL": {
|
|
1869
|
+
"value": 26.96,
|
|
1870
|
+
"type": "number"
|
|
1174
1871
|
},
|
|
1175
|
-
"
|
|
1176
|
-
"value":
|
|
1177
|
-
"type": "
|
|
1872
|
+
"XXL": {
|
|
1873
|
+
"value": 28.64,
|
|
1874
|
+
"type": "number"
|
|
1178
1875
|
},
|
|
1179
|
-
"
|
|
1180
|
-
"value": 29.
|
|
1181
|
-
"type": "
|
|
1876
|
+
"MAX": {
|
|
1877
|
+
"value": 29.44,
|
|
1878
|
+
"type": "number"
|
|
1182
1879
|
}
|
|
1183
1880
|
},
|
|
1184
1881
|
"9": {
|
|
1185
|
-
"
|
|
1186
|
-
"value": 20.
|
|
1187
|
-
"type": "
|
|
1882
|
+
"S": {
|
|
1883
|
+
"value": 20.8,
|
|
1884
|
+
"type": "number"
|
|
1188
1885
|
},
|
|
1189
|
-
"
|
|
1190
|
-
"value":
|
|
1191
|
-
"type": "
|
|
1886
|
+
"M": {
|
|
1887
|
+
"value": 24.43,
|
|
1888
|
+
"type": "number"
|
|
1192
1889
|
},
|
|
1193
|
-
"
|
|
1194
|
-
"value":
|
|
1195
|
-
"type": "
|
|
1890
|
+
"L": {
|
|
1891
|
+
"value": 28.7,
|
|
1892
|
+
"type": "number"
|
|
1196
1893
|
},
|
|
1197
|
-
"
|
|
1198
|
-
"value":
|
|
1199
|
-
"type": "
|
|
1894
|
+
"XL": {
|
|
1895
|
+
"value": 31.58,
|
|
1896
|
+
"type": "number"
|
|
1200
1897
|
},
|
|
1201
|
-
"
|
|
1202
|
-
"value":
|
|
1203
|
-
"type": "
|
|
1898
|
+
"XXL": {
|
|
1899
|
+
"value": 34.02,
|
|
1900
|
+
"type": "number"
|
|
1901
|
+
},
|
|
1902
|
+
"MAX": {
|
|
1903
|
+
"value": 35.2,
|
|
1904
|
+
"type": "number"
|
|
1204
1905
|
}
|
|
1205
1906
|
},
|
|
1206
1907
|
"10": {
|
|
1207
|
-
"
|
|
1208
|
-
"value": 22.
|
|
1209
|
-
"type": "
|
|
1908
|
+
"S": {
|
|
1909
|
+
"value": 22.14,
|
|
1910
|
+
"type": "number"
|
|
1911
|
+
},
|
|
1912
|
+
"M": {
|
|
1913
|
+
"value": 27.25,
|
|
1914
|
+
"type": "number"
|
|
1210
1915
|
},
|
|
1211
|
-
"
|
|
1212
|
-
"value":
|
|
1213
|
-
"type": "
|
|
1916
|
+
"L": {
|
|
1917
|
+
"value": 33.21,
|
|
1918
|
+
"type": "number"
|
|
1214
1919
|
},
|
|
1215
|
-
"
|
|
1216
|
-
"value":
|
|
1217
|
-
"type": "
|
|
1920
|
+
"XL": {
|
|
1921
|
+
"value": 37.22,
|
|
1922
|
+
"type": "number"
|
|
1218
1923
|
},
|
|
1219
|
-
"
|
|
1220
|
-
"value":
|
|
1221
|
-
"type": "
|
|
1924
|
+
"XXL": {
|
|
1925
|
+
"value": 40.63,
|
|
1926
|
+
"type": "number"
|
|
1222
1927
|
},
|
|
1223
|
-
"
|
|
1224
|
-
"value": 42.
|
|
1225
|
-
"type": "
|
|
1928
|
+
"MAX": {
|
|
1929
|
+
"value": 42.24,
|
|
1930
|
+
"type": "number"
|
|
1226
1931
|
}
|
|
1227
1932
|
},
|
|
1228
1933
|
"11": {
|
|
1229
|
-
"
|
|
1230
|
-
"value": 23.
|
|
1231
|
-
"type": "
|
|
1934
|
+
"S": {
|
|
1935
|
+
"value": 23.68,
|
|
1936
|
+
"type": "number"
|
|
1937
|
+
},
|
|
1938
|
+
"M": {
|
|
1939
|
+
"value": 30.5,
|
|
1940
|
+
"type": "number"
|
|
1232
1941
|
},
|
|
1233
|
-
"
|
|
1234
|
-
"value":
|
|
1235
|
-
"type": "
|
|
1942
|
+
"L": {
|
|
1943
|
+
"value": 38.5,
|
|
1944
|
+
"type": "number"
|
|
1236
1945
|
},
|
|
1237
|
-
"
|
|
1238
|
-
"value":
|
|
1239
|
-
"type": "
|
|
1946
|
+
"XL": {
|
|
1947
|
+
"value": 43.88,
|
|
1948
|
+
"type": "number"
|
|
1240
1949
|
},
|
|
1241
|
-
"
|
|
1242
|
-
"value":
|
|
1243
|
-
"type": "
|
|
1950
|
+
"XXL": {
|
|
1951
|
+
"value": 48.45,
|
|
1952
|
+
"type": "number"
|
|
1244
1953
|
},
|
|
1245
|
-
"
|
|
1246
|
-
"value": 50.
|
|
1247
|
-
"type": "
|
|
1954
|
+
"MAX": {
|
|
1955
|
+
"value": 50.72,
|
|
1956
|
+
"type": "number"
|
|
1248
1957
|
}
|
|
1249
1958
|
},
|
|
1250
1959
|
"12": {
|
|
1251
|
-
"
|
|
1252
|
-
"value": 25.
|
|
1253
|
-
"type": "
|
|
1960
|
+
"S": {
|
|
1961
|
+
"value": 25.25,
|
|
1962
|
+
"type": "number"
|
|
1254
1963
|
},
|
|
1255
|
-
"
|
|
1256
|
-
"value":
|
|
1257
|
-
"type": "
|
|
1964
|
+
"M": {
|
|
1965
|
+
"value": 34.29,
|
|
1966
|
+
"type": "number"
|
|
1258
1967
|
},
|
|
1259
|
-
"
|
|
1260
|
-
"value":
|
|
1261
|
-
"type": "
|
|
1968
|
+
"L": {
|
|
1969
|
+
"value": 44.83,
|
|
1970
|
+
"type": "number"
|
|
1262
1971
|
},
|
|
1263
|
-
"
|
|
1264
|
-
"value":
|
|
1265
|
-
"type": "
|
|
1972
|
+
"XL": {
|
|
1973
|
+
"value": 51.93,
|
|
1974
|
+
"type": "number"
|
|
1266
1975
|
},
|
|
1267
|
-
"
|
|
1268
|
-
"value":
|
|
1269
|
-
"type": "
|
|
1976
|
+
"XXL": {
|
|
1977
|
+
"value": 57.96,
|
|
1978
|
+
"type": "number"
|
|
1979
|
+
},
|
|
1980
|
+
"MAX": {
|
|
1981
|
+
"value": 60.96,
|
|
1982
|
+
"type": "number"
|
|
1270
1983
|
}
|
|
1271
1984
|
},
|
|
1272
1985
|
"13": {
|
|
1273
|
-
"
|
|
1986
|
+
"S": {
|
|
1274
1987
|
"value": 26.88,
|
|
1275
|
-
"type": "
|
|
1988
|
+
"type": "number"
|
|
1989
|
+
},
|
|
1990
|
+
"M": {
|
|
1991
|
+
"value": 38.51,
|
|
1992
|
+
"type": "number"
|
|
1276
1993
|
},
|
|
1277
|
-
"
|
|
1278
|
-
"value":
|
|
1279
|
-
"type": "
|
|
1994
|
+
"L": {
|
|
1995
|
+
"value": 52.15,
|
|
1996
|
+
"type": "number"
|
|
1280
1997
|
},
|
|
1281
|
-
"
|
|
1282
|
-
"value":
|
|
1283
|
-
"type": "
|
|
1998
|
+
"XL": {
|
|
1999
|
+
"value": 61.34,
|
|
2000
|
+
"type": "number"
|
|
1284
2001
|
},
|
|
1285
|
-
"
|
|
1286
|
-
"value":
|
|
1287
|
-
"type": "
|
|
2002
|
+
"XXL": {
|
|
2003
|
+
"value": 69.13,
|
|
2004
|
+
"type": "number"
|
|
1288
2005
|
},
|
|
1289
|
-
"
|
|
1290
|
-
"value": 73.
|
|
1291
|
-
"type": "
|
|
2006
|
+
"MAX": {
|
|
2007
|
+
"value": 73.03,
|
|
2008
|
+
"type": "number"
|
|
1292
2009
|
}
|
|
1293
2010
|
},
|
|
1294
2011
|
"14": {
|
|
1295
|
-
"
|
|
1296
|
-
"value": 28.
|
|
1297
|
-
"type": "
|
|
2012
|
+
"S": {
|
|
2013
|
+
"value": 28.64,
|
|
2014
|
+
"type": "number"
|
|
2015
|
+
},
|
|
2016
|
+
"M": {
|
|
2017
|
+
"value": 43.59,
|
|
2018
|
+
"type": "number"
|
|
1298
2019
|
},
|
|
1299
|
-
"
|
|
1300
|
-
"value":
|
|
1301
|
-
"type": "
|
|
2020
|
+
"L": {
|
|
2021
|
+
"value": 61.04,
|
|
2022
|
+
"type": "number"
|
|
1302
2023
|
},
|
|
1303
|
-
"
|
|
1304
|
-
"value":
|
|
1305
|
-
"type": "
|
|
2024
|
+
"XL": {
|
|
2025
|
+
"value": 72.78,
|
|
2026
|
+
"type": "number"
|
|
1306
2027
|
},
|
|
1307
|
-
"
|
|
1308
|
-
"value":
|
|
1309
|
-
"type": "
|
|
2028
|
+
"XXL": {
|
|
2029
|
+
"value": 82.75,
|
|
2030
|
+
"type": "number"
|
|
1310
2031
|
},
|
|
1311
|
-
"
|
|
1312
|
-
"value": 87.
|
|
1313
|
-
"type": "
|
|
2032
|
+
"MAX": {
|
|
2033
|
+
"value": 87.68,
|
|
2034
|
+
"type": "number"
|
|
1314
2035
|
}
|
|
1315
2036
|
},
|
|
1316
2037
|
"15": {
|
|
1317
|
-
"
|
|
1318
|
-
"value": 30.
|
|
1319
|
-
"type": "
|
|
2038
|
+
"S": {
|
|
2039
|
+
"value": 30.62,
|
|
2040
|
+
"type": "number"
|
|
1320
2041
|
},
|
|
1321
|
-
"
|
|
1322
|
-
"value":
|
|
1323
|
-
"type": "
|
|
2042
|
+
"M": {
|
|
2043
|
+
"value": 49.51,
|
|
2044
|
+
"type": "number"
|
|
1324
2045
|
},
|
|
1325
|
-
"
|
|
1326
|
-
"value":
|
|
1327
|
-
"type": "
|
|
2046
|
+
"L": {
|
|
2047
|
+
"value": 71.54,
|
|
2048
|
+
"type": "number"
|
|
1328
2049
|
},
|
|
1329
|
-
"
|
|
1330
|
-
"value":
|
|
1331
|
-
"type": "
|
|
2050
|
+
"XL": {
|
|
2051
|
+
"value": 86.37,
|
|
2052
|
+
"type": "number"
|
|
1332
2053
|
},
|
|
1333
|
-
"
|
|
1334
|
-
"value":
|
|
1335
|
-
"type": "
|
|
1336
|
-
}
|
|
1337
|
-
|
|
1338
|
-
|
|
1339
|
-
|
|
1340
|
-
|
|
1341
|
-
"value": "clamp(0.51rem, calc(0.83rem + -0.31vw), 0.77rem)",
|
|
1342
|
-
"type": "fontSizes",
|
|
1343
|
-
"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."
|
|
1344
|
-
},
|
|
1345
|
-
"2": {
|
|
1346
|
-
"value": "clamp(0.62rem, calc(0.87rem + -0.25vw), 0.82rem)",
|
|
1347
|
-
"type": "fontSizes"
|
|
1348
|
-
},
|
|
1349
|
-
"3": {
|
|
1350
|
-
"value": "clamp(0.74rem, calc(0.91rem + -0.17vw), 0.88rem)",
|
|
1351
|
-
"type": "fontSizes"
|
|
1352
|
-
},
|
|
1353
|
-
"4": {
|
|
1354
|
-
"value": "clamp(0.89rem, calc(0.95rem + -0.06vw), 0.94rem)",
|
|
1355
|
-
"type": "fontSizes"
|
|
1356
|
-
},
|
|
1357
|
-
"5": {
|
|
1358
|
-
"value": "clamp(1.00rem, calc(0.98rem + 0.08vw), 1.06rem)",
|
|
1359
|
-
"type": "fontSizes"
|
|
1360
|
-
},
|
|
1361
|
-
"6": {
|
|
1362
|
-
"value": "clamp(1.07rem, calc(1.02rem + 0.25vw), 1.28rem)",
|
|
1363
|
-
"type": "fontSizes"
|
|
1364
|
-
},
|
|
1365
|
-
"7": {
|
|
1366
|
-
"value": "clamp(1.14rem, calc(1.04rem + 0.47vw), 1.53rem)",
|
|
1367
|
-
"type": "fontSizes"
|
|
1368
|
-
},
|
|
1369
|
-
"8": {
|
|
1370
|
-
"value": "clamp(1.22rem, calc(1.07rem + 0.75vw), 1.84rem)",
|
|
1371
|
-
"type": "fontSizes"
|
|
1372
|
-
},
|
|
1373
|
-
"9": {
|
|
1374
|
-
"value": "clamp(1.30rem, calc(1.08rem + 1.09vw), 2.20rem)",
|
|
1375
|
-
"type": "fontSizes"
|
|
1376
|
-
},
|
|
1377
|
-
"10": {
|
|
1378
|
-
"value": "clamp(1.38rem, calc(1.08rem + 1.52vw), 2.64rem)",
|
|
1379
|
-
"type": "fontSizes"
|
|
1380
|
-
},
|
|
1381
|
-
"11": {
|
|
1382
|
-
"value": "clamp(1.48rem, calc(1.07rem + 2.04vw), 3.17rem)",
|
|
1383
|
-
"type": "fontSizes"
|
|
1384
|
-
},
|
|
1385
|
-
"12": {
|
|
1386
|
-
"value": "clamp(1.57rem, calc(1.04rem + 2.69vw), 3.81rem)",
|
|
1387
|
-
"type": "fontSizes"
|
|
1388
|
-
},
|
|
1389
|
-
"13": {
|
|
1390
|
-
"value": "clamp(1.68rem, calc(0.98rem + 3.48vw), 4.57rem)",
|
|
1391
|
-
"type": "fontSizes"
|
|
1392
|
-
},
|
|
1393
|
-
"14": {
|
|
1394
|
-
"value": "clamp(1.79rem, calc(0.90rem + 4.45vw), 5.48rem)",
|
|
1395
|
-
"type": "fontSizes"
|
|
1396
|
-
},
|
|
1397
|
-
"15": {
|
|
1398
|
-
"value": "clamp(1.91rem, calc(0.79rem + 5.62vw), 6.58rem)",
|
|
1399
|
-
"type": "fontSizes"
|
|
1400
|
-
}
|
|
1401
|
-
}
|
|
1402
|
-
},
|
|
1403
|
-
"borderRadius": {
|
|
1404
|
-
"static": {
|
|
1405
|
-
"1": {
|
|
1406
|
-
"value": 4,
|
|
1407
|
-
"type": "borderRadius"
|
|
1408
|
-
},
|
|
1409
|
-
"2": {
|
|
1410
|
-
"value": 8,
|
|
1411
|
-
"type": "borderRadius"
|
|
1412
|
-
},
|
|
1413
|
-
"3": {
|
|
1414
|
-
"value": 16,
|
|
1415
|
-
"type": "borderRadius"
|
|
1416
|
-
},
|
|
1417
|
-
"4": {
|
|
1418
|
-
"value": 32,
|
|
1419
|
-
"type": "borderRadius"
|
|
1420
|
-
},
|
|
1421
|
-
"5": {
|
|
1422
|
-
"value": 40,
|
|
1423
|
-
"type": "borderRadius"
|
|
1424
|
-
},
|
|
1425
|
-
"6": {
|
|
1426
|
-
"value": 56,
|
|
1427
|
-
"type": "borderRadius"
|
|
1428
|
-
}
|
|
1429
|
-
},
|
|
1430
|
-
"responsive": {
|
|
1431
|
-
"3-5": {
|
|
1432
|
-
"value": "clamp(1.00rem, calc(0.64rem + 1.81vw), 2.50rem)",
|
|
1433
|
-
"type": "borderRadius"
|
|
1434
|
-
},
|
|
1435
|
-
"4-6": {
|
|
1436
|
-
"value": "clamp(2.00rem, calc(1.64rem + 1.81vw), 3.50rem)",
|
|
1437
|
-
"type": "borderRadius"
|
|
1438
|
-
}
|
|
1439
|
-
}
|
|
1440
|
-
},
|
|
1441
|
-
"space": {
|
|
1442
|
-
"static": {
|
|
1443
|
-
"0": {
|
|
1444
|
-
"value": 2.08,
|
|
1445
|
-
"type": "spacing"
|
|
2054
|
+
"XXL": {
|
|
2055
|
+
"value": 98.96,
|
|
2056
|
+
"type": "number"
|
|
2057
|
+
},
|
|
2058
|
+
"MAX": {
|
|
2059
|
+
"value": 105.26,
|
|
2060
|
+
"type": "number"
|
|
2061
|
+
}
|
|
1446
2062
|
},
|
|
2063
|
+
"12b": {
|
|
2064
|
+
"S": {
|
|
2065
|
+
"value": 48,
|
|
2066
|
+
"type": "number"
|
|
2067
|
+
},
|
|
2068
|
+
"M": {
|
|
2069
|
+
"value": 51.02,
|
|
2070
|
+
"type": "number"
|
|
2071
|
+
},
|
|
2072
|
+
"L": {
|
|
2073
|
+
"value": 54.55,
|
|
2074
|
+
"type": "number"
|
|
2075
|
+
},
|
|
2076
|
+
"XL": {
|
|
2077
|
+
"value": 56.93,
|
|
2078
|
+
"type": "number"
|
|
2079
|
+
},
|
|
2080
|
+
"XXL": {
|
|
2081
|
+
"value": 58.94,
|
|
2082
|
+
"type": "number"
|
|
2083
|
+
},
|
|
2084
|
+
"MAX": {
|
|
2085
|
+
"value": 59.95,
|
|
2086
|
+
"type": "number"
|
|
2087
|
+
}
|
|
2088
|
+
}
|
|
2089
|
+
},
|
|
2090
|
+
"responsive": {
|
|
1447
2091
|
"1": {
|
|
1448
|
-
"value":
|
|
1449
|
-
"type": "
|
|
2092
|
+
"value": "clamp(0.51rem, calc(0.83rem + -0.31vw), 0.77rem)",
|
|
2093
|
+
"type": "fontSizes",
|
|
2094
|
+
"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."
|
|
1450
2095
|
},
|
|
1451
2096
|
"2": {
|
|
1452
|
-
"value":
|
|
1453
|
-
"type": "
|
|
2097
|
+
"value": "clamp(0.62rem, calc(0.87rem + -0.25vw), 0.82rem)",
|
|
2098
|
+
"type": "fontSizes"
|
|
1454
2099
|
},
|
|
1455
2100
|
"3": {
|
|
1456
|
-
"value":
|
|
1457
|
-
"type": "
|
|
2101
|
+
"value": "clamp(0.74rem, calc(0.91rem + -0.17vw), 0.88rem)",
|
|
2102
|
+
"type": "fontSizes"
|
|
1458
2103
|
},
|
|
1459
2104
|
"4": {
|
|
1460
|
-
"value":
|
|
1461
|
-
"type": "
|
|
2105
|
+
"value": "clamp(0.89rem, calc(0.95rem + -0.06vw), 0.94rem)",
|
|
2106
|
+
"type": "fontSizes"
|
|
1462
2107
|
},
|
|
1463
2108
|
"5": {
|
|
1464
|
-
"value":
|
|
1465
|
-
"type": "
|
|
2109
|
+
"value": "clamp(1.00rem, calc(0.98rem + 0.08vw), 1.06rem)",
|
|
2110
|
+
"type": "fontSizes"
|
|
1466
2111
|
},
|
|
1467
2112
|
"6": {
|
|
1468
|
-
"value":
|
|
1469
|
-
"type": "
|
|
2113
|
+
"value": "clamp(1.07rem, calc(1.02rem + 0.25vw), 1.28rem)",
|
|
2114
|
+
"type": "fontSizes"
|
|
1470
2115
|
},
|
|
1471
2116
|
"7": {
|
|
1472
|
-
"value":
|
|
1473
|
-
"type": "
|
|
2117
|
+
"value": "clamp(1.14rem, calc(1.04rem + 0.47vw), 1.53rem)",
|
|
2118
|
+
"type": "fontSizes"
|
|
1474
2119
|
},
|
|
1475
2120
|
"8": {
|
|
1476
|
-
"value":
|
|
1477
|
-
"type": "
|
|
2121
|
+
"value": "clamp(1.22rem, calc(1.07rem + 0.75vw), 1.84rem)",
|
|
2122
|
+
"type": "fontSizes"
|
|
1478
2123
|
},
|
|
1479
2124
|
"9": {
|
|
1480
|
-
"value":
|
|
1481
|
-
"type": "
|
|
2125
|
+
"value": "clamp(1.30rem, calc(1.08rem + 1.09vw), 2.20rem)",
|
|
2126
|
+
"type": "fontSizes"
|
|
1482
2127
|
},
|
|
1483
2128
|
"10": {
|
|
1484
|
-
"value":
|
|
1485
|
-
"type": "
|
|
1486
|
-
}
|
|
1487
|
-
},
|
|
1488
|
-
"responsive": {
|
|
1489
|
-
"0-1": {
|
|
1490
|
-
"value": "clamp(0.13rem, calc(0.09rem + 0.15vw), 0.25rem)",
|
|
1491
|
-
"type": "spacing"
|
|
1492
|
-
},
|
|
1493
|
-
"1-2": {
|
|
1494
|
-
"value": "clamp(0.25rem, calc(0.19rem + 0.30vw), 0.50rem)",
|
|
1495
|
-
"type": "spacing"
|
|
1496
|
-
},
|
|
1497
|
-
"2-3": {
|
|
1498
|
-
"value": "clamp(0.50rem, calc(0.44rem + 0.30vw), 0.75rem)",
|
|
1499
|
-
"type": "spacing"
|
|
2129
|
+
"value": "clamp(1.38rem, calc(1.08rem + 1.52vw), 2.64rem)",
|
|
2130
|
+
"type": "fontSizes"
|
|
1500
2131
|
},
|
|
1501
|
-
"
|
|
1502
|
-
"value": "clamp(
|
|
1503
|
-
"type": "
|
|
2132
|
+
"11": {
|
|
2133
|
+
"value": "clamp(1.48rem, calc(1.07rem + 2.04vw), 3.17rem)",
|
|
2134
|
+
"type": "fontSizes"
|
|
1504
2135
|
},
|
|
1505
|
-
"
|
|
1506
|
-
"value": "clamp(1.
|
|
1507
|
-
"type": "
|
|
2136
|
+
"12": {
|
|
2137
|
+
"value": "clamp(1.57rem, calc(1.04rem + 2.69vw), 3.81rem)",
|
|
2138
|
+
"type": "fontSizes"
|
|
1508
2139
|
},
|
|
1509
|
-
"
|
|
1510
|
-
"value": "clamp(1.
|
|
1511
|
-
"type": "
|
|
2140
|
+
"13": {
|
|
2141
|
+
"value": "clamp(1.68rem, calc(0.98rem + 3.48vw), 4.57rem)",
|
|
2142
|
+
"type": "fontSizes"
|
|
1512
2143
|
},
|
|
1513
|
-
"
|
|
1514
|
-
"value": "clamp(
|
|
1515
|
-
"type": "
|
|
2144
|
+
"14": {
|
|
2145
|
+
"value": "clamp(1.79rem, calc(0.90rem + 4.45vw), 5.48rem)",
|
|
2146
|
+
"type": "fontSizes"
|
|
1516
2147
|
},
|
|
1517
|
-
"
|
|
1518
|
-
"value": "clamp(
|
|
1519
|
-
"type": "
|
|
2148
|
+
"15": {
|
|
2149
|
+
"value": "clamp(1.91rem, calc(0.79rem + 5.62vw), 6.58rem)",
|
|
2150
|
+
"type": "fontSizes"
|
|
1520
2151
|
},
|
|
1521
|
-
"
|
|
1522
|
-
"value": "clamp(
|
|
1523
|
-
"type": "
|
|
2152
|
+
"12b": {
|
|
2153
|
+
"value": "clamp(3.00rem, calc(2.82rem + 0.90vw), 3.75rem)",
|
|
2154
|
+
"type": "fontSizes",
|
|
2155
|
+
"description": "lower contrast token for statistics. "
|
|
2156
|
+
}
|
|
2157
|
+
}
|
|
2158
|
+
},
|
|
2159
|
+
"lineHeight": {
|
|
2160
|
+
"1": {
|
|
2161
|
+
"value": "110%",
|
|
2162
|
+
"type": "lineHeights",
|
|
2163
|
+
"description": "Use only for display."
|
|
2164
|
+
},
|
|
2165
|
+
"2": {
|
|
2166
|
+
"value": "120%",
|
|
2167
|
+
"type": "lineHeights",
|
|
2168
|
+
"description": "Use for larger headings."
|
|
2169
|
+
},
|
|
2170
|
+
"3": {
|
|
2171
|
+
"value": "130%",
|
|
2172
|
+
"type": "lineHeights",
|
|
2173
|
+
"description": "Use for small and medium sized headings."
|
|
2174
|
+
},
|
|
2175
|
+
"4": {
|
|
2176
|
+
"value": "140%",
|
|
2177
|
+
"type": "lineHeights",
|
|
2178
|
+
"description": "Use for body-sized text"
|
|
2179
|
+
},
|
|
2180
|
+
"5": {
|
|
2181
|
+
"value": "150%",
|
|
2182
|
+
"type": "lineHeights",
|
|
2183
|
+
"description": "Use for body-sized text in long-form reading applications."
|
|
2184
|
+
},
|
|
2185
|
+
"body": {
|
|
2186
|
+
"value": "150%",
|
|
2187
|
+
"type": "lineHeights"
|
|
2188
|
+
},
|
|
2189
|
+
"heading": {
|
|
2190
|
+
"value": "113%",
|
|
2191
|
+
"type": "lineHeights"
|
|
2192
|
+
},
|
|
2193
|
+
"description": {
|
|
2194
|
+
"value": "In production, all units are in %.",
|
|
2195
|
+
"type": "other"
|
|
2196
|
+
},
|
|
2197
|
+
"responsive": {
|
|
2198
|
+
"value": "clamp(1.1em, calc(1.25em + -0.4vw), 1.2em)",
|
|
2199
|
+
"type": "lineHeights",
|
|
2200
|
+
"description": "This is the responsive line height for the responsive type sizes."
|
|
2201
|
+
}
|
|
2202
|
+
},
|
|
2203
|
+
"heading": {
|
|
2204
|
+
"1": {
|
|
2205
|
+
"value": {
|
|
2206
|
+
"fontFamily": "Recoleta",
|
|
2207
|
+
"fontWeight": 400,
|
|
2208
|
+
"lineHeight": "135%",
|
|
2209
|
+
"fontSize": 40,
|
|
2210
|
+
"letterSpacing": "-1%"
|
|
1524
2211
|
},
|
|
1525
|
-
"
|
|
1526
|
-
|
|
1527
|
-
|
|
2212
|
+
"type": "typography"
|
|
2213
|
+
},
|
|
2214
|
+
"2": {
|
|
2215
|
+
"value": {
|
|
2216
|
+
"fontFamily": "SF Pro Text",
|
|
2217
|
+
"fontWeight": 500,
|
|
2218
|
+
"lineHeight": "120%",
|
|
2219
|
+
"fontSize": 32,
|
|
2220
|
+
"letterSpacing": "0%"
|
|
1528
2221
|
},
|
|
1529
|
-
"
|
|
1530
|
-
|
|
1531
|
-
|
|
2222
|
+
"type": "typography"
|
|
2223
|
+
},
|
|
2224
|
+
"3": {
|
|
2225
|
+
"value": {
|
|
2226
|
+
"fontFamily": "SF Pro Text",
|
|
2227
|
+
"fontWeight": 500,
|
|
2228
|
+
"lineHeight": "150%",
|
|
2229
|
+
"fontSize": 19,
|
|
2230
|
+
"letterSpacing": "0%"
|
|
1532
2231
|
},
|
|
1533
|
-
"
|
|
1534
|
-
|
|
1535
|
-
|
|
2232
|
+
"type": "typography"
|
|
2233
|
+
},
|
|
2234
|
+
"4": {
|
|
2235
|
+
"value": {
|
|
2236
|
+
"fontFamily": "SF Pro Text",
|
|
2237
|
+
"fontWeight": 500,
|
|
2238
|
+
"lineHeight": "160%",
|
|
2239
|
+
"fontSize": 14,
|
|
2240
|
+
"letterSpacing": "0%"
|
|
1536
2241
|
},
|
|
1537
|
-
"
|
|
1538
|
-
|
|
1539
|
-
|
|
2242
|
+
"type": "typography"
|
|
2243
|
+
},
|
|
2244
|
+
"5": {
|
|
2245
|
+
"value": {
|
|
2246
|
+
"fontFamily": "SF Pro Text",
|
|
2247
|
+
"fontWeight": 500,
|
|
2248
|
+
"lineHeight": "150%",
|
|
2249
|
+
"fontSize": 12
|
|
2250
|
+
},
|
|
2251
|
+
"type": "typography"
|
|
2252
|
+
},
|
|
2253
|
+
"caps": {
|
|
2254
|
+
"value": {
|
|
2255
|
+
"fontFamily": "SF Pro Text",
|
|
2256
|
+
"fontWeight": 700,
|
|
2257
|
+
"lineHeight": "150%",
|
|
2258
|
+
"fontSize": 12,
|
|
2259
|
+
"letterSpacing": "5%",
|
|
2260
|
+
"textCase": "uppercase"
|
|
2261
|
+
},
|
|
2262
|
+
"type": "typography"
|
|
2263
|
+
}
|
|
2264
|
+
},
|
|
2265
|
+
"fontWeight": {
|
|
2266
|
+
"body": {
|
|
2267
|
+
"value": 400,
|
|
2268
|
+
"type": "fontWeights"
|
|
2269
|
+
},
|
|
2270
|
+
"heading": {
|
|
2271
|
+
"value": 500,
|
|
2272
|
+
"type": "fontWeights"
|
|
2273
|
+
},
|
|
2274
|
+
"regular": {
|
|
2275
|
+
"value": 400,
|
|
2276
|
+
"type": "fontWeights"
|
|
2277
|
+
},
|
|
2278
|
+
"medium": {
|
|
2279
|
+
"value": 500,
|
|
2280
|
+
"type": "fontWeights"
|
|
2281
|
+
},
|
|
2282
|
+
"bold": {
|
|
2283
|
+
"value": 700,
|
|
2284
|
+
"type": "fontWeights"
|
|
2285
|
+
},
|
|
2286
|
+
"light": {
|
|
2287
|
+
"value": 200,
|
|
2288
|
+
"type": "fontWeights"
|
|
2289
|
+
}
|
|
2290
|
+
},
|
|
2291
|
+
"body": {
|
|
2292
|
+
"small": {
|
|
2293
|
+
"value": {
|
|
2294
|
+
"fontFamily": "SF Pro Text",
|
|
2295
|
+
"fontWeight": 400,
|
|
2296
|
+
"lineHeight": "150%",
|
|
2297
|
+
"fontSize": 12
|
|
1540
2298
|
},
|
|
1541
|
-
"
|
|
1542
|
-
|
|
1543
|
-
|
|
1544
|
-
|
|
2299
|
+
"type": "typography"
|
|
2300
|
+
},
|
|
2301
|
+
"default": {
|
|
2302
|
+
"value": {
|
|
2303
|
+
"fontFamily": "SF Pro Text",
|
|
2304
|
+
"fontWeight": 400,
|
|
2305
|
+
"lineHeight": "150%",
|
|
2306
|
+
"fontSize": 14
|
|
2307
|
+
},
|
|
2308
|
+
"type": "typography"
|
|
2309
|
+
},
|
|
2310
|
+
"large": {
|
|
2311
|
+
"value": {
|
|
2312
|
+
"fontFamily": "SF Pro Text",
|
|
2313
|
+
"fontWeight": 400,
|
|
2314
|
+
"lineHeight": "150%",
|
|
2315
|
+
"fontSize": 20
|
|
2316
|
+
},
|
|
2317
|
+
"type": "typography"
|
|
2318
|
+
},
|
|
2319
|
+
"mono": {
|
|
2320
|
+
"value": {
|
|
2321
|
+
"fontFamily": "SF Mono",
|
|
2322
|
+
"fontWeight": 400,
|
|
2323
|
+
"lineHeight": "150%",
|
|
2324
|
+
"fontSize": 14
|
|
2325
|
+
},
|
|
2326
|
+
"type": "typography"
|
|
2327
|
+
},
|
|
2328
|
+
"mono-bold": {
|
|
2329
|
+
"value": {
|
|
2330
|
+
"fontFamily": "SF Mono",
|
|
2331
|
+
"lineHeight": "150%",
|
|
2332
|
+
"fontSize": 14,
|
|
2333
|
+
"fontWeight": 700
|
|
2334
|
+
},
|
|
2335
|
+
"type": "typography"
|
|
1545
2336
|
}
|
|
1546
2337
|
},
|
|
2338
|
+
"rem": {
|
|
2339
|
+
"value": 16,
|
|
2340
|
+
"type": "other",
|
|
2341
|
+
"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."
|
|
2342
|
+
},
|
|
1547
2343
|
"shadow": {
|
|
1548
2344
|
"1": {
|
|
1549
2345
|
"value": [
|
|
@@ -1641,60 +2437,6 @@
|
|
|
1641
2437
|
"type": "boxShadow"
|
|
1642
2438
|
}
|
|
1643
2439
|
},
|
|
1644
|
-
"lineHeight": {
|
|
1645
|
-
"1": {
|
|
1646
|
-
"value": "110%",
|
|
1647
|
-
"type": "lineHeights",
|
|
1648
|
-
"description": "Use only for display."
|
|
1649
|
-
},
|
|
1650
|
-
"2": {
|
|
1651
|
-
"value": "120%",
|
|
1652
|
-
"type": "lineHeights",
|
|
1653
|
-
"description": "Use for larger headings."
|
|
1654
|
-
},
|
|
1655
|
-
"3": {
|
|
1656
|
-
"value": "130%",
|
|
1657
|
-
"type": "lineHeights",
|
|
1658
|
-
"description": "Use for small and medium sized headings."
|
|
1659
|
-
},
|
|
1660
|
-
"4": {
|
|
1661
|
-
"value": "140%",
|
|
1662
|
-
"type": "lineHeights",
|
|
1663
|
-
"description": "Use for body-sized text"
|
|
1664
|
-
},
|
|
1665
|
-
"5": {
|
|
1666
|
-
"value": "150%",
|
|
1667
|
-
"type": "lineHeights",
|
|
1668
|
-
"description": "Use for body-sized text in long-form reading applications."
|
|
1669
|
-
},
|
|
1670
|
-
"description": {
|
|
1671
|
-
"value": "In production, all units are in %.",
|
|
1672
|
-
"type": "other"
|
|
1673
|
-
},
|
|
1674
|
-
"responsive": {
|
|
1675
|
-
"value": "clamp(1.1em, calc(1.25em + -0.4vw), 1.2em)",
|
|
1676
|
-
"type": "lineHeights",
|
|
1677
|
-
"description": "This is the responsive line height for the responsive type sizes."
|
|
1678
|
-
}
|
|
1679
|
-
},
|
|
1680
|
-
"fontWeight": {
|
|
1681
|
-
"regular": {
|
|
1682
|
-
"value": 400,
|
|
1683
|
-
"type": "fontWeights"
|
|
1684
|
-
},
|
|
1685
|
-
"medium": {
|
|
1686
|
-
"value": 500,
|
|
1687
|
-
"type": "fontWeights"
|
|
1688
|
-
},
|
|
1689
|
-
"bold": {
|
|
1690
|
-
"value": 700,
|
|
1691
|
-
"type": "fontWeights"
|
|
1692
|
-
},
|
|
1693
|
-
"light": {
|
|
1694
|
-
"value": 200,
|
|
1695
|
-
"type": "fontWeights"
|
|
1696
|
-
}
|
|
1697
|
-
},
|
|
1698
2440
|
"letterSpacing": {
|
|
1699
2441
|
"none": {
|
|
1700
2442
|
"value": "0em",
|
|
@@ -1702,7 +2444,7 @@
|
|
|
1702
2444
|
"description": "in Figma, letter spacing values need to be % but in production they need to be expressed in em to work with varable fonts"
|
|
1703
2445
|
},
|
|
1704
2446
|
"tight": {
|
|
1705
|
-
"value": "-0.
|
|
2447
|
+
"value": "-0.02em",
|
|
1706
2448
|
"type": "letterSpacing"
|
|
1707
2449
|
},
|
|
1708
2450
|
"loose": {
|
|
@@ -2916,8 +3658,9 @@
|
|
|
2916
3658
|
"description": "656–1047px"
|
|
2917
3659
|
},
|
|
2918
3660
|
"L": {
|
|
2919
|
-
"value":
|
|
2920
|
-
"type": "sizing"
|
|
3661
|
+
"value": 1048,
|
|
3662
|
+
"type": "sizing",
|
|
3663
|
+
"description": "1048-1311px"
|
|
2921
3664
|
},
|
|
2922
3665
|
"XL": {
|
|
2923
3666
|
"value": 1312,
|