@eui/styles 21.0.0-alpha.9 → 21.0.0-next.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 +1 -1
- package/dist/assets/ecl/ec/logo/negative/logo-ec--gl.svg +251 -0
- package/dist/assets/ecl/ec/logo/negative/logo-ec--kl.svg +251 -0
- package/dist/assets/ecl/ec/logo/positive/logo-ec--gl.svg +247 -0
- package/dist/assets/ecl/ec/logo/positive/logo-ec--kl.svg +247 -0
- package/dist/assets/ecl/eu/logo/standard-version/negative/logo-eu--gl.svg +197 -0
- package/dist/assets/ecl/eu/logo/standard-version/negative/logo-eu--kl.svg +197 -0
- package/dist/assets/ecl/eu/logo/standard-version/positive/logo-eu--gl.svg +188 -0
- package/dist/assets/ecl/eu/logo/standard-version/positive/logo-eu--kl.svg +188 -0
- package/dist/assets/icons/sprites/ecl.json +103 -0
- package/dist/assets/icons/sprites/ecl.svg +1 -0
- package/dist/assets/icons/sprites/eui.json +55 -138
- package/dist/assets/icons/sprites/eui.svg +1 -1
- package/dist/assets/icons/sprites/{phosphor-duotone.json → fill.json} +1 -1
- package/dist/assets/icons/sprites/fill.svg +1 -0
- package/dist/assets/icons/sprites/{phosphor-light.json → light.json} +1 -1
- package/dist/assets/icons/sprites/light.svg +1 -0
- package/dist/assets/icons/sprites/{phosphor-fill.json → regular.json} +1 -1
- package/dist/assets/icons/sprites/regular.svg +1 -0
- package/dist/base/01-base/functions/_other.functions.scss +5 -4
- package/dist/base/01-base/mixins/_accessibility.mixins.scss +8 -2
- package/dist/base/01-base/mixins/_eui-input.scss +3 -2
- package/dist/base/01-base/mixins/_eui-scrollbars.scss +24 -1
- package/dist/base/02-tokens/maps-dark-theme.scss +10 -122
- package/dist/base/02-tokens/maps.scss +408 -325
- package/dist/base/03-vars/vars-dark-theme.scss +5 -3
- package/dist/base/03-vars/vars.scss +90 -95
- package/dist/base/05-assets/flags/_icons-generics.scss +5 -5
- package/dist/base/99-utilities/default/others/_eui-u-border-states.scss +0 -4
- package/dist/base/99-utilities/default/tokens/_typography.scss +9 -3
- package/dist/eui-base.css +1 -1
- package/dist/eui-base.css.map +1 -1
- package/dist/eui-ecl-ec.css +2 -2
- package/dist/eui-ecl-ec.css.map +1 -1
- package/dist/eui-ecl-eu.css +2 -2
- package/dist/eui-ecl-eu.css.map +1 -1
- package/dist/eui-icons-flags.css +1 -1
- package/dist/eui-icons-flags.css.map +1 -1
- package/dist/eui-showcase-all.css +1 -1
- package/dist/eui-showcase-all.css.map +1 -1
- package/dist/eui-theme-compact.css +1 -1
- package/dist/eui-theme-compact.css.map +1 -1
- package/dist/eui-theme-dark.css +1 -1
- package/dist/eui-theme-dark.css.map +1 -1
- package/dist/eui-utilities.css +1 -1
- package/dist/eui-utilities.css.map +1 -1
- package/dist/eui.css +1 -1
- package/dist/eui.css.map +1 -1
- package/package.json +3 -7
- package/dist/assets/icons/sprites/phosphor-duotone.svg +0 -1
- package/dist/assets/icons/sprites/phosphor-fill.svg +0 -1
- package/dist/assets/icons/sprites/phosphor-light.svg +0 -1
- package/dist/base/99-utilities/utilities-legacy-theme.scss +0 -52
|
@@ -4,6 +4,13 @@
|
|
|
4
4
|
|
|
5
5
|
// BORDER RADIUS
|
|
6
6
|
|
|
7
|
+
$ecl-border-radius: ( // v5.alpha.16
|
|
8
|
+
'xs': 2px,
|
|
9
|
+
's': 4px,
|
|
10
|
+
'm': 8px,
|
|
11
|
+
'l': 12px,
|
|
12
|
+
);
|
|
13
|
+
|
|
7
14
|
$border-radius-map: (
|
|
8
15
|
none: 0,
|
|
9
16
|
s: 2px,
|
|
@@ -89,24 +96,6 @@ $opacity-map: (
|
|
|
89
96
|
|
|
90
97
|
// SPACING
|
|
91
98
|
|
|
92
|
-
// $old-spacing-map: (
|
|
93
|
-
// none: 0,
|
|
94
|
-
// 4xs: 0.0625rem, // => 5xs
|
|
95
|
-
// 3xs: 0.125rem, // => 4xs
|
|
96
|
-
// 2xs: 0.25rem, // => 3xs
|
|
97
|
-
// xs: 0.5rem, // ======
|
|
98
|
-
// s: 0.75rem, // ======
|
|
99
|
-
// m: 1rem, // ======
|
|
100
|
-
// l: 1.25rem, // ======
|
|
101
|
-
// xl: 1.5rem, // ======
|
|
102
|
-
// 2xl: 2rem, // => 3xl
|
|
103
|
-
// 3xl: 2.5rem, // => 5xl
|
|
104
|
-
// 4xl: 3rem, // => 6xl
|
|
105
|
-
// 5xl: 3.5rem, // => 7xl
|
|
106
|
-
// 6xl: 4rem, // => 8xl
|
|
107
|
-
// 7xl: 5rem // => 10xl
|
|
108
|
-
// );
|
|
109
|
-
|
|
110
99
|
$spacing-map: (
|
|
111
100
|
none: 0,
|
|
112
101
|
5xs: 0.0625rem, // 4xs
|
|
@@ -268,40 +257,41 @@ $ecl-colors: (
|
|
|
268
257
|
|
|
269
258
|
$color-map: (
|
|
270
259
|
br: (
|
|
271
|
-
950: map
|
|
272
|
-
900: map
|
|
273
|
-
800: map
|
|
274
|
-
700: map
|
|
260
|
+
950: map.get($ecl-colors, 'grey-950'),
|
|
261
|
+
900: map.get($ecl-colors, 'grey-900'),
|
|
262
|
+
800: map.get($ecl-colors, 'grey-800'),
|
|
263
|
+
700: map.get($ecl-colors, 'grey-700')
|
|
275
264
|
),
|
|
276
265
|
pr: (
|
|
277
|
-
950: map
|
|
278
|
-
900: map
|
|
279
|
-
800: map
|
|
280
|
-
700: map
|
|
281
|
-
600: map
|
|
282
|
-
500: map
|
|
283
|
-
400: map
|
|
284
|
-
300: map
|
|
285
|
-
200: map
|
|
286
|
-
100: map
|
|
287
|
-
75: map
|
|
288
|
-
50: map
|
|
289
|
-
25: map
|
|
266
|
+
950: map.get($ecl-colors, 'primary-950'),
|
|
267
|
+
900: map.get($ecl-colors, 'primary-900'),
|
|
268
|
+
800: map.get($ecl-colors, 'primary-800'),
|
|
269
|
+
700: map.get($ecl-colors, 'primary-700'),
|
|
270
|
+
600: map.get($ecl-colors, 'primary-600'),
|
|
271
|
+
500: map.get($ecl-colors, 'primary-500'),
|
|
272
|
+
400: map.get($ecl-colors, 'primary-400'),
|
|
273
|
+
300: map.get($ecl-colors, 'primary-300'),
|
|
274
|
+
200: map.get($ecl-colors, 'primary-200'),
|
|
275
|
+
100: map.get($ecl-colors, 'primary-100'),
|
|
276
|
+
75: map.get($ecl-colors, 'primary-75'),
|
|
277
|
+
50: map.get($ecl-colors, 'primary-50'),
|
|
278
|
+
25: map.get($ecl-colors, 'primary-25')
|
|
290
279
|
),
|
|
291
280
|
gr: (
|
|
292
|
-
950: map
|
|
293
|
-
900: map
|
|
294
|
-
800: map
|
|
295
|
-
700: map
|
|
296
|
-
600: map
|
|
297
|
-
500: map
|
|
298
|
-
400: map
|
|
299
|
-
300: map
|
|
300
|
-
200: map
|
|
301
|
-
100: map
|
|
302
|
-
75: map
|
|
303
|
-
50: map
|
|
304
|
-
|
|
281
|
+
950: map.get($ecl-colors, 'grey-950'),
|
|
282
|
+
900: map.get($ecl-colors, 'grey-900'),
|
|
283
|
+
800: map.get($ecl-colors, 'grey-800'),
|
|
284
|
+
700: map.get($ecl-colors, 'grey-700'),
|
|
285
|
+
600: map.get($ecl-colors, 'grey-600'),
|
|
286
|
+
500: map.get($ecl-colors, 'grey-500'),
|
|
287
|
+
400: map.get($ecl-colors, 'grey-400'),
|
|
288
|
+
300: map.get($ecl-colors, 'grey-300'),
|
|
289
|
+
200: map.get($ecl-colors, 'grey-200'),
|
|
290
|
+
100: map.get($ecl-colors, 'grey-100'),
|
|
291
|
+
75: map.get($ecl-colors, 'grey-75'),
|
|
292
|
+
50: map.get($ecl-colors, 'grey-50'),
|
|
293
|
+
// 50: #f3f3f6,
|
|
294
|
+
25: map.get($ecl-colors, 'grey-25')
|
|
305
295
|
),
|
|
306
296
|
grn: (
|
|
307
297
|
950: #171717,
|
|
@@ -316,82 +306,83 @@ $color-map: (
|
|
|
316
306
|
100: #e4e4e4,
|
|
317
307
|
75: #efefef,
|
|
318
308
|
50: #f7f7f7,
|
|
309
|
+
// 50: #f5f5f5,
|
|
319
310
|
25: #fbfbfb
|
|
320
311
|
),
|
|
321
312
|
in: (
|
|
322
|
-
950: map
|
|
323
|
-
900: map
|
|
324
|
-
800: map
|
|
325
|
-
700: map
|
|
326
|
-
600: map
|
|
327
|
-
500: map
|
|
328
|
-
400: map
|
|
329
|
-
300: map
|
|
330
|
-
200: map
|
|
331
|
-
100: map
|
|
332
|
-
75: map
|
|
333
|
-
50: map
|
|
334
|
-
25: map
|
|
313
|
+
950: map.get($ecl-colors, 'info-950'),
|
|
314
|
+
900: map.get($ecl-colors, 'info-900'),
|
|
315
|
+
800: map.get($ecl-colors, 'info-800'),
|
|
316
|
+
700: map.get($ecl-colors, 'info-700'),
|
|
317
|
+
600: map.get($ecl-colors, 'info-600'),
|
|
318
|
+
500: map.get($ecl-colors, 'info-500'),
|
|
319
|
+
400: map.get($ecl-colors, 'info-400'),
|
|
320
|
+
300: map.get($ecl-colors, 'info-300'),
|
|
321
|
+
200: map.get($ecl-colors, 'info-200'),
|
|
322
|
+
100: map.get($ecl-colors, 'info-100'),
|
|
323
|
+
75: map.get($ecl-colors, 'info-75'),
|
|
324
|
+
50: map.get($ecl-colors, 'info-50'),
|
|
325
|
+
25: map.get($ecl-colors, 'info-25')
|
|
335
326
|
),
|
|
336
327
|
su: (
|
|
337
|
-
950: map
|
|
338
|
-
900: map
|
|
339
|
-
800: map
|
|
340
|
-
700: map
|
|
341
|
-
600: map
|
|
342
|
-
500: map
|
|
343
|
-
400: map
|
|
344
|
-
300: map
|
|
345
|
-
200: map
|
|
346
|
-
100: map
|
|
347
|
-
75: map
|
|
348
|
-
50: map
|
|
349
|
-
25: map
|
|
328
|
+
950: map.get($ecl-colors, 'success-950'),
|
|
329
|
+
900: map.get($ecl-colors, 'success-900'),
|
|
330
|
+
800: map.get($ecl-colors, 'success-800'),
|
|
331
|
+
700: map.get($ecl-colors, 'success-700'),
|
|
332
|
+
600: map.get($ecl-colors, 'success-600'),
|
|
333
|
+
500: map.get($ecl-colors, 'success-500'),
|
|
334
|
+
400: map.get($ecl-colors, 'success-400'),
|
|
335
|
+
300: map.get($ecl-colors, 'success-300'),
|
|
336
|
+
200: map.get($ecl-colors, 'success-200'),
|
|
337
|
+
100: map.get($ecl-colors, 'success-100'),
|
|
338
|
+
75: map.get($ecl-colors, 'success-75'),
|
|
339
|
+
50: map.get($ecl-colors, 'success-50'),
|
|
340
|
+
25: map.get($ecl-colors, 'success-25')
|
|
350
341
|
),
|
|
351
342
|
wa: (
|
|
352
|
-
950: map
|
|
353
|
-
900: map
|
|
354
|
-
800: map
|
|
355
|
-
700: map
|
|
356
|
-
600: map
|
|
357
|
-
500: map
|
|
358
|
-
400: map
|
|
359
|
-
300: map
|
|
360
|
-
200: map
|
|
361
|
-
100: map
|
|
362
|
-
75: map
|
|
363
|
-
50: map
|
|
364
|
-
25: map
|
|
343
|
+
950: map.get($ecl-colors, 'warning-950'),
|
|
344
|
+
900: map.get($ecl-colors, 'warning-900'),
|
|
345
|
+
800: map.get($ecl-colors, 'warning-800'),
|
|
346
|
+
700: map.get($ecl-colors, 'warning-700'),
|
|
347
|
+
600: map.get($ecl-colors, 'warning-600'),
|
|
348
|
+
500: map.get($ecl-colors, 'warning-500'),
|
|
349
|
+
400: map.get($ecl-colors, 'warning-400'),
|
|
350
|
+
300: map.get($ecl-colors, 'warning-300'),
|
|
351
|
+
200: map.get($ecl-colors, 'warning-200'),
|
|
352
|
+
100: map.get($ecl-colors, 'warning-100'),
|
|
353
|
+
75: map.get($ecl-colors, 'warning-75'),
|
|
354
|
+
50: map.get($ecl-colors, 'warning-50'),
|
|
355
|
+
25: map.get($ecl-colors, 'warning-25')
|
|
365
356
|
),
|
|
366
357
|
da: (
|
|
367
|
-
950: map
|
|
368
|
-
900: map
|
|
369
|
-
800: map
|
|
370
|
-
700: map
|
|
371
|
-
600: map
|
|
372
|
-
500: map
|
|
373
|
-
400: map
|
|
374
|
-
300: map
|
|
375
|
-
200: map
|
|
376
|
-
100: map
|
|
377
|
-
75: map
|
|
378
|
-
50: map
|
|
379
|
-
25: map
|
|
358
|
+
950: map.get($ecl-colors, 'error-950'),
|
|
359
|
+
900: map.get($ecl-colors, 'error-900'),
|
|
360
|
+
800: map.get($ecl-colors, 'error-800'),
|
|
361
|
+
700: map.get($ecl-colors, 'error-700'),
|
|
362
|
+
600: map.get($ecl-colors, 'error-600'),
|
|
363
|
+
500: map.get($ecl-colors, 'error-500'),
|
|
364
|
+
400: map.get($ecl-colors, 'error-400'),
|
|
365
|
+
300: map.get($ecl-colors, 'error-300'),
|
|
366
|
+
200: map.get($ecl-colors, 'error-200'),
|
|
367
|
+
100: map.get($ecl-colors, 'error-100'),
|
|
368
|
+
75: map.get($ecl-colors, 'error-75'),
|
|
369
|
+
50: map.get($ecl-colors, 'error-50'),
|
|
370
|
+
25: map.get($ecl-colors, 'error-25')
|
|
380
371
|
),
|
|
381
372
|
cta: (
|
|
382
|
-
950: map
|
|
383
|
-
900: map
|
|
384
|
-
800: map
|
|
385
|
-
700: map
|
|
386
|
-
600: map
|
|
387
|
-
500: map
|
|
388
|
-
400: map
|
|
389
|
-
300: map
|
|
390
|
-
200: map
|
|
391
|
-
100: map
|
|
392
|
-
75: map
|
|
393
|
-
50: map
|
|
394
|
-
25: map
|
|
373
|
+
950: map.get($ecl-colors, 'secondary-950'),
|
|
374
|
+
900: map.get($ecl-colors, 'secondary-900'),
|
|
375
|
+
800: map.get($ecl-colors, 'secondary-800'),
|
|
376
|
+
700: map.get($ecl-colors, 'secondary-700'),
|
|
377
|
+
600: map.get($ecl-colors, 'secondary-600'),
|
|
378
|
+
500: map.get($ecl-colors, 'secondary-500'),
|
|
379
|
+
400: map.get($ecl-colors, 'secondary-400'),
|
|
380
|
+
300: map.get($ecl-colors, 'secondary-300'),
|
|
381
|
+
200: map.get($ecl-colors, 'secondary-200'),
|
|
382
|
+
100: map.get($ecl-colors, 'secondary-100'),
|
|
383
|
+
75: map.get($ecl-colors, 'secondary-75'),
|
|
384
|
+
50: map.get($ecl-colors, 'secondary-50'),
|
|
385
|
+
25: map.get($ecl-colors, 'secondary-25')
|
|
395
386
|
)
|
|
396
387
|
);
|
|
397
388
|
|
|
@@ -402,185 +393,211 @@ $color-state-map: (
|
|
|
402
393
|
base: 'br-900',
|
|
403
394
|
default: 'br-900',
|
|
404
395
|
lighter: 'br-700',
|
|
396
|
+
on-lighter: 'br-700-contrast',
|
|
405
397
|
light: 'br-800',
|
|
398
|
+
on-light: 'br-800-contrast',
|
|
406
399
|
dark: 'br-950',
|
|
407
|
-
|
|
400
|
+
on-dark: 'br-950-contrast',
|
|
408
401
|
),
|
|
409
402
|
primary: (
|
|
410
403
|
base: 'pr-600',
|
|
411
404
|
default: 'pr-700',
|
|
412
405
|
lighter: 'pr-500',
|
|
406
|
+
on-lighter: 'pr-500-contrast',
|
|
413
407
|
light: 'pr-600',
|
|
408
|
+
on-light: 'pr-600-contrast',
|
|
414
409
|
dark: 'pr-900',
|
|
410
|
+
on-dark: 'pr-900-contrast',
|
|
415
411
|
darker: 'pr-950',
|
|
416
|
-
on-
|
|
417
|
-
surface-lighter: 'pr-50',
|
|
412
|
+
on-darker: 'pr-950-contrast',
|
|
418
413
|
surface-light: 'pr-75',
|
|
419
|
-
surface-light
|
|
420
|
-
surface-light-hover: 'pr-
|
|
414
|
+
on-surface-light: 'pr-900',
|
|
415
|
+
surface-light-hover: 'pr-100',
|
|
416
|
+
on-surface-light-hover: 'pr-950',
|
|
421
417
|
surface-medium: 'pr-200',
|
|
422
418
|
on-surface-medium: 'pr-950',
|
|
423
|
-
border: 'pr-500',
|
|
424
|
-
border-light: 'pr-300',
|
|
425
|
-
border-lighter: 'pr-200',
|
|
426
419
|
surface: 'pr-600',
|
|
427
|
-
surface
|
|
420
|
+
on-surface: 'pr-600-contrast',
|
|
428
421
|
surface-hover: 'pr-700',
|
|
429
|
-
surface-hover
|
|
422
|
+
on-surface-hover: 'pr-700-contrast',
|
|
423
|
+
border: 'pr-500',
|
|
424
|
+
border-light: 'pr-300',
|
|
425
|
+
border-lighter: 'pr-200'
|
|
430
426
|
),
|
|
431
427
|
secondary: (
|
|
432
428
|
base: 'gr-500',
|
|
433
429
|
default: 'gr-800',
|
|
434
430
|
lighter: 'gr-600',
|
|
431
|
+
on-lighter: 'gr-600-contrast',
|
|
435
432
|
light: 'gr-700',
|
|
433
|
+
on-light: 'gr-700-contrast',
|
|
436
434
|
dark: 'gr-900',
|
|
435
|
+
on-dark: 'gr-900-contrast',
|
|
437
436
|
darker: 'gr-950',
|
|
438
|
-
on-
|
|
439
|
-
surface-lighter: 'gr-50',
|
|
437
|
+
on-darker: 'gr-950-contrast',
|
|
440
438
|
surface-light: 'gr-75',
|
|
441
|
-
surface-light
|
|
442
|
-
surface-light-hover: 'gr-
|
|
443
|
-
surface-
|
|
439
|
+
on-surface-light: 'gr-900',
|
|
440
|
+
surface-light-hover: 'gr-100',
|
|
441
|
+
on-surface-light-hover: 'gr-950',
|
|
442
|
+
surface-medium: 'gr-200',
|
|
444
443
|
on-surface-medium: 'gr-900',
|
|
444
|
+
surface: 'gr-600',
|
|
445
|
+
on-surface: 'gr-600-contrast',
|
|
446
|
+
surface-hover: 'gr-700',
|
|
447
|
+
on-surface-hover: 'gr-700-contrast',
|
|
445
448
|
border: 'gr-500',
|
|
446
|
-
border-light: 'gr-
|
|
447
|
-
border-lighter: 'gr-
|
|
448
|
-
surface: 'gr-400',
|
|
449
|
-
surface-contrast: 'gr-400-contrast',
|
|
450
|
-
surface-hover: 'gr-300',
|
|
451
|
-
surface-hover-contrast: 'gr-300-contrast'
|
|
449
|
+
border-light: 'gr-400',
|
|
450
|
+
border-lighter: 'gr-300'
|
|
452
451
|
),
|
|
453
452
|
neutral: (
|
|
454
453
|
base: 'grn-500',
|
|
455
454
|
default: 'grn-800',
|
|
456
455
|
lighter: 'grn-600',
|
|
456
|
+
on-lighter: 'grn-600-contrast',
|
|
457
457
|
light: 'grn-700',
|
|
458
|
+
on-light: 'grn-700-contrast',
|
|
458
459
|
dark: 'grn-900',
|
|
460
|
+
on-dark: 'grn-900-contrast',
|
|
459
461
|
darker: 'grn-950',
|
|
460
|
-
on-
|
|
461
|
-
surface-lighter: 'grn-25',
|
|
462
|
+
on-darker: 'grn-950-contrast',
|
|
462
463
|
surface-light: 'grn-50',
|
|
463
|
-
surface-light
|
|
464
|
+
on-surface-light: 'grn-900',
|
|
464
465
|
surface-light-hover: 'grn-75',
|
|
466
|
+
on-surface-light-hover: 'grn-950',
|
|
465
467
|
surface-medium: 'grn-100',
|
|
466
468
|
on-surface-medium: 'grn-900',
|
|
467
|
-
border: 'grn-500',
|
|
468
|
-
border-light: 'grn-500',
|
|
469
|
-
border-lighter: 'grn-400',
|
|
470
469
|
surface: 'grn-400',
|
|
471
|
-
surface
|
|
470
|
+
on-surface: 'grn-400-contrast',
|
|
472
471
|
surface-hover: 'grn-300',
|
|
473
|
-
surface-hover
|
|
472
|
+
on-surface-hover: 'grn-300-contrast',
|
|
473
|
+
border: 'grn-500',
|
|
474
|
+
border-light: 'grn-400',
|
|
475
|
+
border-lighter: 'grn-300'
|
|
474
476
|
),
|
|
475
477
|
cta: (
|
|
476
478
|
base: 'cta-400',
|
|
477
|
-
default: 'cta-
|
|
479
|
+
default: 'cta-900',
|
|
478
480
|
lighter: 'cta-400',
|
|
481
|
+
on-lighter: 'cta-400-contrast',
|
|
479
482
|
light: 'cta-500',
|
|
483
|
+
on-light: 'cta-500-contrast',
|
|
480
484
|
dark: 'cta-800',
|
|
485
|
+
on-dark: 'cta-800-contrast',
|
|
481
486
|
darker: 'cta-900',
|
|
482
|
-
on-
|
|
483
|
-
surface-lighter: 'cta-25',
|
|
487
|
+
on-darker: 'cta-900-contrast',
|
|
484
488
|
surface-light: 'cta-25',
|
|
485
|
-
surface-light
|
|
486
|
-
surface-light-hover: 'cta-
|
|
489
|
+
on-surface-light: 'cta-800',
|
|
490
|
+
surface-light-hover: 'cta-50',
|
|
491
|
+
on-surface-light-hover: 'cta-950',
|
|
487
492
|
surface-medium: 'cta-75',
|
|
488
|
-
on-surface-medium: 'cta-
|
|
489
|
-
border: 'cta-300',
|
|
490
|
-
border-light: 'cta-100',
|
|
491
|
-
border-lighter: 'cta-75',
|
|
493
|
+
on-surface-medium: 'cta-900',
|
|
492
494
|
surface: 'cta-400',
|
|
493
|
-
surface
|
|
495
|
+
on-surface: 'cta-400-contrast',
|
|
494
496
|
surface-hover: 'cta-500',
|
|
495
|
-
surface-hover
|
|
497
|
+
on-surface-hover: 'cta-500-contrast',
|
|
498
|
+
border: 'cta-300',
|
|
499
|
+
border-light: 'cta-100',
|
|
500
|
+
border-lighter: 'cta-75'
|
|
496
501
|
),
|
|
497
502
|
info: (
|
|
498
503
|
base: 'in-500',
|
|
499
504
|
default: 'in-600',
|
|
500
505
|
lighter: 'in-400',
|
|
506
|
+
on-lighter: 'in-400-contrast',
|
|
501
507
|
light: 'in-500',
|
|
508
|
+
on-light: 'in-500-contrast',
|
|
502
509
|
dark: 'in-800',
|
|
510
|
+
on-dark: 'in-800-contrast',
|
|
503
511
|
darker: 'in-900',
|
|
504
|
-
on-
|
|
505
|
-
surface-lighter: 'in-25',
|
|
512
|
+
on-darker: 'in-900-contrast',
|
|
506
513
|
surface-light: 'in-50',
|
|
507
|
-
surface-light
|
|
508
|
-
surface-light-hover: 'in-
|
|
514
|
+
on-surface-light: 'in-600',
|
|
515
|
+
surface-light-hover: 'in-75',
|
|
516
|
+
on-surface-light-hover: 'in-800',
|
|
509
517
|
surface-medium: 'in-100',
|
|
510
|
-
on-surface-medium: 'in-
|
|
511
|
-
border: 'in-400',
|
|
512
|
-
border-light: 'in-200',
|
|
513
|
-
border-lighter: 'in-100',
|
|
518
|
+
on-surface-medium: 'in-950',
|
|
514
519
|
surface: 'in-600',
|
|
515
|
-
surface
|
|
520
|
+
on-surface: 'in-600-contrast',
|
|
516
521
|
surface-hover: 'in-800',
|
|
517
|
-
surface-hover
|
|
522
|
+
on-surface-hover: 'in-800-contrast',
|
|
523
|
+
border: 'in-400',
|
|
524
|
+
border-light: 'in-200',
|
|
525
|
+
border-lighter: 'in-100'
|
|
518
526
|
),
|
|
519
527
|
success: (
|
|
520
528
|
base: 'su-700',
|
|
521
|
-
default: 'su-
|
|
529
|
+
default: 'su-900',
|
|
522
530
|
lighter: 'su-700',
|
|
531
|
+
on-lighter: 'su-700-contrast',
|
|
523
532
|
light: 'su-800',
|
|
533
|
+
on-light: 'su-800-contrast',
|
|
524
534
|
dark: 'su-900',
|
|
535
|
+
on-dark: 'su-900-contrast',
|
|
525
536
|
darker: 'su-950',
|
|
526
|
-
on-
|
|
527
|
-
surface-lighter: 'su-50',
|
|
537
|
+
on-darker: 'su-950-contrast',
|
|
528
538
|
surface-light: 'su-100',
|
|
529
|
-
surface-light
|
|
530
|
-
surface-light-hover: 'su-
|
|
539
|
+
on-surface-light: 'su-950',
|
|
540
|
+
surface-light-hover: 'su-200',
|
|
541
|
+
on-surface-light-hover: 'su-950',
|
|
531
542
|
surface-medium: 'su-300',
|
|
532
543
|
on-surface-medium: 'su-950',
|
|
544
|
+
surface: 'su-900',
|
|
545
|
+
on-surface: 'su-950-contrast',
|
|
546
|
+
surface-hover: 'su-950',
|
|
547
|
+
on-surface-hover: 'su-950-contrast',
|
|
533
548
|
border: 'su-600',
|
|
534
549
|
border-light: 'su-400',
|
|
535
|
-
border-lighter: 'su-300'
|
|
536
|
-
surface: 'su-950',
|
|
537
|
-
surface-contrast: 'su-950-contrast',
|
|
538
|
-
surface-hover: 'su-950',
|
|
539
|
-
surface-hover-contrast: 'su-950-contrast'
|
|
550
|
+
border-lighter: 'su-300'
|
|
540
551
|
),
|
|
541
552
|
warning: (
|
|
542
553
|
base: 'wa-500',
|
|
543
554
|
default: 'wa-800',
|
|
544
555
|
lighter: 'wa-500',
|
|
556
|
+
on-lighter: 'wa-500-contrast',
|
|
545
557
|
light: 'wa-600',
|
|
558
|
+
on-light: 'wa-600-contrast',
|
|
546
559
|
dark: 'wa-900',
|
|
560
|
+
on-dark: 'wa-900-contrast',
|
|
547
561
|
darker: 'wa-950',
|
|
548
|
-
on-
|
|
549
|
-
surface-lighter: 'wa-25',
|
|
562
|
+
on-darker: 'wa-950-contrast',
|
|
550
563
|
surface-light: 'wa-50',
|
|
551
|
-
surface-light
|
|
552
|
-
surface-light-hover: 'wa-
|
|
564
|
+
on-surface-light: 'wa-900',
|
|
565
|
+
surface-light-hover: 'wa-75',
|
|
566
|
+
on-surface-light-hover: 'wa-950',
|
|
553
567
|
surface-medium: 'wa-100',
|
|
554
568
|
on-surface-medium: 'wa-900',
|
|
555
|
-
border: 'wa-400',
|
|
556
|
-
border-light: 'wa-200',
|
|
557
|
-
border-lighter: 'wa-100',
|
|
558
569
|
surface: 'wa-500',
|
|
559
|
-
surface
|
|
570
|
+
on-surface: 'wa-500-contrast',
|
|
560
571
|
surface-hover: 'wa-600',
|
|
561
|
-
surface-hover
|
|
572
|
+
on-surface-hover: 'wa-600-contrast',
|
|
573
|
+
border: 'wa-400',
|
|
574
|
+
border-light: 'wa-200',
|
|
575
|
+
border-lighter: 'wa-100'
|
|
562
576
|
),
|
|
563
577
|
danger: (
|
|
564
578
|
base: 'da-600',
|
|
565
579
|
default: 'da-600',
|
|
566
580
|
lighter: 'da-400',
|
|
581
|
+
on-lighter: 'da-400-contrast',
|
|
567
582
|
light: 'da-500',
|
|
583
|
+
on-light: 'da-500-contrast',
|
|
568
584
|
dark: 'da-700',
|
|
585
|
+
on-dark: 'da-700-contrast',
|
|
569
586
|
darker: 'da-800',
|
|
570
|
-
on-
|
|
571
|
-
surface-lighter: 'da-50',
|
|
587
|
+
on-darker: 'da-800-contrast',
|
|
572
588
|
surface-light: 'da-75',
|
|
573
|
-
surface-light
|
|
574
|
-
surface-light-hover: 'da-
|
|
589
|
+
on-surface-light: 'da-700',
|
|
590
|
+
surface-light-hover: 'da-100',
|
|
591
|
+
on-surface-light-hover: 'da-900',
|
|
575
592
|
surface-medium: 'da-200',
|
|
576
593
|
on-surface-medium: 'da-900',
|
|
577
|
-
border: 'da-500',
|
|
578
|
-
border-light: 'da-300',
|
|
579
|
-
border-lighter: 'da-200',
|
|
580
594
|
surface: 'da-600',
|
|
581
|
-
surface
|
|
595
|
+
on-surface: 'da-600-contrast',
|
|
582
596
|
surface-hover: 'da-700',
|
|
583
|
-
surface-hover
|
|
597
|
+
on-surface-hover: 'da-700-contrast',
|
|
598
|
+
border: 'da-500',
|
|
599
|
+
border-light: 'da-300',
|
|
600
|
+
border-lighter: 'da-200'
|
|
584
601
|
),
|
|
585
602
|
);
|
|
586
603
|
|
|
@@ -597,120 +614,13 @@ $ecl-shadow: (
|
|
|
597
614
|
|
|
598
615
|
$box-shadow-map: (
|
|
599
616
|
0: none,
|
|
600
|
-
1: map
|
|
601
|
-
2: map
|
|
602
|
-
3: map
|
|
603
|
-
4: map
|
|
604
|
-
5: map
|
|
605
|
-
);
|
|
606
|
-
|
|
607
|
-
|
|
608
|
-
// TYPOGRAPHY
|
|
609
|
-
|
|
610
|
-
$font-weight-map: (
|
|
611
|
-
'regular': 400,
|
|
612
|
-
'medium': 500,
|
|
613
|
-
'semi-bold': 600,
|
|
614
|
-
'bold': 700
|
|
617
|
+
1: map.get($ecl-shadow, 1),
|
|
618
|
+
2: map.get($ecl-shadow, 2),
|
|
619
|
+
3: map.get($ecl-shadow, 5),
|
|
620
|
+
4: map.get($ecl-shadow, 4),
|
|
621
|
+
5: map.get($ecl-shadow, 5)
|
|
615
622
|
);
|
|
616
623
|
|
|
617
|
-
$font-map-responsive: (
|
|
618
|
-
'display': (
|
|
619
|
-
'm': (
|
|
620
|
-
'desktop': (
|
|
621
|
-
'size': 3rem,
|
|
622
|
-
'line-height': 3.5rem
|
|
623
|
-
),
|
|
624
|
-
'tablet': (
|
|
625
|
-
'size': 2.75rem,
|
|
626
|
-
'line-height': 3.25rem
|
|
627
|
-
),
|
|
628
|
-
'mobile': (
|
|
629
|
-
'size': 2rem,
|
|
630
|
-
'line-height': 2.25rem
|
|
631
|
-
)
|
|
632
|
-
)
|
|
633
|
-
),
|
|
634
|
-
'title': (
|
|
635
|
-
'xl': (
|
|
636
|
-
'desktop': (
|
|
637
|
-
'size': 2.5rem,
|
|
638
|
-
'line-height': 3rem
|
|
639
|
-
),
|
|
640
|
-
'tablet': (
|
|
641
|
-
'size': 2rem,
|
|
642
|
-
'line-height': 2.75rem
|
|
643
|
-
),
|
|
644
|
-
'mobile': (
|
|
645
|
-
'size': 1.75rem,
|
|
646
|
-
'line-height': 2.5rem
|
|
647
|
-
)
|
|
648
|
-
),
|
|
649
|
-
'xs': (
|
|
650
|
-
'desktop': (
|
|
651
|
-
'size': 1.25rem,
|
|
652
|
-
'line-height': 1.75rem
|
|
653
|
-
),
|
|
654
|
-
'tablet': (
|
|
655
|
-
'size': 1.25rem,
|
|
656
|
-
'line-height': 1.75rem
|
|
657
|
-
),
|
|
658
|
-
'mobile': (
|
|
659
|
-
'size': 1.2rem,
|
|
660
|
-
'line-height': 1.5rem
|
|
661
|
-
)
|
|
662
|
-
)
|
|
663
|
-
)
|
|
664
|
-
);
|
|
665
|
-
|
|
666
|
-
$font-map: (
|
|
667
|
-
'title': (
|
|
668
|
-
'2xs': (
|
|
669
|
-
'size': 1rem,
|
|
670
|
-
'line-height': 1.5rem
|
|
671
|
-
)
|
|
672
|
-
),
|
|
673
|
-
'card-title': (
|
|
674
|
-
'm': (
|
|
675
|
-
'size': 1.125rem,
|
|
676
|
-
'line-height': 1.5rem
|
|
677
|
-
)
|
|
678
|
-
),
|
|
679
|
-
'label': (
|
|
680
|
-
'm': (
|
|
681
|
-
'size': 0.875rem,
|
|
682
|
-
'line-height': 1.25rem
|
|
683
|
-
),
|
|
684
|
-
'l': (
|
|
685
|
-
'size': 1rem,
|
|
686
|
-
'line-height': 1.5rem
|
|
687
|
-
)
|
|
688
|
-
),
|
|
689
|
-
'body': (
|
|
690
|
-
's': (
|
|
691
|
-
'size': 0.875rem,
|
|
692
|
-
'line-height': 1.25rem
|
|
693
|
-
),
|
|
694
|
-
'm': (
|
|
695
|
-
'size': 1rem,
|
|
696
|
-
'line-height': 1.5rem
|
|
697
|
-
),
|
|
698
|
-
'l': (
|
|
699
|
-
'size': 1.25rem,
|
|
700
|
-
'line-height': 1.75rem
|
|
701
|
-
),
|
|
702
|
-
'xl': (
|
|
703
|
-
'size': 1.5rem,
|
|
704
|
-
'line-height': 2rem
|
|
705
|
-
)
|
|
706
|
-
),
|
|
707
|
-
'microcopy': (
|
|
708
|
-
'm': (
|
|
709
|
-
'size': 0.75rem,
|
|
710
|
-
'line-height': 1rem
|
|
711
|
-
)
|
|
712
|
-
)
|
|
713
|
-
);
|
|
714
624
|
|
|
715
625
|
// TYPOGRAPHY
|
|
716
626
|
|
|
@@ -719,27 +629,6 @@ $font-size-list: (
|
|
|
719
629
|
'2xs-compact', 'xs-compact', 's-compact', 'm-compact', 'l-compact', 'xl-compact', '2xl-compact', '3xl-compact', '4xl-compact', '5xl-compact', '6xl-compact'
|
|
720
630
|
);
|
|
721
631
|
|
|
722
|
-
$font-size-map: (
|
|
723
|
-
2xs: 0.675rem,
|
|
724
|
-
xs: 0.75rem,
|
|
725
|
-
s: 0.875rem,
|
|
726
|
-
m: 1rem,
|
|
727
|
-
l: 1.25rem,
|
|
728
|
-
xl: 1.5rem,
|
|
729
|
-
2xl: 1.75rem,
|
|
730
|
-
3xl: 2rem,
|
|
731
|
-
4xl: 2.5rem,
|
|
732
|
-
5xl: 2.75rem,
|
|
733
|
-
6xl: 3rem
|
|
734
|
-
);
|
|
735
|
-
|
|
736
|
-
$font-weight-map: (
|
|
737
|
-
regular: 400,
|
|
738
|
-
medium: 400,
|
|
739
|
-
semi-bold: 700,
|
|
740
|
-
bold: 700
|
|
741
|
-
);
|
|
742
|
-
|
|
743
632
|
$font-line-height-map: (
|
|
744
633
|
2xs: 1rem,
|
|
745
634
|
xs: 1.25rem,
|
|
@@ -763,4 +652,198 @@ $font-line-height-map: (
|
|
|
763
652
|
4xl-compact: 2.75rem,
|
|
764
653
|
5xl-compact: 3rem,
|
|
765
654
|
6xl-compact: 3.25rem
|
|
766
|
-
);
|
|
655
|
+
);
|
|
656
|
+
|
|
657
|
+
$font-size-map: (
|
|
658
|
+
2xs: 0.675rem, // 10px
|
|
659
|
+
xs: 0.75rem, // 12px
|
|
660
|
+
s: 0.875rem, // 14px
|
|
661
|
+
m: 1rem, // 16px
|
|
662
|
+
l: 1.25rem, // 20px
|
|
663
|
+
xl: 1.5rem, // 24px
|
|
664
|
+
2xl: 1.75rem, // 28px
|
|
665
|
+
3xl: 2rem, // 32px
|
|
666
|
+
4xl: 2.5rem, // 40px
|
|
667
|
+
5xl: 2.75rem, // 44px
|
|
668
|
+
6xl: 3rem // 48px
|
|
669
|
+
);
|
|
670
|
+
|
|
671
|
+
$font-weight-map: (
|
|
672
|
+
'regular': 400,
|
|
673
|
+
'medium': 500,
|
|
674
|
+
'semi-bold': 600,
|
|
675
|
+
'bold': 700
|
|
676
|
+
);
|
|
677
|
+
|
|
678
|
+
// ecl font sizes for example, but driven by m = 18px base
|
|
679
|
+
|
|
680
|
+
// $ecl-font-size: (
|
|
681
|
+
// '10xl': 6rem,
|
|
682
|
+
// '9xl': 4.5rem,
|
|
683
|
+
// '8xl': 3.75rem,
|
|
684
|
+
// '7xl': 3.25rem,
|
|
685
|
+
// '6xl': 2.5rem,
|
|
686
|
+
// '5xl': 2.25rem,
|
|
687
|
+
// '4xl': 2rem,
|
|
688
|
+
// '3xl': 1.75rem,
|
|
689
|
+
// '2xl': 1.5rem,
|
|
690
|
+
// 'xl': 1.375rem,
|
|
691
|
+
// 'l': 1.25rem,
|
|
692
|
+
// 'm': 1.125rem,
|
|
693
|
+
// 's': 1rem,
|
|
694
|
+
// 'xs': 0.875rem,
|
|
695
|
+
// '2xs': 0.75rem
|
|
696
|
+
// );
|
|
697
|
+
|
|
698
|
+
// $ecl-line-height: (
|
|
699
|
+
// '10xl': 6.25rem,
|
|
700
|
+
// '9xl': 4.875rem,
|
|
701
|
+
// '8xl': 4.25rem,
|
|
702
|
+
// '7xl': 3.75rem,
|
|
703
|
+
// '6xl': 3.5rem,
|
|
704
|
+
// '5xl': 3.25rem,
|
|
705
|
+
// '4xl': 3rem,
|
|
706
|
+
// '3xl': 2.75rem,
|
|
707
|
+
// '2xl': 2.5rem,
|
|
708
|
+
// 'xl': 2.25rem,
|
|
709
|
+
// 'l': 2rem,
|
|
710
|
+
// 'm': 1.75rem,
|
|
711
|
+
// 's': 1.5rem,
|
|
712
|
+
// 'xs': 1.25rem,
|
|
713
|
+
// '2xs': 1rem,
|
|
714
|
+
// '3xs': 0.875rem,
|
|
715
|
+
// );
|
|
716
|
+
// $ecl-font: (
|
|
717
|
+
// '10xl': #{map.get($font-size, '10xl') + '/' + map.get($line-height, '10xl')}
|
|
718
|
+
// #{map.get($font-family, 'default')},
|
|
719
|
+
// '9xl': #{map.get($font-size, '9xl') + '/' + map.get($line-height, '9xl')}
|
|
720
|
+
// #{map.get($font-family, 'default')},
|
|
721
|
+
// '8xl': #{map.get($font-size, '8xl') + '/' + map.get($line-height, '8xl')}
|
|
722
|
+
// #{map.get($font-family, 'default')},
|
|
723
|
+
// '7xl': #{map.get($font-size, '7xl') + '/' + map.get($line-height, '7xl')}
|
|
724
|
+
// #{map.get($font-family, 'default')},
|
|
725
|
+
// '6xl': #{map.get($font-size, '6xl') + '/' + map.get($line-height, '4xl')}
|
|
726
|
+
// #{map.get($font-family, 'default')},
|
|
727
|
+
// '5xl': #{map.get($font-size, '5xl') + '/' + map.get($line-height, '4xl')}
|
|
728
|
+
// #{map.get($font-family, 'default')},
|
|
729
|
+
// '4xl': #{map.get($font-size, '4xl') + '/' + map.get($line-height, '3xl')}
|
|
730
|
+
// #{map.get($font-family, 'default')},
|
|
731
|
+
// '3xl': #{map.get($font-size, '3xl') + '/' + map.get($line-height, 'xl')}
|
|
732
|
+
// #{map.get($font-family, 'default')},
|
|
733
|
+
// '2xl': #{map.get($font-size, '2xl') + '/' + map.get($line-height, 'xl')}
|
|
734
|
+
// #{map.get($font-family, 'default')},
|
|
735
|
+
// 'xl': #{map.get($font-size, 'xl') + '/' + map.get($line-height, 'l')}
|
|
736
|
+
// #{map.get($font-family, 'default')},
|
|
737
|
+
// 'l': #{map.get($font-size, 'l') + '/' + map.get($line-height, 'm')}
|
|
738
|
+
// #{map.get($font-family, 'default')},
|
|
739
|
+
// 'm': #{map.get($font-size, 'm') + '/' + map.get($line-height, 'm')}
|
|
740
|
+
// #{map.get($font-family, 'default')},
|
|
741
|
+
// 's': #{map.get($font-size, 's') + '/' + map.get($line-height, 's')}
|
|
742
|
+
// #{map.get($font-family, 'default')},
|
|
743
|
+
// 'xs': #{map.get($font-size, 'xs') + '/' + map.get($line-height, 'xs')}
|
|
744
|
+
// #{map.get($font-family, 'default')},
|
|
745
|
+
// '2xs': #{map.get($font-size, '2xs') + '/' + map.get($line-height, '3xs')}
|
|
746
|
+
// #{map.get($font-family, 'default')}
|
|
747
|
+
// );
|
|
748
|
+
|
|
749
|
+
|
|
750
|
+
// based on new EDS specs, but not convenient, better to have a flat list of sizes rather than too much semantic and overlaps
|
|
751
|
+
|
|
752
|
+
// $font-map-responsive: (
|
|
753
|
+
// 'display': (
|
|
754
|
+
// 'm': (
|
|
755
|
+
// 'desktop': (
|
|
756
|
+
// 'size': 3rem,
|
|
757
|
+
// 'line-height': 3.5rem
|
|
758
|
+
// ),
|
|
759
|
+
// 'tablet': (
|
|
760
|
+
// 'size': 2.75rem,
|
|
761
|
+
// 'line-height': 3.25rem
|
|
762
|
+
// ),
|
|
763
|
+
// 'mobile': (
|
|
764
|
+
// 'size': 2rem,
|
|
765
|
+
// 'line-height': 2.25rem
|
|
766
|
+
// )
|
|
767
|
+
// )
|
|
768
|
+
// ),
|
|
769
|
+
// 'title': (
|
|
770
|
+
// 'xl': (
|
|
771
|
+
// 'desktop': (
|
|
772
|
+
// 'size': 2.5rem,
|
|
773
|
+
// 'line-height': 3rem
|
|
774
|
+
// ),
|
|
775
|
+
// 'tablet': (
|
|
776
|
+
// 'size': 2rem,
|
|
777
|
+
// 'line-height': 2.75rem
|
|
778
|
+
// ),
|
|
779
|
+
// 'mobile': (
|
|
780
|
+
// 'size': 1.75rem,
|
|
781
|
+
// 'line-height': 2.5rem
|
|
782
|
+
// )
|
|
783
|
+
// ),
|
|
784
|
+
// 'xs': (
|
|
785
|
+
// 'desktop': (
|
|
786
|
+
// 'size': 1.25rem,
|
|
787
|
+
// 'line-height': 1.75rem
|
|
788
|
+
// ),
|
|
789
|
+
// 'tablet': (
|
|
790
|
+
// 'size': 1.25rem,
|
|
791
|
+
// 'line-height': 1.75rem
|
|
792
|
+
// ),
|
|
793
|
+
// 'mobile': (
|
|
794
|
+
// 'size': 1.2rem,
|
|
795
|
+
// 'line-height': 1.5rem
|
|
796
|
+
// )
|
|
797
|
+
// )
|
|
798
|
+
// )
|
|
799
|
+
// );
|
|
800
|
+
|
|
801
|
+
// $font-map: (
|
|
802
|
+
// 'title': (
|
|
803
|
+
// '2xs': (
|
|
804
|
+
// 'size': 1rem,
|
|
805
|
+
// 'line-height': 1.5rem
|
|
806
|
+
// )
|
|
807
|
+
// ),
|
|
808
|
+
// 'card-title': (
|
|
809
|
+
// 'm': (
|
|
810
|
+
// 'size': 1.125rem,
|
|
811
|
+
// 'line-height': 1.5rem
|
|
812
|
+
// )
|
|
813
|
+
// ),
|
|
814
|
+
// 'label': (
|
|
815
|
+
// 'm': (
|
|
816
|
+
// 'size': 0.875rem,
|
|
817
|
+
// 'line-height': 1.25rem
|
|
818
|
+
// ),
|
|
819
|
+
// 'l': (
|
|
820
|
+
// 'size': 1rem,
|
|
821
|
+
// 'line-height': 1.5rem
|
|
822
|
+
// )
|
|
823
|
+
// ),
|
|
824
|
+
// 'body': (
|
|
825
|
+
// 's': (
|
|
826
|
+
// 'size': 0.875rem,
|
|
827
|
+
// 'line-height': 1.25rem
|
|
828
|
+
// ),
|
|
829
|
+
// 'm': (
|
|
830
|
+
// 'size': 1rem,
|
|
831
|
+
// 'line-height': 1.5rem
|
|
832
|
+
// ),
|
|
833
|
+
// 'l': (
|
|
834
|
+
// 'size': 1.25rem,
|
|
835
|
+
// 'line-height': 1.75rem
|
|
836
|
+
// ),
|
|
837
|
+
// 'xl': (
|
|
838
|
+
// 'size': 1.5rem,
|
|
839
|
+
// 'line-height': 2rem
|
|
840
|
+
// )
|
|
841
|
+
// ),
|
|
842
|
+
// 'microcopy': (
|
|
843
|
+
// 'm': (
|
|
844
|
+
// 'size': 0.75rem,
|
|
845
|
+
// 'line-height': 1rem
|
|
846
|
+
// )
|
|
847
|
+
// )
|
|
848
|
+
// );
|
|
849
|
+
|