@goodhood-web/ui 4.2.0-development.8 → 4.2.0
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/index.js +45 -45
- package/index.mjs +4497 -4477
- package/package.json +3 -2
- package/style.css +1 -1
- package/styles/_design-tokens-landing.scss +506 -0
- package/styles/_functions.scss +8 -7
- package/styles/_mixins.scss +60 -43
|
@@ -0,0 +1,506 @@
|
|
|
1
|
+
$font-family-primary: inter, sans-serif;
|
|
2
|
+
$font-family-secondary: byrd, sans-serif;
|
|
3
|
+
$tokensLanding: (
|
|
4
|
+
'desktop': (
|
|
5
|
+
'headings': (
|
|
6
|
+
'Claim': (
|
|
7
|
+
'fontFamily': $font-family-secondary,
|
|
8
|
+
'fontWeight': 900,
|
|
9
|
+
'fontStyle': normal,
|
|
10
|
+
'lineHeight': 100%,
|
|
11
|
+
'fontSize': 48px,
|
|
12
|
+
'letterSpacing': none,
|
|
13
|
+
'paragraphSpacing': 0,
|
|
14
|
+
'paragraphIndent': 0,
|
|
15
|
+
'textCase': none,
|
|
16
|
+
'textDecoration': none,
|
|
17
|
+
),
|
|
18
|
+
'Claim Uppercase': (
|
|
19
|
+
'fontFamily': $font-family-secondary,
|
|
20
|
+
'fontWeight': 900,
|
|
21
|
+
'fontStyle': normal,
|
|
22
|
+
'lineHeight': 100%,
|
|
23
|
+
'fontSize': 48px,
|
|
24
|
+
'letterSpacing': none,
|
|
25
|
+
'paragraphSpacing': 0,
|
|
26
|
+
'paragraphIndent': 0,
|
|
27
|
+
'textCase': uppercase,
|
|
28
|
+
'textDecoration': none,
|
|
29
|
+
),
|
|
30
|
+
'H1': (
|
|
31
|
+
'fontFamily': $font-family-secondary,
|
|
32
|
+
'fontWeight': 900,
|
|
33
|
+
'fontStyle': normal,
|
|
34
|
+
'lineHeight': 100%,
|
|
35
|
+
'fontSize': 40px,
|
|
36
|
+
'letterSpacing': none,
|
|
37
|
+
'paragraphSpacing': 0,
|
|
38
|
+
'paragraphIndent': 0,
|
|
39
|
+
'textCase': none,
|
|
40
|
+
'textDecoration': none,
|
|
41
|
+
),
|
|
42
|
+
'H1 Uppercase': (
|
|
43
|
+
'fontFamily': $font-family-secondary,
|
|
44
|
+
'fontWeight': 900,
|
|
45
|
+
'fontStyle': normal,
|
|
46
|
+
'lineHeight': 100%,
|
|
47
|
+
'fontSize': 40px,
|
|
48
|
+
'letterSpacing': none,
|
|
49
|
+
'paragraphSpacing': 0,
|
|
50
|
+
'paragraphIndent': 0,
|
|
51
|
+
'textCase': uppercase,
|
|
52
|
+
'textDecoration': none,
|
|
53
|
+
),
|
|
54
|
+
'H2': (
|
|
55
|
+
'fontFamily': $font-family-secondary,
|
|
56
|
+
'fontWeight': 700,
|
|
57
|
+
'fontStyle': normal,
|
|
58
|
+
'lineHeight': 115%,
|
|
59
|
+
'fontSize': 40px,
|
|
60
|
+
'letterSpacing': none,
|
|
61
|
+
'paragraphSpacing': 0,
|
|
62
|
+
'paragraphIndent': 0,
|
|
63
|
+
'textCase': none,
|
|
64
|
+
'textDecoration': none,
|
|
65
|
+
),
|
|
66
|
+
'H3': (
|
|
67
|
+
'fontFamily': $font-family-secondary,
|
|
68
|
+
'fontWeight': 700,
|
|
69
|
+
'fontStyle': normal,
|
|
70
|
+
'lineHeight': 115%,
|
|
71
|
+
'fontSize': 32px,
|
|
72
|
+
'letterSpacing': none,
|
|
73
|
+
'paragraphSpacing': 0,
|
|
74
|
+
'paragraphIndent': 0,
|
|
75
|
+
'textCase': none,
|
|
76
|
+
'textDecoration': none,
|
|
77
|
+
),
|
|
78
|
+
'H5': (
|
|
79
|
+
'fontFamily': $font-family-secondary,
|
|
80
|
+
'fontWeight': 700,
|
|
81
|
+
'fontStyle': normal,
|
|
82
|
+
'lineHeight': 115%,
|
|
83
|
+
'fontSize': 22px,
|
|
84
|
+
'letterSpacing': none,
|
|
85
|
+
'paragraphSpacing': 0,
|
|
86
|
+
'paragraphIndent': 0,
|
|
87
|
+
'textCase': none,
|
|
88
|
+
'textDecoration': none,
|
|
89
|
+
),
|
|
90
|
+
'Overline': (
|
|
91
|
+
'fontFamily': $font-family-primary,
|
|
92
|
+
'fontWeight': 700,
|
|
93
|
+
'fontStyle': normal,
|
|
94
|
+
'lineHeight': 120%,
|
|
95
|
+
'fontSize': 14px,
|
|
96
|
+
'letterSpacing': 1px,
|
|
97
|
+
'paragraphSpacing': 0,
|
|
98
|
+
'paragraphIndent': 0,
|
|
99
|
+
'textCase': uppercase,
|
|
100
|
+
'textDecoration': none,
|
|
101
|
+
),
|
|
102
|
+
),
|
|
103
|
+
'body': (
|
|
104
|
+
'Quote Large': (
|
|
105
|
+
'fontFamily': $font-family-primary,
|
|
106
|
+
'fontWeight': 600,
|
|
107
|
+
'lineHeight': 1.5,
|
|
108
|
+
'fontSize': 28px,
|
|
109
|
+
'fontStyle': italic,
|
|
110
|
+
'letterSpacing': none,
|
|
111
|
+
'paragraphSpacing': 0,
|
|
112
|
+
'paragraphIndent': 0,
|
|
113
|
+
'textCase': none,
|
|
114
|
+
'textDecoration': none,
|
|
115
|
+
),
|
|
116
|
+
),
|
|
117
|
+
'detail': (),
|
|
118
|
+
),
|
|
119
|
+
'tablet': (
|
|
120
|
+
'headings': (
|
|
121
|
+
'Claim': (
|
|
122
|
+
'fontFamily': $font-family-secondary,
|
|
123
|
+
'fontWeight': 900,
|
|
124
|
+
'fontStyle': normal,
|
|
125
|
+
'lineHeight': 100%,
|
|
126
|
+
'fontSize': 40px,
|
|
127
|
+
'letterSpacing': none,
|
|
128
|
+
'paragraphSpacing': 0,
|
|
129
|
+
'paragraphIndent': 0,
|
|
130
|
+
'textCase': none,
|
|
131
|
+
'textDecoration': none,
|
|
132
|
+
),
|
|
133
|
+
'Claim Uppercase': (
|
|
134
|
+
'fontFamily': $font-family-secondary,
|
|
135
|
+
'fontWeight': 900,
|
|
136
|
+
'fontStyle': normal,
|
|
137
|
+
'lineHeight': 100%,
|
|
138
|
+
'fontSize': 40px,
|
|
139
|
+
'letterSpacing': none,
|
|
140
|
+
'paragraphSpacing': 0,
|
|
141
|
+
'paragraphIndent': 0,
|
|
142
|
+
'textCase': uppercase,
|
|
143
|
+
'textDecoration': none,
|
|
144
|
+
),
|
|
145
|
+
'H1': (
|
|
146
|
+
'fontFamily': $font-family-secondary,
|
|
147
|
+
'fontWeight': 900,
|
|
148
|
+
'fontStyle': normal,
|
|
149
|
+
'lineHeight': 100%,
|
|
150
|
+
'fontSize': 32px,
|
|
151
|
+
'letterSpacing': none,
|
|
152
|
+
'paragraphSpacing': 0,
|
|
153
|
+
'paragraphIndent': 0,
|
|
154
|
+
'textCase': none,
|
|
155
|
+
'textDecoration': none,
|
|
156
|
+
),
|
|
157
|
+
'H1 Uppercase': (
|
|
158
|
+
'fontFamily': $font-family-secondary,
|
|
159
|
+
'fontWeight': 900,
|
|
160
|
+
'fontStyle': normal,
|
|
161
|
+
'lineHeight': 100%,
|
|
162
|
+
'fontSize': 32px,
|
|
163
|
+
'letterSpacing': none,
|
|
164
|
+
'paragraphSpacing': 0,
|
|
165
|
+
'paragraphIndent': 0,
|
|
166
|
+
'textCase': uppercase,
|
|
167
|
+
'textDecoration': none,
|
|
168
|
+
),
|
|
169
|
+
'H2': (
|
|
170
|
+
'fontFamily': $font-family-secondary,
|
|
171
|
+
'fontWeight': 700,
|
|
172
|
+
'fontStyle': normal,
|
|
173
|
+
'lineHeight': 115%,
|
|
174
|
+
'fontSize': 32px,
|
|
175
|
+
'letterSpacing': none,
|
|
176
|
+
'paragraphSpacing': 0,
|
|
177
|
+
'paragraphIndent': 0,
|
|
178
|
+
'textCase': none,
|
|
179
|
+
'textDecoration': none,
|
|
180
|
+
),
|
|
181
|
+
'H3': (
|
|
182
|
+
'fontFamily': $font-family-secondary,
|
|
183
|
+
'fontWeight': 700,
|
|
184
|
+
'fontStyle': normal,
|
|
185
|
+
'lineHeight': 115%,
|
|
186
|
+
'fontSize': 28px,
|
|
187
|
+
'letterSpacing': none,
|
|
188
|
+
'paragraphSpacing': 0,
|
|
189
|
+
'paragraphIndent': 0,
|
|
190
|
+
'textCase': none,
|
|
191
|
+
'textDecoration': none,
|
|
192
|
+
),
|
|
193
|
+
'H4': (
|
|
194
|
+
'fontFamily': $font-family-secondary,
|
|
195
|
+
'fontWeight': 700,
|
|
196
|
+
'fontStyle': normal,
|
|
197
|
+
'lineHeight': 115%,
|
|
198
|
+
'fontSize': 24px,
|
|
199
|
+
'letterSpacing': none,
|
|
200
|
+
'paragraphSpacing': 0,
|
|
201
|
+
'paragraphIndent': 0,
|
|
202
|
+
'textCase': none,
|
|
203
|
+
'textDecoration': none,
|
|
204
|
+
),
|
|
205
|
+
'H6': (
|
|
206
|
+
'fontFamily': $font-family-secondary,
|
|
207
|
+
'fontWeight': 700,
|
|
208
|
+
'fontStyle': normal,
|
|
209
|
+
'lineHeight': 115%,
|
|
210
|
+
'fontSize': 16px,
|
|
211
|
+
'letterSpacing': none,
|
|
212
|
+
'paragraphSpacing': 0,
|
|
213
|
+
'paragraphIndent': 0,
|
|
214
|
+
'textCase': none,
|
|
215
|
+
'textDecoration': none,
|
|
216
|
+
),
|
|
217
|
+
'Overline': (
|
|
218
|
+
'fontFamily': $font-family-primary,
|
|
219
|
+
'fontWeight': 700,
|
|
220
|
+
'fontStyle': normal,
|
|
221
|
+
'lineHeight': 115%,
|
|
222
|
+
'fontSize': 14px,
|
|
223
|
+
'letterSpacing': 1px,
|
|
224
|
+
'paragraphSpacing': 0,
|
|
225
|
+
'paragraphIndent': 0,
|
|
226
|
+
'textCase': uppercase,
|
|
227
|
+
'textDecoration': none,
|
|
228
|
+
),
|
|
229
|
+
),
|
|
230
|
+
'body': (
|
|
231
|
+
'Body Large': (
|
|
232
|
+
'fontFamily': $font-family-primary,
|
|
233
|
+
'fontWeight': 400,
|
|
234
|
+
'fontStyle': normal,
|
|
235
|
+
'lineHeight': 1.45,
|
|
236
|
+
'fontSize': 20px,
|
|
237
|
+
'letterSpacing': none,
|
|
238
|
+
'paragraphSpacing': 0,
|
|
239
|
+
'paragraphIndent': 0,
|
|
240
|
+
'textCase': none,
|
|
241
|
+
'textDecoration': none,
|
|
242
|
+
),
|
|
243
|
+
'Body Large Semibold': (
|
|
244
|
+
'fontFamily': $font-family-primary,
|
|
245
|
+
'fontWeight': 600,
|
|
246
|
+
'fontStyle': normal,
|
|
247
|
+
'lineHeight': 1.45,
|
|
248
|
+
'fontSize': 20px,
|
|
249
|
+
'letterSpacing': none,
|
|
250
|
+
'paragraphSpacing': 0,
|
|
251
|
+
'paragraphIndent': 0,
|
|
252
|
+
'textCase': none,
|
|
253
|
+
'textDecoration': none,
|
|
254
|
+
),
|
|
255
|
+
'Body Large Italic': (
|
|
256
|
+
'fontFamily': $font-family-primary,
|
|
257
|
+
'fontWeight': 600,
|
|
258
|
+
'lineHeight': 1.45,
|
|
259
|
+
'fontSize': 20px,
|
|
260
|
+
'fontStyle': italic,
|
|
261
|
+
'letterSpacing': none,
|
|
262
|
+
'paragraphSpacing': 0,
|
|
263
|
+
'paragraphIndent': 0,
|
|
264
|
+
'textCase': none,
|
|
265
|
+
'textDecoration': none,
|
|
266
|
+
),
|
|
267
|
+
),
|
|
268
|
+
'detail': (),
|
|
269
|
+
),
|
|
270
|
+
'mobile': (
|
|
271
|
+
'headings': (
|
|
272
|
+
'Claim': (
|
|
273
|
+
'fontFamily': $font-family-secondary,
|
|
274
|
+
'fontWeight': 900,
|
|
275
|
+
'fontStyle': normal,
|
|
276
|
+
'lineHeight': 100%,
|
|
277
|
+
'fontSize': 32px,
|
|
278
|
+
'letterSpacing': none,
|
|
279
|
+
'paragraphSpacing': 0,
|
|
280
|
+
'paragraphIndent': 0,
|
|
281
|
+
'textCase': none,
|
|
282
|
+
'textDecoration': none,
|
|
283
|
+
),
|
|
284
|
+
'Claim Uppercase': (
|
|
285
|
+
'fontFamily': $font-family-secondary,
|
|
286
|
+
'fontWeight': 900,
|
|
287
|
+
'fontStyle': normal,
|
|
288
|
+
'lineHeight': 100%,
|
|
289
|
+
'fontSize': 32px,
|
|
290
|
+
'letterSpacing': none,
|
|
291
|
+
'paragraphSpacing': 0,
|
|
292
|
+
'paragraphIndent': 0,
|
|
293
|
+
'textCase': uppercase,
|
|
294
|
+
'textDecoration': none,
|
|
295
|
+
),
|
|
296
|
+
'H1': (
|
|
297
|
+
'fontFamily': $font-family-secondary,
|
|
298
|
+
'fontWeight': 900,
|
|
299
|
+
'fontStyle': normal,
|
|
300
|
+
'lineHeight': 100%,
|
|
301
|
+
'fontSize': 28px,
|
|
302
|
+
'letterSpacing': none,
|
|
303
|
+
'paragraphSpacing': 0,
|
|
304
|
+
'paragraphIndent': 0,
|
|
305
|
+
'textCase': none,
|
|
306
|
+
'textDecoration': none,
|
|
307
|
+
),
|
|
308
|
+
'H1 Uppercase': (
|
|
309
|
+
'fontFamily': $font-family-secondary,
|
|
310
|
+
'fontWeight': 900,
|
|
311
|
+
'fontStyle': normal,
|
|
312
|
+
'lineHeight': 100%,
|
|
313
|
+
'fontSize': 28px,
|
|
314
|
+
'letterSpacing': none,
|
|
315
|
+
'paragraphSpacing': 0,
|
|
316
|
+
'paragraphIndent': 0,
|
|
317
|
+
'textCase': uppercase,
|
|
318
|
+
'textDecoration': none,
|
|
319
|
+
),
|
|
320
|
+
'H2': (
|
|
321
|
+
'fontFamily': $font-family-secondary,
|
|
322
|
+
'fontWeight': 700,
|
|
323
|
+
'fontStyle': normal,
|
|
324
|
+
'lineHeight': 115%,
|
|
325
|
+
'fontSize': 28px,
|
|
326
|
+
'letterSpacing': none,
|
|
327
|
+
'paragraphSpacing': 0,
|
|
328
|
+
'paragraphIndent': 0,
|
|
329
|
+
'textCase': none,
|
|
330
|
+
'textDecoration': none,
|
|
331
|
+
),
|
|
332
|
+
'H3': (
|
|
333
|
+
'fontFamily': $font-family-secondary,
|
|
334
|
+
'fontWeight': 700,
|
|
335
|
+
'fontStyle': normal,
|
|
336
|
+
'lineHeight': 115%,
|
|
337
|
+
'fontSize': 24px,
|
|
338
|
+
'letterSpacing': none,
|
|
339
|
+
'paragraphSpacing': 0,
|
|
340
|
+
'paragraphIndent': 0,
|
|
341
|
+
'textCase': none,
|
|
342
|
+
'textDecoration': none,
|
|
343
|
+
),
|
|
344
|
+
'H4': (
|
|
345
|
+
'fontFamily': $font-family-secondary,
|
|
346
|
+
'fontWeight': 700,
|
|
347
|
+
'fontStyle': normal,
|
|
348
|
+
'lineHeight': 115%,
|
|
349
|
+
'fontSize': 20px,
|
|
350
|
+
'letterSpacing': none,
|
|
351
|
+
'paragraphSpacing': 0,
|
|
352
|
+
'paragraphIndent': 0,
|
|
353
|
+
'textCase': none,
|
|
354
|
+
'textDecoration': none,
|
|
355
|
+
),
|
|
356
|
+
'H5': (
|
|
357
|
+
'fontFamily': $font-family-secondary,
|
|
358
|
+
'fontWeight': 700,
|
|
359
|
+
'fontStyle': normal,
|
|
360
|
+
'lineHeight': 115%,
|
|
361
|
+
'fontSize': 20px,
|
|
362
|
+
'letterSpacing': none,
|
|
363
|
+
'paragraphSpacing': 0,
|
|
364
|
+
'paragraphIndent': 0,
|
|
365
|
+
'textCase': none,
|
|
366
|
+
'textDecoration': none,
|
|
367
|
+
),
|
|
368
|
+
'H6': (
|
|
369
|
+
'fontFamily': $font-family-secondary,
|
|
370
|
+
'fontWeight': 700,
|
|
371
|
+
'fontStyle': normal,
|
|
372
|
+
'lineHeight': 115%,
|
|
373
|
+
'fontSize': 16px,
|
|
374
|
+
'letterSpacing': none,
|
|
375
|
+
'paragraphSpacing': 0,
|
|
376
|
+
'paragraphIndent': 0,
|
|
377
|
+
'textCase': none,
|
|
378
|
+
'textDecoration': none,
|
|
379
|
+
),
|
|
380
|
+
'Overline': (
|
|
381
|
+
'fontFamily': $font-family-primary,
|
|
382
|
+
'fontWeight': 700,
|
|
383
|
+
'fontStyle': normal,
|
|
384
|
+
'lineHeight': 115%,
|
|
385
|
+
'fontSize': 14px,
|
|
386
|
+
'letterSpacing': 1px,
|
|
387
|
+
'paragraphSpacing': 0,
|
|
388
|
+
'paragraphIndent': 0,
|
|
389
|
+
'textCase': uppercase,
|
|
390
|
+
'textDecoration': none,
|
|
391
|
+
),
|
|
392
|
+
),
|
|
393
|
+
'body': (
|
|
394
|
+
'Body Large': (
|
|
395
|
+
'fontFamily': $font-family-primary,
|
|
396
|
+
'fontWeight': 400,
|
|
397
|
+
'fontStyle': normal,
|
|
398
|
+
'lineHeight': 1.45,
|
|
399
|
+
'fontSize': 18px,
|
|
400
|
+
'letterSpacing': none,
|
|
401
|
+
'paragraphSpacing': 0,
|
|
402
|
+
'paragraphIndent': 0,
|
|
403
|
+
'textCase': none,
|
|
404
|
+
'textDecoration': none,
|
|
405
|
+
),
|
|
406
|
+
'Body Large Semibold': (
|
|
407
|
+
'fontFamily': $font-family-primary,
|
|
408
|
+
'fontWeight': 600,
|
|
409
|
+
'fontStyle': normal,
|
|
410
|
+
'lineHeight': 1.45,
|
|
411
|
+
'fontSize': 18px,
|
|
412
|
+
'letterSpacing': none,
|
|
413
|
+
'paragraphSpacing': 0,
|
|
414
|
+
'paragraphIndent': 0,
|
|
415
|
+
'textCase': none,
|
|
416
|
+
'textDecoration': none,
|
|
417
|
+
),
|
|
418
|
+
'Body': (
|
|
419
|
+
'fontFamily': $font-family-primary,
|
|
420
|
+
'fontWeight': 400,
|
|
421
|
+
'fontStyle': normal,
|
|
422
|
+
'lineHeight': 1.45,
|
|
423
|
+
'fontSize': 16px,
|
|
424
|
+
'letterSpacing': none,
|
|
425
|
+
'paragraphSpacing': 0,
|
|
426
|
+
'paragraphIndent': 0,
|
|
427
|
+
'textCase': none,
|
|
428
|
+
'textDecoration': none,
|
|
429
|
+
),
|
|
430
|
+
'Body Semibold': (
|
|
431
|
+
'fontFamily': $font-family-primary,
|
|
432
|
+
'fontWeight': 600,
|
|
433
|
+
'fontStyle': normal,
|
|
434
|
+
'lineHeight': 1.45,
|
|
435
|
+
'fontSize': 16px,
|
|
436
|
+
'letterSpacing': none,
|
|
437
|
+
'paragraphSpacing': 0,
|
|
438
|
+
'paragraphIndent': 0,
|
|
439
|
+
'textCase': none,
|
|
440
|
+
'textDecoration': none,
|
|
441
|
+
),
|
|
442
|
+
'Body Italic': (
|
|
443
|
+
'fontFamily': $font-family-primary,
|
|
444
|
+
'fontWeight': 600,
|
|
445
|
+
'lineHeight': 1.45,
|
|
446
|
+
'fontSize': 16px,
|
|
447
|
+
'fontStyle': italic,
|
|
448
|
+
'letterSpacing': none,
|
|
449
|
+
'paragraphSpacing': 0,
|
|
450
|
+
'paragraphIndent': 0,
|
|
451
|
+
'textCase': none,
|
|
452
|
+
'textDecoration': none,
|
|
453
|
+
),
|
|
454
|
+
'Body Large Italic': (
|
|
455
|
+
'fontFamily': $font-family-primary,
|
|
456
|
+
'fontWeight': 600,
|
|
457
|
+
'lineHeight': 1.45,
|
|
458
|
+
'fontSize': 18px,
|
|
459
|
+
'fontStyle': italic,
|
|
460
|
+
'letterSpacing': none,
|
|
461
|
+
'paragraphSpacing': 0,
|
|
462
|
+
'paragraphIndent': 0,
|
|
463
|
+
'textCase': none,
|
|
464
|
+
'textDecoration': none,
|
|
465
|
+
),
|
|
466
|
+
'Quote Large': (
|
|
467
|
+
'fontFamily': $font-family-primary,
|
|
468
|
+
'fontWeight': 600,
|
|
469
|
+
'lineHeight': 1.5,
|
|
470
|
+
'fontSize': 24px,
|
|
471
|
+
'fontStyle': italic,
|
|
472
|
+
'letterSpacing': none,
|
|
473
|
+
'paragraphSpacing': 0,
|
|
474
|
+
'paragraphIndent': 0,
|
|
475
|
+
'textCase': none,
|
|
476
|
+
'textDecoration': none,
|
|
477
|
+
),
|
|
478
|
+
),
|
|
479
|
+
'detail': (
|
|
480
|
+
'Detail Small': (
|
|
481
|
+
'fontFamily': $font-family-primary,
|
|
482
|
+
'fontWeight': 400,
|
|
483
|
+
'fontStyle': normal,
|
|
484
|
+
'lineHeight': 1.45,
|
|
485
|
+
'fontSize': 14px,
|
|
486
|
+
'letterSpacing': none,
|
|
487
|
+
'paragraphSpacing': 0,
|
|
488
|
+
'paragraphIndent': 0,
|
|
489
|
+
'textCase': none,
|
|
490
|
+
'textDecoration': none,
|
|
491
|
+
),
|
|
492
|
+
'Detail Small Bold': (
|
|
493
|
+
'fontFamily': $font-family-primary,
|
|
494
|
+
'fontWeight': 700,
|
|
495
|
+
'fontStyle': normal,
|
|
496
|
+
'lineHeight': 1.45,
|
|
497
|
+
'fontSize': 14px,
|
|
498
|
+
'letterSpacing': none,
|
|
499
|
+
'paragraphSpacing': 0,
|
|
500
|
+
'paragraphIndent': 0,
|
|
501
|
+
'textCase': none,
|
|
502
|
+
'textDecoration': none,
|
|
503
|
+
),
|
|
504
|
+
),
|
|
505
|
+
),
|
|
506
|
+
);
|
package/styles/_functions.scss
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
@use 'sass:color';
|
|
2
2
|
@use 'sass:map';
|
|
3
3
|
@use 'sass:math';
|
|
4
|
-
@
|
|
4
|
+
@use 'design-tokens';
|
|
5
5
|
|
|
6
6
|
@function mapGet($map, $keys...) {
|
|
7
7
|
$value: map.get($map, $keys...);
|
|
@@ -14,29 +14,30 @@
|
|
|
14
14
|
}
|
|
15
15
|
|
|
16
16
|
@function getSemanticColor($color, $shade) {
|
|
17
|
-
@return mapGet(
|
|
17
|
+
@return mapGet(design-tokens.$tokens, color, semantic, $color, $shade);
|
|
18
18
|
}
|
|
19
19
|
|
|
20
20
|
@function getSpacing($spacingType) {
|
|
21
|
-
@return mapGet(
|
|
21
|
+
@return mapGet(design-tokens.$tokens, spacing, $spacingType);
|
|
22
22
|
}
|
|
23
23
|
|
|
24
24
|
@function getBoxShadow($type, $variant) {
|
|
25
|
-
@return mapGet(
|
|
25
|
+
@return mapGet(design-tokens.$tokens, Shadow, $type, $variant);
|
|
26
26
|
}
|
|
27
27
|
|
|
28
28
|
@function getBorderRadius($spacingType) {
|
|
29
|
-
@return mapGet(
|
|
29
|
+
@return mapGet(design-tokens.$tokens, 'borderRadius', $spacingType);
|
|
30
30
|
}
|
|
31
31
|
|
|
32
32
|
@function getFontFamily($type, $level) {
|
|
33
|
-
$typo-settings: map.get(map.get(
|
|
33
|
+
$typo-settings: map.get(map.get(design-tokens.$tokens, $type), $level);
|
|
34
34
|
|
|
35
35
|
@return map.get($typo-settings, 'fontFamily'), 'Helvetica Neue', 'Arial', sans-serif;
|
|
36
36
|
}
|
|
37
37
|
|
|
38
38
|
@function hex2rgb($hex) {
|
|
39
|
-
@return color.
|
|
39
|
+
@return color.channel($hex, 'red', $space: rgb),
|
|
40
|
+
color.channel($hex, 'green', $space: rgb), color.channel($hex, 'blue', $space: rgb);
|
|
40
41
|
}
|
|
41
42
|
|
|
42
43
|
@function ceilFunction($number) {
|
package/styles/_mixins.scss
CHANGED
|
@@ -1,9 +1,13 @@
|
|
|
1
1
|
@use 'sass:map';
|
|
2
|
+
@use 'design-tokens';
|
|
3
|
+
@use 'design-tokens-landing';
|
|
4
|
+
@use 'functions';
|
|
5
|
+
@use 'media';
|
|
2
6
|
|
|
3
|
-
@mixin spacing($properties, $map: map.get(
|
|
7
|
+
@mixin spacing($properties, $map: map.get(design-tokens.$tokens, 'spacing')) {
|
|
4
8
|
// Extract the correct spacing settings;
|
|
5
9
|
@each $size, $i in $map {
|
|
6
|
-
$value: map.get(
|
|
10
|
+
$value: map.get(design-tokens.$tokens, 'spacing', $size);
|
|
7
11
|
&-#{$size} {
|
|
8
12
|
@each $property in $properties {
|
|
9
13
|
#{$property}: #{$value};
|
|
@@ -14,73 +18,86 @@
|
|
|
14
18
|
|
|
15
19
|
@mixin typography($type, $level) {
|
|
16
20
|
// Extract the correct typography settings based on the provided type and level
|
|
17
|
-
$typo-settings: map.get(map.get(
|
|
21
|
+
$typo-settings: map.get(map.get(design-tokens.$tokens, $type), $level);
|
|
18
22
|
|
|
19
23
|
// Ensure the level exists
|
|
20
24
|
@if $typo-settings {
|
|
25
|
+
margin-bottom: functions.mapGet($typo-settings, 'paragraphSpacing');
|
|
21
26
|
font-family:
|
|
22
|
-
mapGet($typo-settings, 'fontFamily'), 'Helvetica Neue', Arial, sans-serif;
|
|
27
|
+
functions.mapGet($typo-settings, 'fontFamily'), 'Helvetica Neue', Arial, sans-serif;
|
|
23
28
|
font-feature-settings: 'salt';
|
|
24
|
-
font-size: mapGet($typo-settings, 'fontSize');
|
|
25
|
-
font-weight: mapGet($typo-settings, 'fontWeight');
|
|
26
|
-
letter-spacing: mapGet($typo-settings, 'letterSpacing');
|
|
27
|
-
line-height: mapGet($typo-settings, 'lineHeight');
|
|
28
|
-
text-decoration: mapGet($typo-settings, 'textDecoration');
|
|
29
|
-
text-indent: mapGet($typo-settings, 'paragraphIndent');
|
|
30
|
-
text-transform: mapGet($typo-settings, 'textCase');
|
|
29
|
+
font-size: functions.mapGet($typo-settings, 'fontSize');
|
|
30
|
+
font-weight: functions.mapGet($typo-settings, 'fontWeight');
|
|
31
|
+
letter-spacing: functions.mapGet($typo-settings, 'letterSpacing');
|
|
32
|
+
line-height: functions.mapGet($typo-settings, 'lineHeight');
|
|
33
|
+
text-decoration: functions.mapGet($typo-settings, 'textDecoration');
|
|
34
|
+
text-indent: functions.mapGet($typo-settings, 'paragraphIndent');
|
|
35
|
+
text-transform: functions.mapGet($typo-settings, 'textCase');
|
|
31
36
|
} @else {
|
|
32
37
|
@error "Unknown typography type: #{$type} or level: #{$level}.";
|
|
33
38
|
}
|
|
34
39
|
}
|
|
35
40
|
|
|
36
41
|
@mixin typographyLanding($type, $level) {
|
|
37
|
-
$typo-settings-desktop: map.get(
|
|
38
|
-
|
|
39
|
-
|
|
42
|
+
$typo-settings-desktop: map.get(
|
|
43
|
+
map.get(design-tokens-landing.$tokensLanding, desktop, $type),
|
|
44
|
+
$level
|
|
45
|
+
);
|
|
46
|
+
$typo-settings-tablet: map.get(
|
|
47
|
+
map.get(design-tokens-landing.$tokensLanding, tablet, $type),
|
|
48
|
+
$level
|
|
49
|
+
);
|
|
50
|
+
$typo-settings-mobile: map.get(
|
|
51
|
+
map.get(design-tokens-landing.$tokensLanding, mobile, $type),
|
|
52
|
+
$level
|
|
53
|
+
);
|
|
40
54
|
|
|
41
55
|
@if $typo-settings-mobile {
|
|
42
56
|
font-family:
|
|
43
|
-
mapGet($typo-settings-mobile, 'fontFamily'), 'Helvetica Neue', Arial,
|
|
57
|
+
functions.mapGet($typo-settings-mobile, 'fontFamily'), 'Helvetica Neue', Arial,
|
|
58
|
+
sans-serif;
|
|
44
59
|
font-feature-settings: 'salt';
|
|
45
|
-
font-size: mapGet($typo-settings-mobile, 'fontSize');
|
|
46
|
-
font-style: mapGet($typo-settings-mobile, 'fontStyle');
|
|
47
|
-
font-weight: mapGet($typo-settings-mobile, 'fontWeight');
|
|
48
|
-
letter-spacing: mapGet($typo-settings-mobile, 'letterSpacing');
|
|
49
|
-
line-height: mapGet($typo-settings-mobile, 'lineHeight');
|
|
50
|
-
text-decoration: mapGet($typo-settings-mobile, 'textDecoration');
|
|
51
|
-
text-indent: mapGet($typo-settings-mobile, 'paragraphIndent');
|
|
52
|
-
text-transform: mapGet($typo-settings-mobile, 'textCase');
|
|
60
|
+
font-size: functions.mapGet($typo-settings-mobile, 'fontSize');
|
|
61
|
+
font-style: functions.mapGet($typo-settings-mobile, 'fontStyle');
|
|
62
|
+
font-weight: functions.mapGet($typo-settings-mobile, 'fontWeight');
|
|
63
|
+
letter-spacing: functions.mapGet($typo-settings-mobile, 'letterSpacing');
|
|
64
|
+
line-height: functions.mapGet($typo-settings-mobile, 'lineHeight');
|
|
65
|
+
text-decoration: functions.mapGet($typo-settings-mobile, 'textDecoration');
|
|
66
|
+
text-indent: functions.mapGet($typo-settings-mobile, 'paragraphIndent');
|
|
67
|
+
text-transform: functions.mapGet($typo-settings-mobile, 'textCase');
|
|
53
68
|
}
|
|
54
69
|
|
|
55
70
|
@if $typo-settings-tablet {
|
|
56
|
-
@media #{
|
|
71
|
+
@media #{media.$media-tablet} {
|
|
57
72
|
font-family:
|
|
58
|
-
mapGet($typo-settings-tablet, 'fontFamily'), 'Helvetica Neue', Arial,
|
|
73
|
+
functions.mapGet($typo-settings-tablet, 'fontFamily'), 'Helvetica Neue', Arial,
|
|
74
|
+
sans-serif;
|
|
59
75
|
font-feature-settings: 'salt';
|
|
60
|
-
font-size: mapGet($typo-settings-tablet, 'fontSize');
|
|
61
|
-
font-style: mapGet($typo-settings-tablet, 'fontStyle');
|
|
62
|
-
font-weight: mapGet($typo-settings-tablet, 'fontWeight');
|
|
63
|
-
letter-spacing: mapGet($typo-settings-tablet, 'letterSpacing');
|
|
64
|
-
line-height: mapGet($typo-settings-tablet, 'lineHeight');
|
|
65
|
-
text-decoration: mapGet($typo-settings-tablet, 'textDecoration');
|
|
66
|
-
text-indent: mapGet($typo-settings-tablet, 'paragraphIndent');
|
|
67
|
-
text-transform: mapGet($typo-settings-tablet, 'textCase');
|
|
76
|
+
font-size: functions.mapGet($typo-settings-tablet, 'fontSize');
|
|
77
|
+
font-style: functions.mapGet($typo-settings-tablet, 'fontStyle');
|
|
78
|
+
font-weight: functions.mapGet($typo-settings-tablet, 'fontWeight');
|
|
79
|
+
letter-spacing: functions.mapGet($typo-settings-tablet, 'letterSpacing');
|
|
80
|
+
line-height: functions.mapGet($typo-settings-tablet, 'lineHeight');
|
|
81
|
+
text-decoration: functions.mapGet($typo-settings-tablet, 'textDecoration');
|
|
82
|
+
text-indent: functions.mapGet($typo-settings-tablet, 'paragraphIndent');
|
|
83
|
+
text-transform: functions.mapGet($typo-settings-tablet, 'textCase');
|
|
68
84
|
}
|
|
69
85
|
}
|
|
70
86
|
|
|
71
87
|
@if $typo-settings-desktop {
|
|
72
|
-
@media #{
|
|
88
|
+
@media #{media.$media-desktop} {
|
|
73
89
|
font-family:
|
|
74
|
-
mapGet($typo-settings-desktop, 'fontFamily'), 'Helvetica Neue', Arial,
|
|
90
|
+
functions.mapGet($typo-settings-desktop, 'fontFamily'), 'Helvetica Neue', Arial,
|
|
91
|
+
sans-serif;
|
|
75
92
|
font-feature-settings: 'salt';
|
|
76
|
-
font-size: mapGet($typo-settings-desktop, 'fontSize');
|
|
77
|
-
font-style: mapGet($typo-settings-desktop, 'fontStyle');
|
|
78
|
-
font-weight: mapGet($typo-settings-desktop, 'fontWeight');
|
|
79
|
-
letter-spacing: mapGet($typo-settings-desktop, 'letterSpacing');
|
|
80
|
-
line-height: mapGet($typo-settings-desktop, 'lineHeight');
|
|
81
|
-
text-decoration: mapGet($typo-settings-desktop, 'textDecoration');
|
|
82
|
-
text-indent: mapGet($typo-settings-desktop, 'paragraphIndent');
|
|
83
|
-
text-transform: mapGet($typo-settings-desktop, 'textCase');
|
|
93
|
+
font-size: functions.mapGet($typo-settings-desktop, 'fontSize');
|
|
94
|
+
font-style: functions.mapGet($typo-settings-desktop, 'fontStyle');
|
|
95
|
+
font-weight: functions.mapGet($typo-settings-desktop, 'fontWeight');
|
|
96
|
+
letter-spacing: functions.mapGet($typo-settings-desktop, 'letterSpacing');
|
|
97
|
+
line-height: functions.mapGet($typo-settings-desktop, 'lineHeight');
|
|
98
|
+
text-decoration: functions.mapGet($typo-settings-desktop, 'textDecoration');
|
|
99
|
+
text-indent: functions.mapGet($typo-settings-desktop, 'paragraphIndent');
|
|
100
|
+
text-transform: functions.mapGet($typo-settings-desktop, 'textCase');
|
|
84
101
|
}
|
|
85
102
|
}
|
|
86
103
|
}
|