onecart-ui 1.0.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/README.md +351 -0
- package/dist/components/Button/Button.d.ts +4 -0
- package/dist/components/Button/Button.d.ts.map +1 -0
- package/dist/components/Button/index.d.ts +3 -0
- package/dist/components/Button/index.d.ts.map +1 -0
- package/dist/components/Heading/Heading.d.ts +5 -0
- package/dist/components/Heading/Heading.d.ts.map +1 -0
- package/dist/components/Heading/index.d.ts +3 -0
- package/dist/components/Heading/index.d.ts.map +1 -0
- package/dist/components/Paragraph/Paragraph.d.ts +5 -0
- package/dist/components/Paragraph/Paragraph.d.ts.map +1 -0
- package/dist/components/Paragraph/index.d.ts +3 -0
- package/dist/components/Paragraph/index.d.ts.map +1 -0
- package/dist/components/Text/Text.d.ts +5 -0
- package/dist/components/Text/Text.d.ts.map +1 -0
- package/dist/components/Text/index.d.ts +3 -0
- package/dist/components/Text/index.d.ts.map +1 -0
- package/dist/components/Typography/Typography.d.ts +5 -0
- package/dist/components/Typography/Typography.d.ts.map +1 -0
- package/dist/components/Typography/index.d.ts +3 -0
- package/dist/components/Typography/index.d.ts.map +1 -0
- package/dist/index.d.ts +13 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.esm.js +2 -0
- package/dist/index.esm.js.map +1 -0
- package/dist/index.js +2 -0
- package/dist/index.js.map +1 -0
- package/dist/styles/tokens/index.d.ts +107 -0
- package/dist/styles/tokens/index.d.ts.map +1 -0
- package/dist/styles/tokens/tokens.d.ts +350 -0
- package/dist/styles/tokens/tokens.d.ts.map +1 -0
- package/dist/styles/tokens/typography.d.ts +154 -0
- package/dist/styles/tokens/typography.d.ts.map +1 -0
- package/dist/styles/tokens/utils/fontUtils.d.ts +26 -0
- package/dist/styles/tokens/utils/fontUtils.d.ts.map +1 -0
- package/dist/styles/tokens/utils/utils.d.ts +13 -0
- package/dist/styles/tokens/utils/utils.d.ts.map +1 -0
- package/dist/theme/ThemeProvider.d.ts +14 -0
- package/dist/theme/ThemeProvider.d.ts.map +1 -0
- package/dist/theme/index.d.ts +55 -0
- package/dist/theme/index.d.ts.map +1 -0
- package/dist/types/Button.d.ts +47 -0
- package/dist/types/Button.d.ts.map +1 -0
- package/dist/types/Heading.d.ts +24 -0
- package/dist/types/Heading.d.ts.map +1 -0
- package/dist/types/Paragraph.d.ts +35 -0
- package/dist/types/Paragraph.d.ts.map +1 -0
- package/dist/types/Text.d.ts +32 -0
- package/dist/types/Text.d.ts.map +1 -0
- package/dist/types/Typography.d.ts +64 -0
- package/dist/types/Typography.d.ts.map +1 -0
- package/package.json +72 -0
- package/src/components/Button/Button.tsx +155 -0
- package/src/components/Button/index.ts +2 -0
- package/src/components/Heading/Heading.tsx +48 -0
- package/src/components/Heading/index.ts +2 -0
- package/src/components/Paragraph/Paragraph.tsx +93 -0
- package/src/components/Paragraph/index.ts +6 -0
- package/src/components/Text/Text.tsx +96 -0
- package/src/components/Text/index.ts +2 -0
- package/src/components/Typography/Typography.tsx +123 -0
- package/src/components/Typography/index.ts +7 -0
- package/src/index.ts +34 -0
- package/src/styles/tokens/index.ts +130 -0
- package/src/styles/tokens/tokens-autocomplete-config.json +2417 -0
- package/src/styles/tokens/tokens.css +352 -0
- package/src/styles/tokens/tokens.js +350 -0
- package/src/styles/tokens/tokens.json +427 -0
- package/src/styles/tokens/tokens.less +349 -0
- package/src/styles/tokens/tokens.scss +349 -0
- package/src/styles/tokens/tokens.ts +350 -0
- package/src/styles/tokens/tokensMap.scss +353 -0
- package/src/styles/tokens/typography.ts +172 -0
- package/src/styles/tokens/utils/fontUtils.ts +63 -0
- package/src/styles/tokens/utils/utils.ts +19 -0
- package/src/theme/ThemeProvider.tsx +71 -0
- package/src/theme/index.ts +107 -0
- package/src/types/Button.ts +56 -0
- package/src/types/Heading.ts +27 -0
- package/src/types/Paragraph.ts +40 -0
- package/src/types/Text.ts +40 -0
- package/src/types/Typography.ts +94 -0
|
@@ -0,0 +1,427 @@
|
|
|
1
|
+
{
|
|
2
|
+
"border-radius-tooltip": {
|
|
3
|
+
"default": "0.25rem"
|
|
4
|
+
},
|
|
5
|
+
"border-radius-popover": {
|
|
6
|
+
"default": "0.5rem"
|
|
7
|
+
},
|
|
8
|
+
"border-radius-tag": {
|
|
9
|
+
"sm": "0.25rem",
|
|
10
|
+
"xl": "62.4rem"
|
|
11
|
+
},
|
|
12
|
+
"border-radius-button": {
|
|
13
|
+
"sm": "0.25rem",
|
|
14
|
+
"full": "62.4rem"
|
|
15
|
+
},
|
|
16
|
+
"border-radius-input": {
|
|
17
|
+
"sm": "0.25rem",
|
|
18
|
+
"lg": "0.5rem"
|
|
19
|
+
},
|
|
20
|
+
"border-radius-card": {
|
|
21
|
+
"sm": "0.25rem",
|
|
22
|
+
"md": "0.5rem",
|
|
23
|
+
"lg": "0.75rem"
|
|
24
|
+
},
|
|
25
|
+
"border-radius-modal": {
|
|
26
|
+
"lg": "0.75rem",
|
|
27
|
+
"xl": "1rem"
|
|
28
|
+
},
|
|
29
|
+
"border": {
|
|
30
|
+
"radius-none": 0,
|
|
31
|
+
"radius-xs": "0.25rem",
|
|
32
|
+
"radius-sm": "0.5rem",
|
|
33
|
+
"radius-md": "0.75rem",
|
|
34
|
+
"radius-lg": "1rem",
|
|
35
|
+
"radius-xl": "1.25rem",
|
|
36
|
+
"radius-2xl": "1.5rem",
|
|
37
|
+
"radius-3xl": "1.75rem",
|
|
38
|
+
"radius-full": "62.4rem",
|
|
39
|
+
"width-button-default": "0.0625rem",
|
|
40
|
+
"width-button-hover": "0.125rem",
|
|
41
|
+
"width-button-pressed": "0.125rem",
|
|
42
|
+
"width-input-default": "0.0625rem",
|
|
43
|
+
"width-input-focus": "0.125rem",
|
|
44
|
+
"width-input-error": "0.125rem",
|
|
45
|
+
"width-card-default": "0.0625rem",
|
|
46
|
+
"width-card-hover": "0.125rem",
|
|
47
|
+
"width-none": 0,
|
|
48
|
+
"width-xs": "0.0625rem",
|
|
49
|
+
"width-sm": "0.125rem",
|
|
50
|
+
"width-md": "0.25rem",
|
|
51
|
+
"green": "#00df88",
|
|
52
|
+
"blue": "#0053e2",
|
|
53
|
+
"yellow": "#f4b400",
|
|
54
|
+
"red": "#a90000",
|
|
55
|
+
"dark": "#111",
|
|
56
|
+
"light": "#e2e2e2",
|
|
57
|
+
"lighter": "#f1f1f1"
|
|
58
|
+
},
|
|
59
|
+
"layout": {
|
|
60
|
+
"spacing-inline-none": 0,
|
|
61
|
+
"spacing-inline-3xs": "0.125rem",
|
|
62
|
+
"spacing-inline-2xs": "0.25rem",
|
|
63
|
+
"spacing-inline-xs": "0.5rem",
|
|
64
|
+
"spacing-inline-sm": "0.75rem",
|
|
65
|
+
"spacing-inline-md": "1rem",
|
|
66
|
+
"spacing-inline-lg": "2rem",
|
|
67
|
+
"spacing-inline-xl": "2.5rem",
|
|
68
|
+
"spacing-inline-2xl": "5rem",
|
|
69
|
+
"spacing-stack-none": 0,
|
|
70
|
+
"spacing-stack-3xs": "0.125rem",
|
|
71
|
+
"spacing-stack-2xs": "0.25rem",
|
|
72
|
+
"spacing-stack-xs": "0.5rem",
|
|
73
|
+
"spacing-stack-sm": "0.75rem",
|
|
74
|
+
"spacing-stack-md": "1rem",
|
|
75
|
+
"spacing-stack-lg": "2rem",
|
|
76
|
+
"spacing-stack-xl": "2.5rem",
|
|
77
|
+
"spacing-stack-2xl": "5rem"
|
|
78
|
+
},
|
|
79
|
+
"section": {
|
|
80
|
+
"spacing-sm": "1.5rem",
|
|
81
|
+
"spacing-md": "1.75rem",
|
|
82
|
+
"spacing-lg": "2rem",
|
|
83
|
+
"spacing-xl": "2.5rem",
|
|
84
|
+
"spacing-2xl": "3.5rem",
|
|
85
|
+
"spacing-3xl": "5rem"
|
|
86
|
+
},
|
|
87
|
+
"component": {
|
|
88
|
+
"card-sm": "0.75rem",
|
|
89
|
+
"card-md": "1.25rem",
|
|
90
|
+
"card-lg": "1.5rem",
|
|
91
|
+
"card-xl": "2rem",
|
|
92
|
+
"card-2xl": "2.5rem",
|
|
93
|
+
"modal-sm": "1.25rem",
|
|
94
|
+
"modal-md": "1.5rem",
|
|
95
|
+
"modal-lg": "1.75rem"
|
|
96
|
+
},
|
|
97
|
+
"space-0": 0,
|
|
98
|
+
"space-3xs": "0.125rem",
|
|
99
|
+
"space-2xs": "0.25rem",
|
|
100
|
+
"space-xs": "0.5rem",
|
|
101
|
+
"space-sm": "0.75rem",
|
|
102
|
+
"space-md": "1rem",
|
|
103
|
+
"space-lg": "1.25rem",
|
|
104
|
+
"space-xl": "1.5rem",
|
|
105
|
+
"space-2xl": "1.75rem",
|
|
106
|
+
"space-3xl": "2rem",
|
|
107
|
+
"space-4xl": "2.5rem",
|
|
108
|
+
"space-5xl": "3rem",
|
|
109
|
+
"space-6xl": "3.5rem",
|
|
110
|
+
"space-7xl": "4rem",
|
|
111
|
+
"space-8xl": "5rem",
|
|
112
|
+
"xs": "0.75rem",
|
|
113
|
+
"s": "1rem",
|
|
114
|
+
"md": "1.25rem",
|
|
115
|
+
"lg": "1.5rem",
|
|
116
|
+
"xl": "1.75rem",
|
|
117
|
+
"2xl": "2rem",
|
|
118
|
+
"background": {
|
|
119
|
+
"yellow-light": "#fff5d9",
|
|
120
|
+
"yellow-medium": "#ffe7a5",
|
|
121
|
+
"blue-light": "#e3ebff",
|
|
122
|
+
"blue-medium": "#c3deff",
|
|
123
|
+
"green-light": "#E5FCF3",
|
|
124
|
+
"green-medium": "#ccf9e7",
|
|
125
|
+
"green-dark": "#00df88",
|
|
126
|
+
"red-light": "#feecec",
|
|
127
|
+
"red-medium": "#fed8d8",
|
|
128
|
+
"white-light": "#ffffff",
|
|
129
|
+
"neutral-dark": "#111",
|
|
130
|
+
"neutral-grey": "#e2e2e2",
|
|
131
|
+
"neutral-light": "#f1f1f1"
|
|
132
|
+
},
|
|
133
|
+
"text": {
|
|
134
|
+
"inverse": "#ffffff",
|
|
135
|
+
"disabled": "#ababab",
|
|
136
|
+
"placeholder": "#919191",
|
|
137
|
+
"tertiary": "#525252",
|
|
138
|
+
"body": "#3b3b3b",
|
|
139
|
+
"header": "#111",
|
|
140
|
+
"green": "#00df88",
|
|
141
|
+
"blue": "#0053e2",
|
|
142
|
+
"error": "#a90000",
|
|
143
|
+
"yellow": "#f4b400"
|
|
144
|
+
},
|
|
145
|
+
"feedback": {
|
|
146
|
+
"alert-success": "#00df88",
|
|
147
|
+
"alert-error": "#a90000",
|
|
148
|
+
"alert-warning": "#fff5d9",
|
|
149
|
+
"alert-neutral": "#111"
|
|
150
|
+
},
|
|
151
|
+
"action": {
|
|
152
|
+
"primary-default": "#00df88",
|
|
153
|
+
"primary-hover": "#4ce9ac",
|
|
154
|
+
"primary-active": "#98f2cf",
|
|
155
|
+
"primary-disabled": "#E5FCF3",
|
|
156
|
+
"secondary-default": "#0053e2",
|
|
157
|
+
"secondary-hover": "#254cac",
|
|
158
|
+
"secondary-active": "#9ec1ff",
|
|
159
|
+
"secondary-disabled": "#e3ebff",
|
|
160
|
+
"destructive-default": "#d60000",
|
|
161
|
+
"destructive-hover": "#a90000",
|
|
162
|
+
"destructive-active": "#fed8d8",
|
|
163
|
+
"destructive-disable": "#feecec",
|
|
164
|
+
"tertiary-default": "#3b3b3b",
|
|
165
|
+
"tertiary-hover": "#111",
|
|
166
|
+
"tertiary-active": "#ababab",
|
|
167
|
+
"tertiary-disable": "#f1f1f1"
|
|
168
|
+
},
|
|
169
|
+
"icon": {
|
|
170
|
+
"yellow": "#f4b400",
|
|
171
|
+
"blue": "#0053e2",
|
|
172
|
+
"green": "#00df88",
|
|
173
|
+
"red": "#a90000",
|
|
174
|
+
"neutral": "#111",
|
|
175
|
+
"light": "#e2e2e2",
|
|
176
|
+
"lighter": "#f1f1f1"
|
|
177
|
+
},
|
|
178
|
+
"green-10": "#E5FCF3",
|
|
179
|
+
"green-20": "#ccf9e7",
|
|
180
|
+
"green-30": "#B2F5DB",
|
|
181
|
+
"green-40": "#98f2cf",
|
|
182
|
+
"green-50": "#81efc3",
|
|
183
|
+
"green-60": "#66ecb8",
|
|
184
|
+
"green-70": "#4ce9ac",
|
|
185
|
+
"green-80": "#31e5a0",
|
|
186
|
+
"green-90": "#1ae294",
|
|
187
|
+
"green-100": "#00df88",
|
|
188
|
+
"neutral-10": "#f1f1f1",
|
|
189
|
+
"neutral-20": "#e2e2e2",
|
|
190
|
+
"neutral-30": "#c6c6c6",
|
|
191
|
+
"neutral-40": "#ababab",
|
|
192
|
+
"neutral-50": "#919191",
|
|
193
|
+
"neutral-60": "#6a6a6a",
|
|
194
|
+
"neutral-70": "#525252",
|
|
195
|
+
"neutral-80": "#3b3b3b",
|
|
196
|
+
"neutral-90": "#262626",
|
|
197
|
+
"neutral-100": "#111",
|
|
198
|
+
"blue-10": "#e3ebff",
|
|
199
|
+
"blue-20": "#c3deff",
|
|
200
|
+
"blue-30": "#9ec1ff",
|
|
201
|
+
"blue-40": "#5c83fd",
|
|
202
|
+
"blue-50": "#446ef5",
|
|
203
|
+
"blue-60": "#0053e2",
|
|
204
|
+
"blue-70": "#254cac",
|
|
205
|
+
"blue-80": "#14328d",
|
|
206
|
+
"blue-90": "#0c285f",
|
|
207
|
+
"blue-100": "#071e3c",
|
|
208
|
+
"red-10": "#feecec",
|
|
209
|
+
"red-20": "#fed8d8",
|
|
210
|
+
"red-30": "#feb3b3",
|
|
211
|
+
"red-40": "#fe8888",
|
|
212
|
+
"red-50": "#fb5959",
|
|
213
|
+
"red-60": "#d60000",
|
|
214
|
+
"red-70": "#a90000",
|
|
215
|
+
"red-80": "#820000",
|
|
216
|
+
"red-90": "#550000",
|
|
217
|
+
"red-100": "#3a0000",
|
|
218
|
+
"yellow-10": "#fff5d9",
|
|
219
|
+
"yellow-20": "#ffe7a5",
|
|
220
|
+
"yellow-30": "#ffd86b",
|
|
221
|
+
"yellow-40": "#ffce46",
|
|
222
|
+
"yellow-50": "#ffc420",
|
|
223
|
+
"yellow-60": "#f4b400",
|
|
224
|
+
"yellow-70": "#dba200",
|
|
225
|
+
"yellow-80": "#c69200",
|
|
226
|
+
"yellow-90": "#b38400",
|
|
227
|
+
"yellow-100": "#9a7100",
|
|
228
|
+
"white-10": "#ffffff",
|
|
229
|
+
"Display-2xl": {
|
|
230
|
+
"fontFamily": "Campton",
|
|
231
|
+
"fontWeight": 500,
|
|
232
|
+
"lineHeight": "56px",
|
|
233
|
+
"fontSize": "52px",
|
|
234
|
+
"letterSpacing": "0%",
|
|
235
|
+
"paragraphIndent": "0px",
|
|
236
|
+
"textCase": "none",
|
|
237
|
+
"textDecoration": "none"
|
|
238
|
+
},
|
|
239
|
+
"Display": {
|
|
240
|
+
"xl": {
|
|
241
|
+
"fontFamily": "Campton",
|
|
242
|
+
"fontWeight": 500,
|
|
243
|
+
"lineHeight": "48px",
|
|
244
|
+
"fontSize": "44px",
|
|
245
|
+
"letterSpacing": "0%",
|
|
246
|
+
"paragraphIndent": "0px",
|
|
247
|
+
"textCase": "none",
|
|
248
|
+
"textDecoration": "none"
|
|
249
|
+
}
|
|
250
|
+
},
|
|
251
|
+
"Heading": {
|
|
252
|
+
"xl": {
|
|
253
|
+
"fontFamily": "Campton",
|
|
254
|
+
"fontWeight": 600,
|
|
255
|
+
"lineHeight": "48px",
|
|
256
|
+
"fontSize": "40px",
|
|
257
|
+
"letterSpacing": "0%",
|
|
258
|
+
"paragraphIndent": "0px",
|
|
259
|
+
"textCase": "none",
|
|
260
|
+
"textDecoration": "none"
|
|
261
|
+
},
|
|
262
|
+
"lg": {
|
|
263
|
+
"fontFamily": "Campton",
|
|
264
|
+
"fontWeight": 600,
|
|
265
|
+
"lineHeight": "44px",
|
|
266
|
+
"fontSize": "36px",
|
|
267
|
+
"letterSpacing": "0%",
|
|
268
|
+
"paragraphIndent": "0px",
|
|
269
|
+
"textCase": "none",
|
|
270
|
+
"textDecoration": "none"
|
|
271
|
+
},
|
|
272
|
+
"md": {
|
|
273
|
+
"fontFamily": "Campton",
|
|
274
|
+
"fontWeight": 600,
|
|
275
|
+
"lineHeight": "40px",
|
|
276
|
+
"fontSize": "32px",
|
|
277
|
+
"letterSpacing": "0%",
|
|
278
|
+
"paragraphIndent": "0px",
|
|
279
|
+
"textCase": "none",
|
|
280
|
+
"textDecoration": "none"
|
|
281
|
+
},
|
|
282
|
+
"sm": {
|
|
283
|
+
"fontFamily": "Campton",
|
|
284
|
+
"fontWeight": 600,
|
|
285
|
+
"lineHeight": "36px",
|
|
286
|
+
"fontSize": "28px",
|
|
287
|
+
"letterSpacing": "0%",
|
|
288
|
+
"paragraphIndent": "0px",
|
|
289
|
+
"textCase": "none",
|
|
290
|
+
"textDecoration": "none"
|
|
291
|
+
},
|
|
292
|
+
"xs": {
|
|
293
|
+
"fontFamily": "Campton",
|
|
294
|
+
"fontWeight": 600,
|
|
295
|
+
"lineHeight": "28px",
|
|
296
|
+
"fontSize": "20px",
|
|
297
|
+
"letterSpacing": "0%",
|
|
298
|
+
"paragraphIndent": "0px",
|
|
299
|
+
"textCase": "none",
|
|
300
|
+
"textDecoration": "none"
|
|
301
|
+
},
|
|
302
|
+
"2xs": {
|
|
303
|
+
"fontFamily": "Campton",
|
|
304
|
+
"fontWeight": 600,
|
|
305
|
+
"lineHeight": "24px",
|
|
306
|
+
"fontSize": "18px",
|
|
307
|
+
"letterSpacing": "0%",
|
|
308
|
+
"paragraphIndent": "0px",
|
|
309
|
+
"textCase": "none",
|
|
310
|
+
"textDecoration": "none"
|
|
311
|
+
}
|
|
312
|
+
},
|
|
313
|
+
"Body": {
|
|
314
|
+
"xl": {
|
|
315
|
+
"fontFamily": "Campton",
|
|
316
|
+
"fontWeight": "book",
|
|
317
|
+
"lineHeight": "28px",
|
|
318
|
+
"fontSize": "18px",
|
|
319
|
+
"letterSpacing": "0%",
|
|
320
|
+
"paragraphIndent": "0px",
|
|
321
|
+
"textCase": "none",
|
|
322
|
+
"textDecoration": "none"
|
|
323
|
+
},
|
|
324
|
+
"lg": {
|
|
325
|
+
"fontFamily": "Campton",
|
|
326
|
+
"fontWeight": "book",
|
|
327
|
+
"lineHeight": "24px",
|
|
328
|
+
"fontSize": "16px",
|
|
329
|
+
"letterSpacing": "0%",
|
|
330
|
+
"paragraphIndent": "0px",
|
|
331
|
+
"textCase": "none",
|
|
332
|
+
"textDecoration": "none"
|
|
333
|
+
},
|
|
334
|
+
"md": {
|
|
335
|
+
"fontFamily": "Campton",
|
|
336
|
+
"fontWeight": "book",
|
|
337
|
+
"lineHeight": "20px",
|
|
338
|
+
"fontSize": "14px",
|
|
339
|
+
"letterSpacing": "0%",
|
|
340
|
+
"paragraphIndent": "0px",
|
|
341
|
+
"textCase": "none",
|
|
342
|
+
"textDecoration": "none"
|
|
343
|
+
},
|
|
344
|
+
"sm": {
|
|
345
|
+
"fontFamily": "Campton",
|
|
346
|
+
"fontWeight": "book",
|
|
347
|
+
"lineHeight": "20px",
|
|
348
|
+
"fontSize": "12px",
|
|
349
|
+
"letterSpacing": "0%",
|
|
350
|
+
"paragraphIndent": "0px",
|
|
351
|
+
"textCase": "none",
|
|
352
|
+
"textDecoration": "none"
|
|
353
|
+
}
|
|
354
|
+
},
|
|
355
|
+
"Utility": {
|
|
356
|
+
"button": {
|
|
357
|
+
"fontFamily": "Campton",
|
|
358
|
+
"fontWeight": 500,
|
|
359
|
+
"lineHeight": "16px",
|
|
360
|
+
"fontSize": "16px",
|
|
361
|
+
"letterSpacing": "0%",
|
|
362
|
+
"paragraphIndent": "0px",
|
|
363
|
+
"textCase": "none",
|
|
364
|
+
"textDecoration": "none"
|
|
365
|
+
},
|
|
366
|
+
"link": {
|
|
367
|
+
"fontFamily": "Campton",
|
|
368
|
+
"fontWeight": 500,
|
|
369
|
+
"lineHeight": "20px",
|
|
370
|
+
"fontSize": "14px",
|
|
371
|
+
"letterSpacing": "0%",
|
|
372
|
+
"paragraphIndent": "0px",
|
|
373
|
+
"textCase": "none",
|
|
374
|
+
"textDecoration": "underline"
|
|
375
|
+
},
|
|
376
|
+
"caption": {
|
|
377
|
+
"fontFamily": "Campton",
|
|
378
|
+
"fontWeight": "book",
|
|
379
|
+
"lineHeight": "16px",
|
|
380
|
+
"fontSize": "12px",
|
|
381
|
+
"letterSpacing": "0%",
|
|
382
|
+
"paragraphIndent": "0px",
|
|
383
|
+
"textCase": "none",
|
|
384
|
+
"textDecoration": "none"
|
|
385
|
+
}
|
|
386
|
+
},
|
|
387
|
+
"fontFamilies": {
|
|
388
|
+
"campton": "Campton"
|
|
389
|
+
},
|
|
390
|
+
"line-height-6xl": "56px",
|
|
391
|
+
"line-height-5xl": "48px",
|
|
392
|
+
"line-height-4xl": "44px",
|
|
393
|
+
"line-height-3xl": "40px",
|
|
394
|
+
"line-height-2xl": "36px",
|
|
395
|
+
"line-height-xl": "32px",
|
|
396
|
+
"line-height-lg": "28px",
|
|
397
|
+
"line-height-md": "24px",
|
|
398
|
+
"line-height-s": "20px",
|
|
399
|
+
"line-height-xs": "16px",
|
|
400
|
+
"medium": 500,
|
|
401
|
+
"semi-bold": 600,
|
|
402
|
+
"book": "book",
|
|
403
|
+
"font-size-2xs": "14px",
|
|
404
|
+
"font-size-3xs": "12px",
|
|
405
|
+
"font-size-xs": "16px",
|
|
406
|
+
"font-size-md": "18px",
|
|
407
|
+
"font-size-lg": "20px",
|
|
408
|
+
"font-size-xl": "28px",
|
|
409
|
+
"font-size-2xl": "32px",
|
|
410
|
+
"font-size-3xl": "36px",
|
|
411
|
+
"font-size-4xl": "40px",
|
|
412
|
+
"font-size-5xl": "44px",
|
|
413
|
+
"font-size-6xl": "52px",
|
|
414
|
+
"letterSpacing": {
|
|
415
|
+
"0": "0%"
|
|
416
|
+
},
|
|
417
|
+
"textCase": {
|
|
418
|
+
"none": "none"
|
|
419
|
+
},
|
|
420
|
+
"textDecoration": {
|
|
421
|
+
"none": "none",
|
|
422
|
+
"underline": "underline"
|
|
423
|
+
},
|
|
424
|
+
"paragraphIndent": {
|
|
425
|
+
"0": "0px"
|
|
426
|
+
}
|
|
427
|
+
}
|