@payfit/unity-themes 2.0.0 → 2.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/dist/css/unity.css +126 -48
- package/dist/esm/utils/merge-config.js +3 -2
- package/package.json +14 -13
- package/src/utils/merge-config.ts +1 -0
- package/src/utils/tailwind-merge.test.ts +1 -0
- package/tokens/animations.json +16 -0
- package/tokens/colors.json +214 -32
- package/tokens/shadows.json +4 -4
- package/tokens/sizes.json +1 -1
- package/tokens/text.json +6 -6
- package/tokens/typography.json +77 -59
package/dist/css/unity.css
CHANGED
|
@@ -49,10 +49,12 @@
|
|
|
49
49
|
--animate-slide-right-fade-out: 0.3s ease-out 1 slide-right-fade-out;
|
|
50
50
|
--animate-slide-up-fade-in: 0.3s ease-in 1 slide-up-fade-in;
|
|
51
51
|
--animate-slide-down-fade-out: 0.3s ease-out 1 slide-down-fade-out;
|
|
52
|
+
--animate-zoom-in: 0.3s ease-in 1 zoom-in;
|
|
53
|
+
--animate-zoom-out: 0.3s ease-out 1 zoom-out;
|
|
52
54
|
--color-grayscale-l1: oklch(99.059% 0.0017 247.84);
|
|
53
55
|
--color-grayscale-l2: oklch(98.22% 0.00412 271.37);
|
|
54
|
-
--color-grayscale-l3: oklch(
|
|
55
|
-
--color-grayscale-l4: oklch(
|
|
56
|
+
--color-grayscale-l3: oklch(97.323% 0.00413 271.37);
|
|
57
|
+
--color-grayscale-l4: oklch(95.128% 0.00745 260.73);
|
|
56
58
|
--color-grayscale-l5: oklch(91.982% 0.00977 252.82);
|
|
57
59
|
--color-grayscale-l6: oklch(86.339% 0.01521 251.17);
|
|
58
60
|
--color-grayscale-l7: oklch(76.254% 0.02353 254.43);
|
|
@@ -184,7 +186,11 @@
|
|
|
184
186
|
--color-orange-l10: oklch(42.172% 0.12494 33.8);
|
|
185
187
|
--color-orange-l11: oklch(28.891% 0.10112 35.093);
|
|
186
188
|
--color-orange-l12: oklch(16.65% 0.04887 43.496);
|
|
187
|
-
--color-utility-backdrop: oklch(
|
|
189
|
+
--color-utility-backdrop: oklch(16.172% 0.03703 253.15 / 0.6);
|
|
190
|
+
--color-utility-shadow-raising: oklch(24.357% 0.06952 254.17 / 0.04);
|
|
191
|
+
--color-utility-shadow-floating: oklch(24.357% 0.06952 254.17 / 0.08);
|
|
192
|
+
--color-utility-shadow-flying: oklch(24.357% 0.06952 254.17 / 0.1);
|
|
193
|
+
--color-utility-shadow-soaring: oklch(24.357% 0.06952 254.17 / 0.12);
|
|
188
194
|
--grid-layout-columns--default: 6;
|
|
189
195
|
--grid-layout-columns--md: 12;
|
|
190
196
|
--grid-layout-columns--lg: 12;
|
|
@@ -201,13 +207,9 @@
|
|
|
201
207
|
--radius-circle: 50%;
|
|
202
208
|
--radius-pill: 9999px;
|
|
203
209
|
--shadow-canvas: none;
|
|
204
|
-
--shadow-raising: 0px 1px 2px 0px #04204010;
|
|
205
|
-
--shadow-floating: 0px 6px 20px -4px #04204014;
|
|
206
|
-
--shadow-flying: 0px 8px 20px 4px #0420401a;
|
|
207
|
-
--shadow-soaring: 0px 24px 32px -8px #0420401f;
|
|
208
210
|
--container-app-menu: 296px; /** Width of the main menu in global App layout */
|
|
209
211
|
--container-lg: 984px; /** Maximum width for layout containers at large resolutions */
|
|
210
|
-
--container-xl:
|
|
212
|
+
--container-xl: 1360px; /** Maximum width for layout containers at extra-large resolutions */
|
|
211
213
|
--container-content: 523px; /** Maximum width for content containers */
|
|
212
214
|
--container-section: 703px; /** Maximum width for section containers */
|
|
213
215
|
--container-page: 1063px; /** Maximum width for page containers */
|
|
@@ -241,16 +243,16 @@
|
|
|
241
243
|
--font-weight-medium: 500;
|
|
242
244
|
--font-weight-semibold: 600;
|
|
243
245
|
--font-weight-bold: 700;
|
|
244
|
-
--text-50:
|
|
246
|
+
--text-50: 12px;
|
|
245
247
|
--text-75: 14px;
|
|
246
248
|
--text-100: 16px;
|
|
247
249
|
--text-200: 18px;
|
|
248
250
|
--text-300: 20px;
|
|
249
|
-
--text-400:
|
|
250
|
-
--text-500:
|
|
251
|
-
--text-600:
|
|
252
|
-
--text-800:
|
|
253
|
-
--text-1000:
|
|
251
|
+
--text-400: 22px;
|
|
252
|
+
--text-500: 24px;
|
|
253
|
+
--text-600: 28px;
|
|
254
|
+
--text-800: 30px;
|
|
255
|
+
--text-1000: 32px;
|
|
254
256
|
--text-1200: 41px;
|
|
255
257
|
--text-1400: 52px;
|
|
256
258
|
--text-1600: 66px;
|
|
@@ -281,8 +283,21 @@
|
|
|
281
283
|
--color-surface-neutral-selected: var(--uy-color-grayscale-l3);
|
|
282
284
|
--color-surface-neutral-disabled: var(--uy-color-grayscale-l3);
|
|
283
285
|
--color-surface-neutral-low: var(--uy-color-grayscale-l3);
|
|
284
|
-
--color-surface-neutral-low-
|
|
285
|
-
--color-surface-neutral-
|
|
286
|
+
--color-surface-neutral-low-enabled: var(--uy-color-grayscale-l3);
|
|
287
|
+
--color-surface-neutral-low-hover: var(--uy-color-grayscale-l4);
|
|
288
|
+
--color-surface-neutral-low-pressed: var(--uy-color-grayscale-l5);
|
|
289
|
+
--color-surface-neutral-low-focus: var(--uy-color-grayscale-l4);
|
|
290
|
+
--color-surface-neutral-low-active: var(--uy-color-grayscale-l5);
|
|
291
|
+
--color-surface-neutral-low-disabled: var(--uy-color-grayscale-l3);
|
|
292
|
+
--color-surface-neutral-low-selected: var(--uy-color-grayscale-l4);
|
|
293
|
+
--color-surface-neutral-lowest: var(--uy-color-grayscale-l4);
|
|
294
|
+
--color-surface-neutral-lowest-enabled: var(--uy-color-grayscale-l4);
|
|
295
|
+
--color-surface-neutral-lowest-hover: var(--uy-color-grayscale-l5);
|
|
296
|
+
--color-surface-neutral-lowest-pressed: var(--uy-color-grayscale-l6);
|
|
297
|
+
--color-surface-neutral-lowest-focus: var(--uy-color-grayscale-l5);
|
|
298
|
+
--color-surface-neutral-lowest-active: var(--uy-color-grayscale-l6);
|
|
299
|
+
--color-surface-neutral-lowest-disabled: var(--uy-color-grayscale-l4);
|
|
300
|
+
--color-surface-neutral-lowest-selected: var(--uy-color-grayscale-l5);
|
|
286
301
|
--color-surface-danger: var(--uy-color-red-l7);
|
|
287
302
|
--color-surface-danger-enabled: var(--uy-color-red-l7);
|
|
288
303
|
--color-surface-danger-hover: var(--uy-color-red-l8);
|
|
@@ -340,22 +355,47 @@
|
|
|
340
355
|
--color-surface-form-pressed: var(--uy-color-grayscale-l0);
|
|
341
356
|
--color-surface-form-focus: var(--uy-color-grayscale-l0);
|
|
342
357
|
--color-surface-form-active: var(--uy-color-blue-l5);
|
|
343
|
-
--color-surface-form-selected: var(--uy-color-blue-
|
|
358
|
+
--color-surface-form-selected: var(--uy-color-blue-l1);
|
|
344
359
|
--color-surface-form-disabled: var(--uy-color-grayscale-l3);
|
|
345
360
|
--color-surface-form-read-only: var(--uy-color-grayscale-l8);
|
|
346
361
|
--color-surface-form-error: var(--uy-color-red-l2);
|
|
362
|
+
--color-surface-form-high-enabled: var(--uy-color-grayscale-l3);
|
|
363
|
+
--color-surface-form-high-hover: var(--uy-color-grayscale-l4);
|
|
364
|
+
--color-surface-form-high-pressed: var(--uy-color-grayscale-l5);
|
|
365
|
+
--color-surface-form-high-focus: var(--uy-color-grayscale-l3);
|
|
366
|
+
--color-surface-form-high-active: var(--uy-color-grayscale-l0);
|
|
367
|
+
--color-surface-form-high-selected: var(--uy-color-blue-l2);
|
|
368
|
+
--color-surface-form-high-disabled: var(--uy-color-grayscale-l2);
|
|
369
|
+
--color-surface-form-high-read-only: var(--uy-color-grayscale-l2);
|
|
370
|
+
--color-surface-form-high-error: var(--uy-color-red-l2);
|
|
347
371
|
--color-surface-inverted: var(--uy-color-grayscale-l12);
|
|
348
372
|
--color-surface-inverted-enabled: var(--uy-color-grayscale-l12);
|
|
349
373
|
--color-surface-inverted-hover: var(--uy-color-grayscale-l10);
|
|
350
374
|
--color-surface-inverted-pressed: var(--uy-color-grayscale-l11);
|
|
351
375
|
--color-surface-inverted-focus: var(--uy-color-grayscale-l12);
|
|
352
376
|
--color-surface-inverted-active: var(--uy-color-grayscale-l11);
|
|
377
|
+
--color-surface-decorative-teal: var(--uy-color-teal-l6);
|
|
378
|
+
--color-surface-decorative-teal-high: var(--uy-color-teal-l9);
|
|
379
|
+
--color-surface-decorative-teal-low: var(--uy-color-teal-l3);
|
|
380
|
+
--color-surface-decorative-teal-lowest: var(--uy-color-teal-l2);
|
|
381
|
+
--color-surface-decorative-purple-high: var(--uy-color-purple-l9);
|
|
382
|
+
--color-surface-decorative-purple: var(--uy-color-purple-l6);
|
|
383
|
+
--color-surface-decorative-purple-low: var(--uy-color-purple-l3);
|
|
384
|
+
--color-surface-decorative-purple-lowest: var(--uy-color-purple-l2);
|
|
385
|
+
--color-surface-decorative-plum: var(--uy-color-plum-l6);
|
|
386
|
+
--color-surface-decorative-plum-high: var(--uy-color-plum-l9);
|
|
387
|
+
--color-surface-decorative-plum-low: var(--uy-color-plum-l3);
|
|
388
|
+
--color-surface-decorative-plum-lowest: var(--uy-color-plum-l2);
|
|
389
|
+
--color-surface-decorative-orange: var(--uy-color-orange-l6);
|
|
390
|
+
--color-surface-decorative-orange-high: var(--uy-color-orange-l9);
|
|
391
|
+
--color-surface-decorative-orange-low: var(--uy-color-orange-l3);
|
|
392
|
+
--color-surface-decorative-orange-lowest: var(--uy-color-orange-l2);
|
|
353
393
|
--color-content-primary: var(--uy-color-blue-l6);
|
|
354
394
|
--color-content-primary-enabled: var(--uy-color-blue-l7);
|
|
355
395
|
--color-content-primary-hover: var(--uy-color-blue-l10);
|
|
356
396
|
--color-content-primary-pressed: var(--uy-color-blue-l11);
|
|
357
397
|
--color-content-primary-focus: var(--uy-color-blue-l7);
|
|
358
|
-
--color-content-primary-active: var(--uy-color-blue-
|
|
398
|
+
--color-content-primary-active: var(--uy-color-blue-l6);
|
|
359
399
|
--color-content-primary-disabled: var(--uy-color-grayscale-l8);
|
|
360
400
|
--color-content-primary-high: var(--uy-color-blue-l10);
|
|
361
401
|
--color-content-neutral: var(--uy-color-grayscale-l12);
|
|
@@ -412,7 +452,7 @@
|
|
|
412
452
|
--color-content-form-pressed: var(--uy-color-grayscale-l12);
|
|
413
453
|
--color-content-form-focus: var(--uy-color-grayscale-l12);
|
|
414
454
|
--color-content-form-active: var(--uy-color-grayscale-l12);
|
|
415
|
-
--color-content-form-selected: var(--uy-color-blue-
|
|
455
|
+
--color-content-form-selected: var(--uy-color-blue-l6);
|
|
416
456
|
--color-content-form-disabled: var(--uy-color-grayscale-l8);
|
|
417
457
|
--color-content-form-read-only: var(--uy-color-grayscale-l12);
|
|
418
458
|
--color-content-form-invalid: var(--uy-color-red-l8);
|
|
@@ -423,6 +463,14 @@
|
|
|
423
463
|
--color-content-inverted-focus: var(--uy-color-grayscale-l0);
|
|
424
464
|
--color-content-inverted-active: var(--uy-color-grayscale-l0);
|
|
425
465
|
--color-content-inverted-disabled: var(--uy-color-grayscale-l7);
|
|
466
|
+
--color-content-decorative-teal: var(--uy-color-teal-l6);
|
|
467
|
+
--color-content-decorative-teal-high: var(--uy-color-teal-l10);
|
|
468
|
+
--color-content-decorative-purple: var(--uy-color-purple-l6);
|
|
469
|
+
--color-content-decorative-purple-high: var(--uy-color-purple-l10);
|
|
470
|
+
--color-content-decorative-plum: var(--uy-color-plum-l6);
|
|
471
|
+
--color-content-decorative-plum-high: var(--uy-color-plum-l10);
|
|
472
|
+
--color-content-decorative-orange: var(--uy-color-orange-l6);
|
|
473
|
+
--color-content-decorative-orange-high: var(--uy-color-orange-l10);
|
|
426
474
|
--color-border-primary: var(--uy-color-blue-l5);
|
|
427
475
|
--color-border-primary-enabled: var(--uy-color-blue-l5);
|
|
428
476
|
--color-border-primary-hover: var(--uy-color-blue-l6);
|
|
@@ -441,8 +489,10 @@
|
|
|
441
489
|
--color-border-neutral-enabled: var(--uy-color-grayscale-l6);
|
|
442
490
|
--color-border-neutral-hover: var(--uy-color-grayscale-l6);
|
|
443
491
|
--color-border-neutral-active: var(--uy-color-blue-l5);
|
|
492
|
+
--color-border-neutral-pressed: var(--uy-color-grayscale-l7);
|
|
444
493
|
--color-border-neutral-selected: var(--uy-color-grayscale-l6);
|
|
445
494
|
--color-border-neutral-disabled: var(--uy-color-grayscale-l5);
|
|
495
|
+
--color-border-neutral-low: var(--uy-color-grayscale-l4);
|
|
446
496
|
--color-border-danger: var(--uy-color-red-l4);
|
|
447
497
|
--color-border-danger-lowest: var(--uy-color-red-l2);
|
|
448
498
|
--color-border-warning: var(--uy-color-yellow-l4);
|
|
@@ -484,39 +534,45 @@
|
|
|
484
534
|
--radius-md: var(--uy-radius-100);
|
|
485
535
|
--radius-lg: var(--uy-radius-200);
|
|
486
536
|
--radius-xl: var(--uy-radius-300);
|
|
487
|
-
--
|
|
488
|
-
--
|
|
489
|
-
--
|
|
490
|
-
--
|
|
491
|
-
--typography-default-
|
|
492
|
-
--typography-sm-
|
|
493
|
-
--typography-default-
|
|
494
|
-
--typography-sm-
|
|
495
|
-
--typography-default-
|
|
496
|
-
--typography-sm-
|
|
497
|
-
--typography-default-
|
|
498
|
-
--typography-sm-
|
|
499
|
-
--typography-default-
|
|
500
|
-
--typography-sm-
|
|
501
|
-
--typography-default-
|
|
502
|
-
--typography-sm-
|
|
503
|
-
--typography-default-
|
|
537
|
+
--shadow-raising: 0px 1px 2px 0px var(--uy-color-utility-shadow-raising);
|
|
538
|
+
--shadow-floating: 0px 6px 20px -4px var(--uy-color-utility-shadow-floating);
|
|
539
|
+
--shadow-flying: 0px 8px 20px 4px var(--uy-color-utility-shadow-flying);
|
|
540
|
+
--shadow-soaring: 0px 24px 32px -8px var(--uy-color-utility-shadow-soaring);
|
|
541
|
+
--typography-default-display-heading: var(--uy-font-weight-semibold) var(--uy-text-1000) / 1.25 var(--uy-font-sans);
|
|
542
|
+
--typography-sm-display-heading: var(--uy-font-weight-semibold) var(--uy-text-1000) / 1.25 var(--uy-font-sans);
|
|
543
|
+
--typography-default-h1: var(--uy-font-weight-semibold) var(--uy-text-800) / 1.2 var(--uy-font-sans);
|
|
544
|
+
--typography-sm-h1: var(--uy-font-weight-semibold) var(--uy-text-600) / 1.286 var(--uy-font-sans);
|
|
545
|
+
--typography-default-h2: var(--uy-font-weight-semibold) var(--uy-text-400) / 1.273 var(--uy-font-sans);
|
|
546
|
+
--typography-sm-h2: var(--uy-font-weight-semibold) var(--uy-text-500) / 1.333 var(--uy-font-sans);
|
|
547
|
+
--typography-default-h3: var(--uy-font-weight-semibold) var(--uy-text-200) / 1.333 var(--uy-font-sans);
|
|
548
|
+
--typography-sm-h3: var(--uy-font-weight-semibold) var(--uy-text-300) / 1.2 var(--uy-font-sans);
|
|
549
|
+
--typography-default-h4: var(--uy-font-weight-semibold) var(--uy-text-100) / 1.125 var(--uy-font-sans);
|
|
550
|
+
--typography-sm-h4: var(--uy-font-weight-semibold) var(--uy-text-200) / 1.333 var(--uy-font-sans);
|
|
551
|
+
--typography-default-overline: var(--uy-font-weight-medium) var(--uy-text-100) / 1.5 var(--uy-font-sans);
|
|
552
|
+
--typography-sm-overline: var(--uy-font-weight-medium) var(--uy-text-100) / 1.5 var(--uy-font-sans);
|
|
553
|
+
--typography-default-subtitle: var(--uy-font-weight-regular) var(--uy-text-100) / 1.5 var(--uy-font-sans);
|
|
554
|
+
--typography-sm-subtitle: var(--uy-font-weight-regular) var(--uy-text-100) / 1.333 var(--uy-font-sans);
|
|
555
|
+
--typography-default-display-title: var(--uy-font-weight-semibold) var(--uy-text-300) / 1.4 var(--uy-font-sans);
|
|
556
|
+
--typography-sm-display-title: var(--uy-font-weight-semibold) var(--uy-text-500) / 1.333 var(--uy-font-sans);
|
|
557
|
+
--typography-default-display-body: var(--uy-font-weight-regular) var(--uy-text-100) / 1.5 var(--uy-font-sans);
|
|
558
|
+
--typography-sm-display-body: var(--uy-font-weight-regular) var(--uy-text-200) / 1.556 var(--uy-font-sans);
|
|
559
|
+
--typography-default-body: var(--uy-font-weight-regular) var(--uy-text-100) / 1.5 var(--uy-font-sans);
|
|
504
560
|
--typography-sm-body: var(--uy-font-weight-regular) var(--uy-text-75) / 1.571 var(--uy-font-sans);
|
|
505
|
-
--typography-default-body-strong: var(--uy-font-weight-medium) var(--uy-text-100) / 1.
|
|
561
|
+
--typography-default-body-strong: var(--uy-font-weight-medium) var(--uy-text-100) / 1.5 var(--uy-font-sans);
|
|
506
562
|
--typography-sm-body-strong: var(--uy-font-weight-medium) var(--uy-text-75) / 1.571 var(--uy-font-sans);
|
|
507
|
-
--typography-default-body-small: var(--uy-font-weight-regular) var(--uy-text-
|
|
508
|
-
--typography-sm-body-small: var(--uy-font-weight-regular) var(--uy-text-50) / 1.
|
|
509
|
-
--typography-default-body-small-strong: var(--uy-font-weight-medium) var(--uy-text-
|
|
510
|
-
--typography-sm-body-small-strong: var(--uy-font-weight-medium) var(--uy-text-50) / 1.
|
|
511
|
-
--typography-default-body-large: var(--uy-font-weight-regular) var(--uy-text-
|
|
563
|
+
--typography-default-body-small: var(--uy-font-weight-regular) var(--uy-text-50) / 1.667 var(--uy-font-sans);
|
|
564
|
+
--typography-sm-body-small: var(--uy-font-weight-regular) var(--uy-text-50) / 1.667 var(--uy-font-sans);
|
|
565
|
+
--typography-default-body-small-strong: var(--uy-font-weight-medium) var(--uy-text-50) / 1.667 var(--uy-font-sans);
|
|
566
|
+
--typography-sm-body-small-strong: var(--uy-font-weight-medium) var(--uy-text-50) / 1.667 var(--uy-font-sans);
|
|
567
|
+
--typography-default-body-large: var(--uy-font-weight-regular) var(--uy-text-200) / 1.556 var(--uy-font-sans);
|
|
512
568
|
--typography-sm-body-large: var(--uy-font-weight-regular) var(--uy-text-100) / 1.5 var(--uy-font-sans);
|
|
513
|
-
--typography-default-body-large-strong: var(--uy-font-weight-medium) var(--uy-text-
|
|
569
|
+
--typography-default-body-large-strong: var(--uy-font-weight-medium) var(--uy-text-200) / 1.556 var(--uy-font-sans);
|
|
514
570
|
--typography-sm-body-large-strong: var(--uy-font-weight-medium) var(--uy-text-100) / 1.5 var(--uy-font-sans);
|
|
515
|
-
--typography-default-action: var(--uy-font-weight-medium) var(--uy-text-100) / 1.
|
|
571
|
+
--typography-default-action: var(--uy-font-weight-medium) var(--uy-text-100) / 1.5 var(--uy-font-sans);
|
|
516
572
|
--typography-sm-action: var(--uy-font-weight-medium) var(--uy-text-75) / 1.571 var(--uy-font-sans);
|
|
517
|
-
--typography-default-action-small: var(--uy-font-weight-medium) var(--uy-text-
|
|
518
|
-
--typography-sm-action-small: var(--uy-font-weight-medium) var(--uy-text-50) / 1.
|
|
519
|
-
--typography-default-action-large: var(--uy-font-weight-medium) var(--uy-text-
|
|
573
|
+
--typography-default-action-small: var(--uy-font-weight-medium) var(--uy-text-50) / 1.667 var(--uy-font-sans);
|
|
574
|
+
--typography-sm-action-small: var(--uy-font-weight-medium) var(--uy-text-50) / 1.667 var(--uy-font-sans);
|
|
575
|
+
--typography-default-action-large: var(--uy-font-weight-medium) var(--uy-text-200) / 1.556 var(--uy-font-sans);
|
|
520
576
|
--typography-sm-action-large: var(--uy-font-weight-medium) var(--uy-text-100) / 1.5 var(--uy-font-sans);
|
|
521
577
|
}
|
|
522
578
|
|
|
@@ -664,6 +720,28 @@
|
|
|
664
720
|
}
|
|
665
721
|
}
|
|
666
722
|
|
|
723
|
+
@keyframes zoom-in {
|
|
724
|
+
0% {
|
|
725
|
+
opacity: 0;
|
|
726
|
+
transform: scale(0);
|
|
727
|
+
}
|
|
728
|
+
100% {
|
|
729
|
+
opacity: 1;
|
|
730
|
+
transform: scale(1);
|
|
731
|
+
}
|
|
732
|
+
}
|
|
733
|
+
|
|
734
|
+
@keyframes zoom-out {
|
|
735
|
+
0% {
|
|
736
|
+
opacity: 1;
|
|
737
|
+
transform: scale(1);
|
|
738
|
+
}
|
|
739
|
+
100% {
|
|
740
|
+
opacity: 0;
|
|
741
|
+
transform: scale(0);
|
|
742
|
+
}
|
|
743
|
+
}
|
|
744
|
+
|
|
667
745
|
|
|
668
746
|
/* this is Midnight css reset */
|
|
669
747
|
@layer base {
|
|
@@ -676,7 +754,7 @@
|
|
|
676
754
|
font-size: 14px;
|
|
677
755
|
/* Line height value taken from normalize.css */
|
|
678
756
|
line-height: 1.5;
|
|
679
|
-
-webkit-font-smoothing:
|
|
757
|
+
-webkit-font-smoothing: antialiased;
|
|
680
758
|
-webkit-tap-highlight-color: transparent;
|
|
681
759
|
-moz-osx-font-smoothing: grayscale;
|
|
682
760
|
}
|
|
@@ -16,6 +16,7 @@ const r = [
|
|
|
16
16
|
"800",
|
|
17
17
|
"1000"
|
|
18
18
|
], d = [
|
|
19
|
+
"display-heading",
|
|
19
20
|
"h1",
|
|
20
21
|
"h2",
|
|
21
22
|
"h3",
|
|
@@ -65,7 +66,7 @@ const r = [
|
|
|
65
66
|
"xl",
|
|
66
67
|
"circle",
|
|
67
68
|
"pill"
|
|
68
|
-
], n = ["canvas", "raising", "floating", "flying", "soaring"], s = (e) => !!(/^[a-z]+-l\d+$/.test(e) || /^(?:canvas|surface|content|border|utility)-.+$/.test(e)),
|
|
69
|
+
], n = ["canvas", "raising", "floating", "flying", "soaring"], s = (e) => !!(/^[a-z]+-l\d+$/.test(e) || /^(?:canvas|surface|content|border|utility)-.+$/.test(e)), a = {
|
|
69
70
|
prefix: "uy",
|
|
70
71
|
extend: {
|
|
71
72
|
classGroups: {
|
|
@@ -167,5 +168,5 @@ const r = [
|
|
|
167
168
|
}
|
|
168
169
|
};
|
|
169
170
|
export {
|
|
170
|
-
|
|
171
|
+
a as twMergeConfig
|
|
171
172
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@payfit/unity-themes",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.2.0",
|
|
4
4
|
"main": "./dist/esm/index.js",
|
|
5
5
|
"types": "./dist/esm/index.d.ts",
|
|
6
6
|
"style": "./dist/css/unity.css",
|
|
@@ -34,32 +34,33 @@
|
|
|
34
34
|
"@payfit/code-pushup-tools": "0.0.0-use.local",
|
|
35
35
|
"@payfit/hr-app-eslint": "0.0.0-use.local",
|
|
36
36
|
"@payfit/hr-apps-tsconfigs": "0.0.0-use.local",
|
|
37
|
+
"@payfit/storybook-config": "0.0.0-use.local",
|
|
37
38
|
"@payfit/vite-configs": "0.0.0-use.local",
|
|
38
|
-
"@storybook/addon-a11y": "
|
|
39
|
-
"@storybook/addon-docs": "
|
|
40
|
-
"@storybook/addon-links": "
|
|
41
|
-
"@storybook/addon-vitest": "
|
|
42
|
-
"@storybook/react-vite": "
|
|
43
|
-
"@storybook/test-runner": "0.
|
|
39
|
+
"@storybook/addon-a11y": "10.2.0",
|
|
40
|
+
"@storybook/addon-docs": "10.2.0",
|
|
41
|
+
"@storybook/addon-links": "10.2.0",
|
|
42
|
+
"@storybook/addon-vitest": "10.2.0",
|
|
43
|
+
"@storybook/react-vite": "10.2.0",
|
|
44
|
+
"@storybook/test-runner": "0.24.2",
|
|
44
45
|
"@tailwindcss/vite": "4.1.11",
|
|
45
46
|
"@types/lodash": "4.14.202",
|
|
46
47
|
"@types/node": "^22.0.0",
|
|
47
48
|
"@types/react": "18.3.18",
|
|
48
49
|
"@types/react-dom": "18.3.5",
|
|
49
50
|
"@types/tinycolor2": "1.4.6",
|
|
50
|
-
"@vitest/browser": "
|
|
51
|
+
"@vitest/browser": "4.0.6",
|
|
51
52
|
"msw": "2.8.4",
|
|
52
|
-
"msw-storybook-addon": "^2.0.
|
|
53
|
-
"playwright": "1.
|
|
53
|
+
"msw-storybook-addon": "^2.0.6",
|
|
54
|
+
"playwright": "1.55.1",
|
|
54
55
|
"postcss-import": "16.1.0",
|
|
55
56
|
"prettier": "3.1.0",
|
|
56
57
|
"react": "18.3.1",
|
|
57
58
|
"react-dom": "18.3.1",
|
|
58
|
-
"storybook": "
|
|
59
|
+
"storybook": "10.2.0",
|
|
59
60
|
"tsx": "4.17.0",
|
|
60
61
|
"typescript": "5.9.2",
|
|
61
|
-
"vite": "7.1.
|
|
62
|
-
"vitest": "
|
|
62
|
+
"vite": "7.1.12",
|
|
63
|
+
"vitest": "4.0.9"
|
|
63
64
|
},
|
|
64
65
|
"peerDependencies": {
|
|
65
66
|
"@fontsource/inter": "5.0.19",
|
package/tokens/animations.json
CHANGED
|
@@ -81,6 +81,22 @@
|
|
|
81
81
|
"timingFunction": "ease-out",
|
|
82
82
|
"iterationCount": "1"
|
|
83
83
|
}
|
|
84
|
+
},
|
|
85
|
+
"zoom-in": {
|
|
86
|
+
"$value": {
|
|
87
|
+
"name": "zoom-in",
|
|
88
|
+
"duration": "0.3s",
|
|
89
|
+
"timingFunction": "ease-in",
|
|
90
|
+
"iterationCount": "1"
|
|
91
|
+
}
|
|
92
|
+
},
|
|
93
|
+
"zoom-out": {
|
|
94
|
+
"$value": {
|
|
95
|
+
"name": "zoom-out",
|
|
96
|
+
"duration": "0.3s",
|
|
97
|
+
"timingFunction": "ease-out",
|
|
98
|
+
"iterationCount": "1"
|
|
99
|
+
}
|
|
84
100
|
}
|
|
85
101
|
}
|
|
86
102
|
}
|
package/tokens/colors.json
CHANGED
|
@@ -9,10 +9,10 @@
|
|
|
9
9
|
"$value": "#f8f9fc"
|
|
10
10
|
},
|
|
11
11
|
"L3": {
|
|
12
|
-
"$value": "#
|
|
12
|
+
"$value": "#f5f6f9"
|
|
13
13
|
},
|
|
14
14
|
"L4": {
|
|
15
|
-
"$value": "#
|
|
15
|
+
"$value": "#eceff4"
|
|
16
16
|
},
|
|
17
17
|
"L5": {
|
|
18
18
|
"$value": "#e0e5eb"
|
|
@@ -526,12 +526,53 @@
|
|
|
526
526
|
"default": {
|
|
527
527
|
"$value": "{color.grayscale.L3}"
|
|
528
528
|
},
|
|
529
|
+
"enabled": {
|
|
530
|
+
"$value": "{color.grayscale.L3}"
|
|
531
|
+
},
|
|
529
532
|
"hover": {
|
|
530
|
-
"$value": "{color.grayscale.
|
|
533
|
+
"$value": "{color.grayscale.L4}"
|
|
534
|
+
},
|
|
535
|
+
"pressed": {
|
|
536
|
+
"$value": "{color.grayscale.L5}"
|
|
537
|
+
},
|
|
538
|
+
"focus": {
|
|
539
|
+
"$value": "{color.grayscale.L4}"
|
|
540
|
+
},
|
|
541
|
+
"active": {
|
|
542
|
+
"$value": "{color.grayscale.L5}"
|
|
543
|
+
},
|
|
544
|
+
"disabled": {
|
|
545
|
+
"$value": "{color.grayscale.L3}"
|
|
546
|
+
},
|
|
547
|
+
"selected": {
|
|
548
|
+
"$value": "{color.grayscale.L4}"
|
|
531
549
|
}
|
|
532
550
|
},
|
|
533
551
|
"lowest": {
|
|
534
|
-
"
|
|
552
|
+
"default": {
|
|
553
|
+
"$value": "{color.grayscale.L4}"
|
|
554
|
+
},
|
|
555
|
+
"enabled": {
|
|
556
|
+
"$value": "{color.grayscale.L4}"
|
|
557
|
+
},
|
|
558
|
+
"hover": {
|
|
559
|
+
"$value": "{color.grayscale.L5}"
|
|
560
|
+
},
|
|
561
|
+
"pressed": {
|
|
562
|
+
"$value": "{color.grayscale.L6}"
|
|
563
|
+
},
|
|
564
|
+
"focus": {
|
|
565
|
+
"$value": "{color.grayscale.L5}"
|
|
566
|
+
},
|
|
567
|
+
"active": {
|
|
568
|
+
"$value": "{color.grayscale.L6}"
|
|
569
|
+
},
|
|
570
|
+
"disabled": {
|
|
571
|
+
"$value": "{color.grayscale.L4}"
|
|
572
|
+
},
|
|
573
|
+
"selected": {
|
|
574
|
+
"$value": "{color.grayscale.L5}"
|
|
575
|
+
}
|
|
535
576
|
}
|
|
536
577
|
},
|
|
537
578
|
"danger": {
|
|
@@ -715,32 +756,63 @@
|
|
|
715
756
|
}
|
|
716
757
|
},
|
|
717
758
|
"form": {
|
|
718
|
-
"
|
|
719
|
-
"
|
|
720
|
-
|
|
721
|
-
|
|
722
|
-
"
|
|
723
|
-
|
|
724
|
-
|
|
725
|
-
"
|
|
726
|
-
|
|
727
|
-
|
|
728
|
-
"
|
|
729
|
-
|
|
730
|
-
|
|
731
|
-
"
|
|
732
|
-
|
|
733
|
-
|
|
734
|
-
"
|
|
735
|
-
|
|
736
|
-
|
|
737
|
-
"
|
|
738
|
-
|
|
739
|
-
|
|
740
|
-
"
|
|
759
|
+
"default": {
|
|
760
|
+
"enabled": {
|
|
761
|
+
"$value": "{color.grayscale.L0}"
|
|
762
|
+
},
|
|
763
|
+
"hover": {
|
|
764
|
+
"$value": "{color.grayscale.L0}"
|
|
765
|
+
},
|
|
766
|
+
"pressed": {
|
|
767
|
+
"$value": "{color.grayscale.L0}"
|
|
768
|
+
},
|
|
769
|
+
"focus": {
|
|
770
|
+
"$value": "{color.grayscale.L0}"
|
|
771
|
+
},
|
|
772
|
+
"active": {
|
|
773
|
+
"$value": "{color.blue.L5}"
|
|
774
|
+
},
|
|
775
|
+
"selected": {
|
|
776
|
+
"$value": "{color.blue.L1}"
|
|
777
|
+
},
|
|
778
|
+
"disabled": {
|
|
779
|
+
"$value": "{color.grayscale.L3}"
|
|
780
|
+
},
|
|
781
|
+
"read-only": {
|
|
782
|
+
"$value": "{color.grayscale.L8}"
|
|
783
|
+
},
|
|
784
|
+
"error": {
|
|
785
|
+
"$value": "{color.red.L2}"
|
|
786
|
+
}
|
|
741
787
|
},
|
|
742
|
-
"
|
|
743
|
-
"
|
|
788
|
+
"high": {
|
|
789
|
+
"enabled": {
|
|
790
|
+
"$value": "{color.grayscale.L3}"
|
|
791
|
+
},
|
|
792
|
+
"hover": {
|
|
793
|
+
"$value": "{color.grayscale.L4}"
|
|
794
|
+
},
|
|
795
|
+
"pressed": {
|
|
796
|
+
"$value": "{color.grayscale.L5}"
|
|
797
|
+
},
|
|
798
|
+
"focus": {
|
|
799
|
+
"$value": "{color.grayscale.L3}"
|
|
800
|
+
},
|
|
801
|
+
"active": {
|
|
802
|
+
"$value": "{color.grayscale.L0}"
|
|
803
|
+
},
|
|
804
|
+
"selected": {
|
|
805
|
+
"$value": "{color.blue.L2}"
|
|
806
|
+
},
|
|
807
|
+
"disabled": {
|
|
808
|
+
"$value": "{color.grayscale.L2}"
|
|
809
|
+
},
|
|
810
|
+
"read-only": {
|
|
811
|
+
"$value": "{color.grayscale.L2}"
|
|
812
|
+
},
|
|
813
|
+
"error": {
|
|
814
|
+
"$value": "{color.red.L2}"
|
|
815
|
+
}
|
|
744
816
|
}
|
|
745
817
|
},
|
|
746
818
|
"inverted": {
|
|
@@ -764,6 +836,62 @@
|
|
|
764
836
|
"$value": "{color.grayscale.L11}"
|
|
765
837
|
}
|
|
766
838
|
}
|
|
839
|
+
},
|
|
840
|
+
"decorative-teal": {
|
|
841
|
+
"default": {
|
|
842
|
+
"$value": "{color.teal.L6}"
|
|
843
|
+
},
|
|
844
|
+
"high": {
|
|
845
|
+
"$value": "{color.teal.L9}"
|
|
846
|
+
},
|
|
847
|
+
"low": {
|
|
848
|
+
"$value": "{color.teal.L3}"
|
|
849
|
+
},
|
|
850
|
+
"lowest": {
|
|
851
|
+
"$value": "{color.teal.L2}"
|
|
852
|
+
}
|
|
853
|
+
},
|
|
854
|
+
"decorative-purple": {
|
|
855
|
+
"high": {
|
|
856
|
+
"$value": "{color.purple.L9}"
|
|
857
|
+
},
|
|
858
|
+
"default": {
|
|
859
|
+
"$value": "{color.purple.L6}"
|
|
860
|
+
},
|
|
861
|
+
"low": {
|
|
862
|
+
"$value": "{color.purple.L3}"
|
|
863
|
+
},
|
|
864
|
+
"lowest": {
|
|
865
|
+
"$value": "{color.purple.L2}"
|
|
866
|
+
}
|
|
867
|
+
},
|
|
868
|
+
"decorative-plum": {
|
|
869
|
+
"default": {
|
|
870
|
+
"$value": "{color.plum.L6}"
|
|
871
|
+
},
|
|
872
|
+
"high": {
|
|
873
|
+
"$value": "{color.plum.L9}"
|
|
874
|
+
},
|
|
875
|
+
"low": {
|
|
876
|
+
"$value": "{color.plum.L3}"
|
|
877
|
+
},
|
|
878
|
+
"lowest": {
|
|
879
|
+
"$value": "{color.plum.L2}"
|
|
880
|
+
}
|
|
881
|
+
},
|
|
882
|
+
"decorative-orange": {
|
|
883
|
+
"default": {
|
|
884
|
+
"$value": "{color.orange.L6}"
|
|
885
|
+
},
|
|
886
|
+
"high": {
|
|
887
|
+
"$value": "{color.orange.L9}"
|
|
888
|
+
},
|
|
889
|
+
"low": {
|
|
890
|
+
"$value": "{color.orange.L3}"
|
|
891
|
+
},
|
|
892
|
+
"lowest": {
|
|
893
|
+
"$value": "{color.orange.L2}"
|
|
894
|
+
}
|
|
767
895
|
}
|
|
768
896
|
},
|
|
769
897
|
"content": {
|
|
@@ -786,7 +914,7 @@
|
|
|
786
914
|
"$value": "{color.blue.L7}"
|
|
787
915
|
},
|
|
788
916
|
"active": {
|
|
789
|
-
"$value": "{color.blue.
|
|
917
|
+
"$value": "{color.blue.L6}"
|
|
790
918
|
},
|
|
791
919
|
"disabled": {
|
|
792
920
|
"$value": "{color.grayscale.L8}"
|
|
@@ -984,7 +1112,7 @@
|
|
|
984
1112
|
"$value": "{color.grayscale.L12}"
|
|
985
1113
|
},
|
|
986
1114
|
"selected": {
|
|
987
|
-
"$value": "{color.blue.
|
|
1115
|
+
"$value": "{color.blue.L6}"
|
|
988
1116
|
},
|
|
989
1117
|
"disabled": {
|
|
990
1118
|
"$value": "{color.grayscale.L8}"
|
|
@@ -1018,6 +1146,38 @@
|
|
|
1018
1146
|
"disabled": {
|
|
1019
1147
|
"$value": "{color.grayscale.L7}"
|
|
1020
1148
|
}
|
|
1149
|
+
},
|
|
1150
|
+
"decorative-teal": {
|
|
1151
|
+
"default": {
|
|
1152
|
+
"$value": "{color.teal.L6}"
|
|
1153
|
+
},
|
|
1154
|
+
"high": {
|
|
1155
|
+
"$value": "{color.teal.L10}"
|
|
1156
|
+
}
|
|
1157
|
+
},
|
|
1158
|
+
"decorative-purple": {
|
|
1159
|
+
"default": {
|
|
1160
|
+
"$value": "{color.purple.L6}"
|
|
1161
|
+
},
|
|
1162
|
+
"high": {
|
|
1163
|
+
"$value": "{color.purple.L10}"
|
|
1164
|
+
}
|
|
1165
|
+
},
|
|
1166
|
+
"decorative-plum": {
|
|
1167
|
+
"default": {
|
|
1168
|
+
"$value": "{color.plum.L6}"
|
|
1169
|
+
},
|
|
1170
|
+
"high": {
|
|
1171
|
+
"$value": "{color.plum.L10}"
|
|
1172
|
+
}
|
|
1173
|
+
},
|
|
1174
|
+
"decorative-orange": {
|
|
1175
|
+
"default": {
|
|
1176
|
+
"$value": "{color.orange.L6}"
|
|
1177
|
+
},
|
|
1178
|
+
"high": {
|
|
1179
|
+
"$value": "{color.orange.L10}"
|
|
1180
|
+
}
|
|
1021
1181
|
}
|
|
1022
1182
|
},
|
|
1023
1183
|
"border": {
|
|
@@ -1082,12 +1242,20 @@
|
|
|
1082
1242
|
"active": {
|
|
1083
1243
|
"$value": "{color.blue.L5}"
|
|
1084
1244
|
},
|
|
1245
|
+
"pressed": {
|
|
1246
|
+
"$value": "{color.grayscale.L7}"
|
|
1247
|
+
},
|
|
1085
1248
|
"selected": {
|
|
1086
1249
|
"$value": "{color.grayscale.L6}"
|
|
1087
1250
|
},
|
|
1088
1251
|
"disabled": {
|
|
1089
1252
|
"$value": "{color.grayscale.L5}"
|
|
1090
1253
|
}
|
|
1254
|
+
},
|
|
1255
|
+
"low": {
|
|
1256
|
+
"default": {
|
|
1257
|
+
"$value": "{color.grayscale.L4}"
|
|
1258
|
+
}
|
|
1091
1259
|
}
|
|
1092
1260
|
},
|
|
1093
1261
|
"danger": {
|
|
@@ -1200,7 +1368,21 @@
|
|
|
1200
1368
|
"$value": "{color.yellow.L4}"
|
|
1201
1369
|
},
|
|
1202
1370
|
"backdrop": {
|
|
1203
|
-
"$value": "#
|
|
1371
|
+
"$value": "#030E1D99"
|
|
1372
|
+
},
|
|
1373
|
+
"shadow": {
|
|
1374
|
+
"raising": {
|
|
1375
|
+
"$value": "#0420400A"
|
|
1376
|
+
},
|
|
1377
|
+
"floating": {
|
|
1378
|
+
"$value": "#04204014"
|
|
1379
|
+
},
|
|
1380
|
+
"flying": {
|
|
1381
|
+
"$value": "#0420401A"
|
|
1382
|
+
},
|
|
1383
|
+
"soaring": {
|
|
1384
|
+
"$value": "#0420401f"
|
|
1385
|
+
}
|
|
1204
1386
|
}
|
|
1205
1387
|
}
|
|
1206
1388
|
}
|
package/tokens/shadows.json
CHANGED
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
},
|
|
8
8
|
"raising": {
|
|
9
9
|
"$value": {
|
|
10
|
-
"color": "
|
|
10
|
+
"color": "{color.utility.shadow.raising}",
|
|
11
11
|
"offsetX": "0px",
|
|
12
12
|
"offsetY": "1px",
|
|
13
13
|
"blur": "2px",
|
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
},
|
|
17
17
|
"floating": {
|
|
18
18
|
"$value": {
|
|
19
|
-
"color": "
|
|
19
|
+
"color": "{color.utility.shadow.floating}",
|
|
20
20
|
"offsetX": "0px",
|
|
21
21
|
"offsetY": "6px",
|
|
22
22
|
"blur": "20px",
|
|
@@ -25,7 +25,7 @@
|
|
|
25
25
|
},
|
|
26
26
|
"flying": {
|
|
27
27
|
"$value": {
|
|
28
|
-
"color": "
|
|
28
|
+
"color": "{color.utility.shadow.flying}",
|
|
29
29
|
"offsetX": "0px",
|
|
30
30
|
"offsetY": "8px",
|
|
31
31
|
"blur": "20px",
|
|
@@ -34,7 +34,7 @@
|
|
|
34
34
|
},
|
|
35
35
|
"soaring": {
|
|
36
36
|
"$value": {
|
|
37
|
-
"color": "
|
|
37
|
+
"color": "{color.utility.shadow.soaring}",
|
|
38
38
|
"offsetX": "0px",
|
|
39
39
|
"offsetY": "24px",
|
|
40
40
|
"blur": "32px",
|
package/tokens/sizes.json
CHANGED
package/tokens/text.json
CHANGED
|
@@ -31,7 +31,7 @@
|
|
|
31
31
|
"$type": "dimension",
|
|
32
32
|
"$description": "Font sizes for the design system",
|
|
33
33
|
"50": {
|
|
34
|
-
"$value": "
|
|
34
|
+
"$value": "12px"
|
|
35
35
|
},
|
|
36
36
|
"75": {
|
|
37
37
|
"$value": "14px"
|
|
@@ -46,19 +46,19 @@
|
|
|
46
46
|
"$value": "20px"
|
|
47
47
|
},
|
|
48
48
|
"400": {
|
|
49
|
-
"$value": "
|
|
49
|
+
"$value": "22px"
|
|
50
50
|
},
|
|
51
51
|
"500": {
|
|
52
|
-
"$value": "
|
|
52
|
+
"$value": "24px"
|
|
53
53
|
},
|
|
54
54
|
"600": {
|
|
55
|
-
"$value": "
|
|
55
|
+
"$value": "28px"
|
|
56
56
|
},
|
|
57
57
|
"800": {
|
|
58
|
-
"$value": "
|
|
58
|
+
"$value": "30px"
|
|
59
59
|
},
|
|
60
60
|
"1000": {
|
|
61
|
-
"$value": "
|
|
61
|
+
"$value": "32px"
|
|
62
62
|
},
|
|
63
63
|
"1200": {
|
|
64
64
|
"$value": "41px"
|
package/tokens/typography.json
CHANGED
|
@@ -1,20 +1,38 @@
|
|
|
1
1
|
{
|
|
2
2
|
"typography": {
|
|
3
3
|
"$type": "typography",
|
|
4
|
-
"
|
|
4
|
+
"display-heading": {
|
|
5
5
|
"default": {
|
|
6
6
|
"$value": {
|
|
7
7
|
"fontFamily": "{font.sans}",
|
|
8
8
|
"fontSize": "{text.1000}",
|
|
9
|
-
"fontWeight": "{font-weight.
|
|
10
|
-
"lineHeight": 1.
|
|
9
|
+
"fontWeight": "{font-weight.semibold}",
|
|
10
|
+
"lineHeight": 1.25
|
|
11
11
|
}
|
|
12
12
|
},
|
|
13
13
|
"sm": {
|
|
14
14
|
"$value": {
|
|
15
15
|
"fontFamily": "{font.sans}",
|
|
16
|
-
"
|
|
17
|
-
"
|
|
16
|
+
"fontSize": "{text.1000}",
|
|
17
|
+
"fontWeight": "{font-weight.semibold}",
|
|
18
|
+
"lineHeight": 1.25
|
|
19
|
+
}
|
|
20
|
+
}
|
|
21
|
+
},
|
|
22
|
+
"h1": {
|
|
23
|
+
"default": {
|
|
24
|
+
"$value": {
|
|
25
|
+
"fontFamily": "{font.sans}",
|
|
26
|
+
"fontSize": "{text.800}",
|
|
27
|
+
"fontWeight": "{font-weight.semibold}",
|
|
28
|
+
"lineHeight": 1.2
|
|
29
|
+
}
|
|
30
|
+
},
|
|
31
|
+
"sm": {
|
|
32
|
+
"$value": {
|
|
33
|
+
"fontFamily": "{font.sans}",
|
|
34
|
+
"fontWeight": "{font-weight.semibold}",
|
|
35
|
+
"lineHeight": 1.286,
|
|
18
36
|
"fontSize": "{text.600}"
|
|
19
37
|
}
|
|
20
38
|
}
|
|
@@ -23,17 +41,17 @@
|
|
|
23
41
|
"default": {
|
|
24
42
|
"$value": {
|
|
25
43
|
"fontFamily": "{font.sans}",
|
|
26
|
-
"fontSize": "{text.
|
|
27
|
-
"fontWeight": "{font-weight.
|
|
28
|
-
"lineHeight": 1.
|
|
44
|
+
"fontSize": "{text.400}",
|
|
45
|
+
"fontWeight": "{font-weight.semibold}",
|
|
46
|
+
"lineHeight": 1.273
|
|
29
47
|
}
|
|
30
48
|
},
|
|
31
49
|
"sm": {
|
|
32
50
|
"$value": {
|
|
33
51
|
"fontFamily": "{font.sans}",
|
|
34
|
-
"fontWeight": "{font-weight.
|
|
35
|
-
"lineHeight": 1.
|
|
36
|
-
"fontSize": "{text.
|
|
52
|
+
"fontWeight": "{font-weight.semibold}",
|
|
53
|
+
"lineHeight": 1.333,
|
|
54
|
+
"fontSize": "{text.500}"
|
|
37
55
|
}
|
|
38
56
|
}
|
|
39
57
|
},
|
|
@@ -41,17 +59,17 @@
|
|
|
41
59
|
"default": {
|
|
42
60
|
"$value": {
|
|
43
61
|
"fontFamily": "{font.sans}",
|
|
44
|
-
"fontSize": "{text.
|
|
45
|
-
"fontWeight": "{font-weight.
|
|
46
|
-
"lineHeight": 1.
|
|
62
|
+
"fontSize": "{text.200}",
|
|
63
|
+
"fontWeight": "{font-weight.semibold}",
|
|
64
|
+
"lineHeight": 1.333
|
|
47
65
|
}
|
|
48
66
|
},
|
|
49
67
|
"sm": {
|
|
50
68
|
"$value": {
|
|
51
69
|
"fontFamily": "{font.sans}",
|
|
52
|
-
"fontWeight": "{font-weight.
|
|
53
|
-
"lineHeight": 1.
|
|
54
|
-
"fontSize": "{text.
|
|
70
|
+
"fontWeight": "{font-weight.semibold}",
|
|
71
|
+
"lineHeight": 1.2,
|
|
72
|
+
"fontSize": "{text.300}"
|
|
55
73
|
}
|
|
56
74
|
}
|
|
57
75
|
},
|
|
@@ -59,17 +77,17 @@
|
|
|
59
77
|
"default": {
|
|
60
78
|
"$value": {
|
|
61
79
|
"fontFamily": "{font.sans}",
|
|
62
|
-
"fontSize": "{text.
|
|
63
|
-
"fontWeight": "{font-weight.
|
|
64
|
-
"lineHeight": 1.
|
|
80
|
+
"fontSize": "{text.100}",
|
|
81
|
+
"fontWeight": "{font-weight.semibold}",
|
|
82
|
+
"lineHeight": 1.125
|
|
65
83
|
}
|
|
66
84
|
},
|
|
67
85
|
"sm": {
|
|
68
86
|
"$value": {
|
|
69
87
|
"fontFamily": "{font.sans}",
|
|
70
|
-
"fontWeight": "{font-weight.
|
|
71
|
-
"lineHeight": 1.
|
|
72
|
-
"fontSize": "{text.
|
|
88
|
+
"fontWeight": "{font-weight.semibold}",
|
|
89
|
+
"lineHeight": 1.333,
|
|
90
|
+
"fontSize": "{text.200}"
|
|
73
91
|
}
|
|
74
92
|
}
|
|
75
93
|
},
|
|
@@ -77,16 +95,16 @@
|
|
|
77
95
|
"default": {
|
|
78
96
|
"$value": {
|
|
79
97
|
"fontFamily": "{font.sans}",
|
|
80
|
-
"fontSize": "{text.
|
|
98
|
+
"fontSize": "{text.100}",
|
|
81
99
|
"fontWeight": "{font-weight.medium}",
|
|
82
|
-
"lineHeight": 1.
|
|
100
|
+
"lineHeight": 1.5
|
|
83
101
|
}
|
|
84
102
|
},
|
|
85
103
|
"sm": {
|
|
86
104
|
"$value": {
|
|
87
105
|
"fontFamily": "{font.sans}",
|
|
88
106
|
"fontWeight": "{font-weight.medium}",
|
|
89
|
-
"lineHeight": 1.
|
|
107
|
+
"lineHeight": 1.5,
|
|
90
108
|
"fontSize": "{text.100}"
|
|
91
109
|
}
|
|
92
110
|
}
|
|
@@ -95,9 +113,9 @@
|
|
|
95
113
|
"default": {
|
|
96
114
|
"$value": {
|
|
97
115
|
"fontFamily": "{font.sans}",
|
|
98
|
-
"fontSize": "{text.
|
|
116
|
+
"fontSize": "{text.100}",
|
|
99
117
|
"fontWeight": "{font-weight.regular}",
|
|
100
|
-
"lineHeight": 1.
|
|
118
|
+
"lineHeight": 1.5
|
|
101
119
|
}
|
|
102
120
|
},
|
|
103
121
|
"sm": {
|
|
@@ -105,7 +123,7 @@
|
|
|
105
123
|
"fontFamily": "{font.sans}",
|
|
106
124
|
"fontWeight": "{font-weight.regular}",
|
|
107
125
|
"lineHeight": 1.333,
|
|
108
|
-
"fontSize": "{text.
|
|
126
|
+
"fontSize": "{text.100}"
|
|
109
127
|
}
|
|
110
128
|
}
|
|
111
129
|
},
|
|
@@ -113,17 +131,17 @@
|
|
|
113
131
|
"default": {
|
|
114
132
|
"$value": {
|
|
115
133
|
"fontFamily": "{font.sans}",
|
|
116
|
-
"fontSize": "{text.
|
|
117
|
-
"fontWeight": "{font-weight.
|
|
118
|
-
"lineHeight": 1.
|
|
134
|
+
"fontSize": "{text.300}",
|
|
135
|
+
"fontWeight": "{font-weight.semibold}",
|
|
136
|
+
"lineHeight": 1.4
|
|
119
137
|
}
|
|
120
138
|
},
|
|
121
139
|
"sm": {
|
|
122
140
|
"$value": {
|
|
123
141
|
"fontFamily": "{font.sans}",
|
|
124
|
-
"fontWeight": "{font-weight.
|
|
125
|
-
"lineHeight": 1.
|
|
126
|
-
"fontSize": "{text.
|
|
142
|
+
"fontWeight": "{font-weight.semibold}",
|
|
143
|
+
"lineHeight": 1.333,
|
|
144
|
+
"fontSize": "{text.500}"
|
|
127
145
|
}
|
|
128
146
|
}
|
|
129
147
|
},
|
|
@@ -131,17 +149,17 @@
|
|
|
131
149
|
"default": {
|
|
132
150
|
"$value": {
|
|
133
151
|
"fontFamily": "{font.sans}",
|
|
134
|
-
"fontSize": "{text.
|
|
135
|
-
"fontWeight": "{font-weight.
|
|
136
|
-
"lineHeight": 1.
|
|
152
|
+
"fontSize": "{text.100}",
|
|
153
|
+
"fontWeight": "{font-weight.regular}",
|
|
154
|
+
"lineHeight": 1.5
|
|
137
155
|
}
|
|
138
156
|
},
|
|
139
157
|
"sm": {
|
|
140
158
|
"$value": {
|
|
141
159
|
"fontFamily": "{font.sans}",
|
|
142
|
-
"fontWeight": "{font-weight.
|
|
143
|
-
"lineHeight": 1.
|
|
144
|
-
"fontSize": "{text.
|
|
160
|
+
"fontWeight": "{font-weight.regular}",
|
|
161
|
+
"lineHeight": 1.556,
|
|
162
|
+
"fontSize": "{text.200}"
|
|
145
163
|
}
|
|
146
164
|
}
|
|
147
165
|
},
|
|
@@ -151,7 +169,7 @@
|
|
|
151
169
|
"fontFamily": "{font.sans}",
|
|
152
170
|
"fontSize": "{text.100}",
|
|
153
171
|
"fontWeight": "{font-weight.regular}",
|
|
154
|
-
"lineHeight": 1.
|
|
172
|
+
"lineHeight": 1.5
|
|
155
173
|
}
|
|
156
174
|
},
|
|
157
175
|
"sm": {
|
|
@@ -169,7 +187,7 @@
|
|
|
169
187
|
"fontFamily": "{font.sans}",
|
|
170
188
|
"fontSize": "{text.100}",
|
|
171
189
|
"fontWeight": "{font-weight.medium}",
|
|
172
|
-
"lineHeight": 1.
|
|
190
|
+
"lineHeight": 1.5
|
|
173
191
|
}
|
|
174
192
|
},
|
|
175
193
|
"sm": {
|
|
@@ -185,16 +203,16 @@
|
|
|
185
203
|
"default": {
|
|
186
204
|
"$value": {
|
|
187
205
|
"fontFamily": "{font.sans}",
|
|
188
|
-
"fontSize": "{text.
|
|
206
|
+
"fontSize": "{text.50}",
|
|
189
207
|
"fontWeight": "{font-weight.regular}",
|
|
190
|
-
"lineHeight": 1.
|
|
208
|
+
"lineHeight": 1.667
|
|
191
209
|
}
|
|
192
210
|
},
|
|
193
211
|
"sm": {
|
|
194
212
|
"$value": {
|
|
195
213
|
"fontFamily": "{font.sans}",
|
|
196
214
|
"fontWeight": "{font-weight.regular}",
|
|
197
|
-
"lineHeight": 1.
|
|
215
|
+
"lineHeight": 1.667,
|
|
198
216
|
"fontSize": "{text.50}"
|
|
199
217
|
}
|
|
200
218
|
}
|
|
@@ -203,16 +221,16 @@
|
|
|
203
221
|
"default": {
|
|
204
222
|
"$value": {
|
|
205
223
|
"fontFamily": "{font.sans}",
|
|
206
|
-
"fontSize": "{text.
|
|
224
|
+
"fontSize": "{text.50}",
|
|
207
225
|
"fontWeight": "{font-weight.medium}",
|
|
208
|
-
"lineHeight": 1.
|
|
226
|
+
"lineHeight": 1.667
|
|
209
227
|
}
|
|
210
228
|
},
|
|
211
229
|
"sm": {
|
|
212
230
|
"$value": {
|
|
213
231
|
"fontFamily": "{font.sans}",
|
|
214
232
|
"fontWeight": "{font-weight.medium}",
|
|
215
|
-
"lineHeight": 1.
|
|
233
|
+
"lineHeight": 1.667,
|
|
216
234
|
"fontSize": "{text.50}"
|
|
217
235
|
}
|
|
218
236
|
}
|
|
@@ -221,9 +239,9 @@
|
|
|
221
239
|
"default": {
|
|
222
240
|
"$value": {
|
|
223
241
|
"fontFamily": "{font.sans}",
|
|
224
|
-
"fontSize": "{text.
|
|
242
|
+
"fontSize": "{text.200}",
|
|
225
243
|
"fontWeight": "{font-weight.regular}",
|
|
226
|
-
"lineHeight": 1.
|
|
244
|
+
"lineHeight": 1.556
|
|
227
245
|
}
|
|
228
246
|
},
|
|
229
247
|
"sm": {
|
|
@@ -239,9 +257,9 @@
|
|
|
239
257
|
"default": {
|
|
240
258
|
"$value": {
|
|
241
259
|
"fontFamily": "{font.sans}",
|
|
242
|
-
"fontSize": "{text.
|
|
260
|
+
"fontSize": "{text.200}",
|
|
243
261
|
"fontWeight": "{font-weight.medium}",
|
|
244
|
-
"lineHeight": 1.
|
|
262
|
+
"lineHeight": 1.556
|
|
245
263
|
}
|
|
246
264
|
},
|
|
247
265
|
"sm": {
|
|
@@ -259,7 +277,7 @@
|
|
|
259
277
|
"fontFamily": "{font.sans}",
|
|
260
278
|
"fontSize": "{text.100}",
|
|
261
279
|
"fontWeight": "{font-weight.medium}",
|
|
262
|
-
"lineHeight": 1.
|
|
280
|
+
"lineHeight": 1.5
|
|
263
281
|
}
|
|
264
282
|
},
|
|
265
283
|
"sm": {
|
|
@@ -275,16 +293,16 @@
|
|
|
275
293
|
"default": {
|
|
276
294
|
"$value": {
|
|
277
295
|
"fontFamily": "{font.sans}",
|
|
278
|
-
"fontSize": "{text.
|
|
296
|
+
"fontSize": "{text.50}",
|
|
279
297
|
"fontWeight": "{font-weight.medium}",
|
|
280
|
-
"lineHeight": 1.
|
|
298
|
+
"lineHeight": 1.667
|
|
281
299
|
}
|
|
282
300
|
},
|
|
283
301
|
"sm": {
|
|
284
302
|
"$value": {
|
|
285
303
|
"fontFamily": "{font.sans}",
|
|
286
304
|
"fontWeight": "{font-weight.medium}",
|
|
287
|
-
"lineHeight": 1.
|
|
305
|
+
"lineHeight": 1.667,
|
|
288
306
|
"fontSize": "{text.50}"
|
|
289
307
|
}
|
|
290
308
|
}
|
|
@@ -293,9 +311,9 @@
|
|
|
293
311
|
"default": {
|
|
294
312
|
"$value": {
|
|
295
313
|
"fontFamily": "{font.sans}",
|
|
296
|
-
"fontSize": "{text.
|
|
314
|
+
"fontSize": "{text.200}",
|
|
297
315
|
"fontWeight": "{font-weight.medium}",
|
|
298
|
-
"lineHeight": 1.
|
|
316
|
+
"lineHeight": 1.556
|
|
299
317
|
}
|
|
300
318
|
},
|
|
301
319
|
"sm": {
|