@syscore/ui-library 1.1.8 → 1.1.10

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.
Files changed (45) hide show
  1. package/client/components/ui/Navigation.tsx +958 -0
  2. package/client/components/ui/SearchField.tsx +157 -0
  3. package/client/components/ui/StrategyTable.tsx +303 -0
  4. package/client/components/ui/Tag.tsx +127 -0
  5. package/client/components/ui/alert-dialog.tsx +1 -1
  6. package/client/components/ui/button.tsx +67 -127
  7. package/client/components/ui/calendar.tsx +2 -2
  8. package/client/components/ui/card.tsx +10 -13
  9. package/client/components/ui/carousel.tsx +56 -46
  10. package/client/components/ui/command.tsx +27 -16
  11. package/client/components/ui/dialog.tsx +113 -92
  12. package/client/components/ui/label.tsx +5 -3
  13. package/client/components/ui/menubar.tsx +1 -1
  14. package/client/components/ui/pagination.tsx +3 -3
  15. package/client/components/ui/sidebar.tsx +1 -1
  16. package/client/components/ui/tabs.tsx +350 -5
  17. package/client/components/ui/toggle.tsx +71 -19
  18. package/client/components/ui/tooltip.tsx +69 -18
  19. package/client/global.css +635 -58
  20. package/dist/ui/fonts/FT-Made/FTMade-Regular.otf +0 -0
  21. package/dist/ui/fonts/FT-Made/FTMade-Regular.ttf +0 -0
  22. package/dist/ui/fonts/FT-Made/FTMade-Regular.woff +0 -0
  23. package/dist/ui/fonts/FT-Made/FTMade-Regular.woff2 +0 -0
  24. package/dist/ui/fonts/Mazzard-M/mazzardsoftm-black.otf +0 -0
  25. package/dist/ui/fonts/Mazzard-M/mazzardsoftm-blackitalic.otf +0 -0
  26. package/dist/ui/fonts/Mazzard-M/mazzardsoftm-bold.otf +0 -0
  27. package/dist/ui/fonts/Mazzard-M/mazzardsoftm-bolditalic.otf +0 -0
  28. package/dist/ui/fonts/Mazzard-M/mazzardsoftm-extrabold.otf +0 -0
  29. package/dist/ui/fonts/Mazzard-M/mazzardsoftm-extrabolditalic.otf +0 -0
  30. package/dist/ui/fonts/Mazzard-M/mazzardsoftm-extralight.otf +0 -0
  31. package/dist/ui/fonts/Mazzard-M/mazzardsoftm-extralightitalic.otf +0 -0
  32. package/dist/ui/fonts/Mazzard-M/mazzardsoftm-italic.otf +0 -0
  33. package/dist/ui/fonts/Mazzard-M/mazzardsoftm-light.otf +0 -0
  34. package/dist/ui/fonts/Mazzard-M/mazzardsoftm-lightitalic.otf +0 -0
  35. package/dist/ui/fonts/Mazzard-M/mazzardsoftm-medium.otf +0 -0
  36. package/dist/ui/fonts/Mazzard-M/mazzardsoftm-mediumitalic.otf +0 -0
  37. package/dist/ui/fonts/Mazzard-M/mazzardsoftm-regular.otf +0 -0
  38. package/dist/ui/fonts/Mazzard-M/mazzardsoftm-semibold.otf +0 -0
  39. package/dist/ui/fonts/Mazzard-M/mazzardsoftm-semibolditalic.otf +0 -0
  40. package/dist/ui/fonts/Mazzard-M/mazzardsoftm-thin.otf +0 -0
  41. package/dist/ui/fonts/Mazzard-M/mazzardsoftm-thinitalic.otf +0 -0
  42. package/dist/ui/index.cjs.js +1 -1
  43. package/dist/ui/index.d.ts +1 -1
  44. package/dist/ui/index.es.js +401 -329
  45. package/package.json +3 -2
package/client/global.css CHANGED
@@ -6,6 +6,145 @@ layer(base);
6
6
 
7
7
  @import "tailwindcss";
8
8
 
9
+ @font-face {
10
+ font-family: "Mazzard Soft M";
11
+ src: url("/fonts/Mazzard-M/mazzardsoftm-black.otf");
12
+ font-weight: 900;
13
+ font-style: normal;
14
+ font-display: swap;
15
+ }
16
+ @font-face {
17
+ font-family: "Mazzard Soft M";
18
+ src: url("/fonts/Mazzard-M/mazzardsoftm-blackitalic.otf");
19
+ font-weight: 900;
20
+ font-style: italic;
21
+ font-display: swap;
22
+ }
23
+ @font-face {
24
+ font-family: "Mazzard Soft M";
25
+ src: url("/fonts/Mazzard-M/mazzardsoftm-extrabold.otf");
26
+ font-weight: 800;
27
+ font-style: normal;
28
+ font-display: swap;
29
+ }
30
+ @font-face {
31
+ font-family: "Mazzard Soft M";
32
+ src: url("/fonts/Mazzard-M/mazzardsoftm-extrabolditalic.otf");
33
+ font-weight: 800;
34
+ font-style: italic;
35
+ font-display: swap;
36
+ }
37
+ @font-face {
38
+ font-family: "Mazzard Soft M";
39
+ src: url("/fonts/Mazzard-M/mazzardsoftm-bold.otf");
40
+ font-weight: 700;
41
+ font-style: normal;
42
+ font-display: swap;
43
+ }
44
+ @font-face {
45
+ font-family: "Mazzard Soft M";
46
+ src: url("/fonts/Mazzard-M/mazzardsoftm-bolditalic.otf");
47
+ font-weight: 700;
48
+ font-style: italic;
49
+ font-display: swap;
50
+ }
51
+ @font-face {
52
+ font-family: "Mazzard Soft M";
53
+ src: url("/fonts/Mazzard-M/mazzardsoftm-semibold.otf");
54
+ font-weight: 600;
55
+ font-style: normal;
56
+ font-display: swap;
57
+ }
58
+ @font-face {
59
+ font-family: "Mazzard Soft M";
60
+ src: url("/fonts/Mazzard-M/mazzardsoftm-semibolditalic.otf");
61
+ font-weight: 600;
62
+ font-style: italic;
63
+ font-display: swap;
64
+ }
65
+ @font-face {
66
+ font-family: "Mazzard Soft M";
67
+ src: url("/fonts/Mazzard-M/mazzardsoftm-medium.otf");
68
+ font-weight: 500;
69
+ font-style: normal;
70
+ font-display: swap;
71
+ }
72
+ @font-face {
73
+ font-family: "Mazzard Soft M";
74
+ src: url("/fonts/Mazzard-M/mazzardsoftm-mediumitalic.otf");
75
+ font-weight: 500;
76
+ font-style: italic;
77
+ font-display: swap;
78
+ }
79
+ @font-face {
80
+ font-family: "Mazzard Soft M";
81
+ src: url("/fonts/Mazzard-M/mazzardsoftm-regular.otf");
82
+ font-weight: 400;
83
+ font-style: normal;
84
+ font-display: swap;
85
+ }
86
+ @font-face {
87
+ font-family: "Mazzard Soft M";
88
+ src: url("/fonts/Mazzard-M/mazzardsoftm-italic.otf");
89
+ font-weight: 400;
90
+ font-style: italic;
91
+ font-display: swap;
92
+ }
93
+ @font-face {
94
+ font-family: "Mazzard Soft M";
95
+ src: url("/fonts/Mazzard-M/mazzardsoftm-light.otf");
96
+ font-weight: 300;
97
+ font-style: normal;
98
+ font-display: swap;
99
+ }
100
+ @font-face {
101
+ font-family: "Mazzard Soft M";
102
+ src: url("/fonts/Mazzard-M/mazzardsoftm-lightitalic.otf");
103
+ font-weight: 300;
104
+ font-style: italic;
105
+ font-display: swap;
106
+ }
107
+ @font-face {
108
+ font-family: "Mazzard Soft M";
109
+ src: url("/fonts/Mazzard-M/mazzardsoftm-extralight.otf");
110
+ font-weight: 200;
111
+ font-style: normal;
112
+ font-display: swap;
113
+ }
114
+ @font-face {
115
+ font-family: "Mazzard Soft M";
116
+ src: url("/fonts/Mazzard-M/mazzardsoftm-extralightitalic.otf");
117
+ font-weight: 200;
118
+ font-style: italic;
119
+ font-display: swap;
120
+ }
121
+ @font-face {
122
+ font-family: "Mazzard Soft M";
123
+ src: url("/fonts/Mazzard-M/mazzardsoftm-thin.otf");
124
+ font-weight: 100;
125
+ font-style: normal;
126
+ font-display: swap;
127
+ }
128
+ @font-face {
129
+ font-family: "Mazzard Soft M";
130
+ src: url("/fonts/Mazzard-M/mazzardsoftm-thinitalic.otf");
131
+ font-weight: 100;
132
+ font-style: italic;
133
+ font-display: swap;
134
+ }
135
+
136
+ @font-face {
137
+ font-family: "FtMade";
138
+ src:
139
+ url("/fonts/FT-Made/FTMade-Regular.woff2") format("woff2"),
140
+ url("/fonts/FT-Made/FTMade-Regular.woff") format("woff"),
141
+ url("/fonts/FT-Made/FTMade-Regular.otf") format("opentype"),
142
+ url("/fonts/FT-Made/FTMade-Regular.ttf") format("truetype");
143
+ font-weight: normal;
144
+ font-style: normal;
145
+ font-display: swap;
146
+ }
147
+
9
148
  @plugin 'tailwindcss-animate';
10
149
 
11
150
  @custom-variant dark (&:is(.dark *));
@@ -21,6 +160,16 @@ layer(base);
21
160
  }
22
161
  }
23
162
 
163
+ @utility btn-primary-gradient {
164
+ background-image:
165
+ linear-gradient(
166
+ 0deg,
167
+ rgba(15, 116, 138, 0.6) 0%,
168
+ rgba(15, 116, 138, 0.6) 100%
169
+ ),
170
+ linear-gradient(99deg, #41d5f6 3.39%, #3eecd1 57.86%, #66fcd9 112.32%);
171
+ }
172
+
24
173
  @theme {
25
174
  --color-inherit: inherit;
26
175
  --color-current: currentColor;
@@ -382,6 +531,196 @@ layer(base);
382
531
  --radius-md: calc(var(--radius) - 2px);
383
532
  --radius-sm: calc(var(--radius) - 4px);
384
533
 
534
+ /* Figma Design System Colors */
535
+ --color-white: #fff;
536
+ --color-black: #000;
537
+
538
+ --color-gray-50: #f9f9fa;
539
+ --color-gray-100: #eff1f2;
540
+ --color-gray-200: #dedfe3;
541
+ --color-gray-300: #cbcdd2;
542
+ --color-gray-400: #9fa2ab;
543
+ --color-gray-500: #71747d;
544
+ --color-gray-600: #52545d;
545
+ --color-gray-700: #3e4049;
546
+ --color-gray-800: #282a31;
547
+ --color-gray-900: #171820;
548
+
549
+ --color-blue-50: #fbfdfe;
550
+ --color-blue-100: #eff5fb;
551
+ --color-blue-200: #cbe0f1;
552
+ --color-blue-300: #a3c8e6;
553
+ --color-blue-400: #72abd9;
554
+ --color-blue-500: #3481c1;
555
+ --color-blue-600: #2e74ad;
556
+ --color-blue-700: #286495;
557
+ --color-blue-800: #22547d;
558
+ --color-blue-900: #183b58;
559
+
560
+ --color-cyan-50: #fafeff;
561
+ --color-cyan-100: #d6f4fb;
562
+ --color-cyan-200: #95e2f4;
563
+ --color-cyan-300: #39c9ea;
564
+ --color-cyan-400: #18bde2;
565
+ --color-cyan-500: #16adcf;
566
+ --color-cyan-600: #149ebd;
567
+ --color-cyan-700: #128ba6;
568
+ --color-cyan-800: #0f748a;
569
+ --color-cyan-900: #0a5161;
570
+
571
+ --color-emerald-50: #fbfefe;
572
+ --color-emerald-100: #e0fbf5;
573
+ --color-emerald-200: #bcf6ea;
574
+ --color-emerald-300: #8aefdb;
575
+ --color-emerald-400: #50e7ca;
576
+ --color-emerald-500: #1dd7b2;
577
+ --color-emerald-600: #1bc5a3;
578
+ --color-emerald-700: #17aa8d;
579
+ --color-emerald-800: #138b73;
580
+ --color-emerald-900: #0e6352;
581
+
582
+ --color-plum-50: #fdfcfd;
583
+ --color-plum-100: #f7f2f6;
584
+ --color-plum-200: #f0e1ed;
585
+ --color-plum-300: #e8cae1;
586
+ --color-plum-400: #dcadd2;
587
+ --color-plum-500: #bf78ae;
588
+ --color-plum-600: #aa6a9b;
589
+ --color-plum-700: #905c84;
590
+ --color-plum-800: #7f5075;
591
+ --color-plum-900: #633e5a;
592
+
593
+ --color-coral-50: #fefcfb;
594
+ --color-coral-100: #fcf4f2;
595
+ --color-coral-200: #f8dfd8;
596
+ --color-coral-300: #f4c9be;
597
+ --color-coral-400: #f0aa99;
598
+ --color-coral-500: #ed896f;
599
+ --color-coral-600: #e67357;
600
+ --color-coral-700: #dc5432;
601
+ --color-coral-800: #bc4324;
602
+ --color-coral-900: #81311d;
603
+
604
+ --color-pink-50: #fefbfb;
605
+ --color-pink-100: #fceeef;
606
+ --color-pink-200: #f7d4d8;
607
+ --color-pink-300: #f2b4bb;
608
+ --color-pink-400: #efa4ad;
609
+ --color-pink-500: #eb8e99;
610
+ --color-pink-600: #e77481;
611
+ --color-pink-700: #e25566;
612
+ --color-pink-800: #c92e3f;
613
+ --color-pink-900: #9d1b2a;
614
+
615
+ --color-bronze-50: #fefdfb;
616
+ --color-bronze-100: #fbf8f3;
617
+ --color-bronze-200: #f8f1e8;
618
+ --color-bronze-300: #f3e7d8;
619
+ --color-bronze-400: #eedec9;
620
+ --color-bronze-500: #e8d2b5;
621
+ --color-bronze-600: #dcba8e;
622
+ --color-bronze-700: #d0a367;
623
+ --color-bronze-800: #bb833a;
624
+ --color-bronze-900: #845d29;
625
+
626
+ --color-silver-50: #fcfcfd;
627
+ --color-silver-100: #f6f7f8;
628
+ --color-silver-200: #edf0f2;
629
+ --color-silver-300: #e2e5e9;
630
+ --color-silver-400: #d6dbe0;
631
+ --color-silver-500: #c8ced6;
632
+ --color-silver-600: #bcc4cd;
633
+ --color-silver-700: #a2adb9;
634
+ --color-silver-800: #8190a1;
635
+ --color-silver-900: #5c6a7b;
636
+
637
+ --color-gold-50: #fefdfb;
638
+ --color-gold-100: #fdfcf6;
639
+ --color-gold-200: #f9f5e1;
640
+ --color-gold-300: #f6efd0;
641
+ --color-gold-400: #f2e8bb;
642
+ --color-gold-500: #eee2aa;
643
+ --color-gold-600: #eada94;
644
+ --color-gold-700: #e5d27b;
645
+ --color-gold-800: #cdae28;
646
+ --color-gold-900: #917c1d;
647
+
648
+ --color-platinum-50: #fcfcfd;
649
+ --color-platinum-100: #f7f7f8;
650
+ --color-platinum-200: #ececee;
651
+ --color-platinum-300: #e2e1e5;
652
+ --color-platinum-400: #d2d1d6;
653
+ --color-platinum-500: #c6c5cc;
654
+ --color-platinum-600: #b4b3bc;
655
+ --color-platinum-700: #9f9da9;
656
+ --color-platinum-800: #848291;
657
+ --color-platinum-900: #5d5b67;
658
+
659
+ --color-beige-50: #fdfcfc;
660
+ --color-beige-100: #fbfaf9;
661
+ --color-beige-200: #efeae6;
662
+ --color-beige-300: #e2d7d0;
663
+ --color-beige-400: #d2c2b6;
664
+ --color-beige-500: #c1aa9a;
665
+ --color-beige-600: #b59a87;
666
+ --color-beige-700: #a5856e;
667
+ --color-beige-800: #8b6c56;
668
+ --color-beige-900: #685140;
669
+
670
+ --color-mind: #0a5161;
671
+ --color-community: #0f748a;
672
+ --color-movement: #149ebd;
673
+ --color-water: #39c9ea;
674
+ --color-air: #87dff2;
675
+
676
+ --color-btn-hover: #00000014;
677
+
678
+ --color-light: #8aefdb;
679
+ --color-thermalcomfort: #3eddbf;
680
+ --color-nourishment: #17aa8d;
681
+ --color-sound: #0c705c;
682
+ --color-materials: #0a4f41;
683
+
684
+ --color-healthsafety: #72abd9;
685
+ --color-performance: #0f748a;
686
+ --color-equity: #17aa8d;
687
+ --color-coworking: #9a608c;
688
+
689
+ --gradient-0: 99deg, #41d5f6 3.39%, #3eecd1 57.86%, #66fcd9 112.32%;
690
+ --gradient-1: 58deg, #8aefdb 2.8%, #d4bace 41.67%, #cbe0f1 80.55%;
691
+ --gradient-performance:
692
+ 180deg, #1dd7b2 0%, #18bde2 50%, #bf78ae 75%, #e67357 100%;
693
+
694
+ --blur-xs: 2px;
695
+ --blur-sm: 4px;
696
+ --blur-md: 8px;
697
+ --blur-lg: 12px;
698
+ --blur-xl: 20px;
699
+
700
+ --shadow-xs: 0 1px 2px 0 rgba(16, 24, 40, 0.05);
701
+ --shadow-sm:
702
+ 0 1px 3px 0 rgba(16, 24, 40, 0.1), 0 1px 2px -1px rgba(16, 24, 40, 0.1);
703
+ --shadow-md:
704
+ 0 4px 6px -1px rgba(16, 24, 40, 0.1), 0 2px 4px -2px rgba(16, 24, 40, 0.1);
705
+ --shadow-lg:
706
+ 0 10px 15px -3px rgba(16, 24, 40, 0.1), 0 4px 6px -4px rgba(16, 24, 40, 0.1);
707
+ --shadow-xl:
708
+ 0 20px 25px -5px rgba(16, 24, 40, 0.1),
709
+ 0 8px 10px -6px rgba(16, 24, 40, 0.1);
710
+ --shadow-2xl: 0 25px 50px -12px rgba(16, 24, 40, 0.25);
711
+
712
+ --font-sans:
713
+ "Inter", ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji",
714
+ "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
715
+ --font-dm-sans:
716
+ "DM Sans", ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji",
717
+ "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
718
+ --font-mazzard:
719
+ "Mazzard Soft M", ui-serif, Georgia, Cambria, "Times New Roman", Times,
720
+ serif;
721
+ --font-ftmade:
722
+ "FtMade", ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
723
+
385
724
  --animate-accordion-down: accordion-down 0.2s ease-out;
386
725
  --animate-accordion-up: accordion-up 0.2s ease-out;
387
726
 
@@ -458,64 +797,6 @@ layer(base);
458
797
 
459
798
  --radius: 0.625rem;
460
799
 
461
- /* Figma Design System Colors */
462
- /* Cyan colors */
463
- --cyan-800: 188 93% 31%;
464
- --cyan-700: 191 80% 36%;
465
- --cyan-600: 191 75% 42%;
466
- --cyan-500: 194 80% 50%;
467
- --cyan-400: 194 90% 65%;
468
- --cyan-300: 194 88% 58%;
469
- --cyan-200: 194 95% 80%;
470
- --cyan-100: 194 100% 95%;
471
- --cyan-50: 194 100% 98%;
472
-
473
- /* Cyan gradient colors (for primary-gradient button) */
474
- --cyan-gradient-from: 191 85% 68%;
475
- --cyan-gradient-via: 174 75% 73%;
476
- --cyan-gradient-to: 166 65% 82%;
477
- --cyan-dark: 188 80% 26%;
478
-
479
- /* Blue colors */
480
- --blue-600: 208 60% 43%;
481
- --blue-500: 208 70% 50%;
482
- --blue-400: 208 75% 58%;
483
- --blue-300: 208 80% 68%;
484
- --blue-200: 209 56% 84%;
485
- --blue-100: 209 70% 92%;
486
- --blue-50: 210 100% 98%;
487
-
488
- /* Gray colors */
489
- --gray-900: 225 15% 15%;
490
- --gray-800: 225 12% 20%;
491
- --gray-700: 225 10% 25%;
492
- --gray-600: 225 6% 33%;
493
- --gray-500: 222 6% 46%;
494
- --gray-400: 225 8% 55%;
495
- --gray-300: 225 12% 70%;
496
- --gray-200: 225 18% 88%;
497
- --gray-100: 210 20% 94%;
498
- --gray-50: 210 25% 97%;
499
-
500
- /* Slate colors */
501
- --slate-900: 222 47% 11%;
502
- --slate-800: 213 27% 17%;
503
- --slate-700: 215 25% 27%;
504
- --slate-600: 215 20% 35%;
505
- --slate-500: 215 16% 47%;
506
- --slate-400: 215 14% 59%;
507
- --slate-300: 215 12% 71%;
508
- --slate-200: 214 13% 84%;
509
- --slate-100: 210 40% 96%;
510
- --slate-50: 210 40% 98%;
511
-
512
- /* Violet colors */
513
- --violet-700: 258 90% 66%;
514
- --violet-600: 258 85% 70%;
515
- --violet-500: 258 80% 75%;
516
- --violet-200: 258 80% 90%;
517
- --violet-100: 258 95% 95%;
518
-
519
800
  /* Utility colors */
520
801
  --white: 0 0% 100%;
521
802
  --black: 0 0% 0%;
@@ -578,4 +859,300 @@ layer(base);
578
859
  "ss03" on,
579
860
  "cv01" on;
580
861
  }
862
+
863
+ .container-lg {
864
+ max-width: calc(1440px + 64px);
865
+ width: 100%;
866
+ padding-inline: 32px;
867
+ margin-inline: auto;
868
+ }
869
+
870
+ .container-sm {
871
+ max-width: calc(1072px + 64px);
872
+ width: 100%;
873
+ padding-inline: 32px;
874
+ margin-inline: auto;
875
+ }
876
+ }
877
+
878
+ /* Typography Utilities */
879
+
880
+ /* Heading Utilities */
881
+ @utility heading-large {
882
+ font-family: var(--font-ftmade);
883
+ font-size: 38px;
884
+ line-height: 40px;
885
+ letter-spacing: -0.38px;
886
+
887
+ &::before {
888
+ content: "";
889
+ margin-bottom: -0.2703em;
890
+ display: table;
891
+ }
892
+ &::after {
893
+ content: "";
894
+ margin-top: -0.1023em;
895
+ display: table;
896
+ }
897
+ }
898
+
899
+ @utility heading-medium {
900
+ font-family: var(--font-ftmade);
901
+ font-size: 34px;
902
+ line-height: 36px;
903
+ letter-spacing: -0.34px;
904
+
905
+ &::before {
906
+ content: "";
907
+ margin-bottom: -0.2734em;
908
+ display: table;
909
+ }
910
+ &::after {
911
+ content: "";
912
+ margin-top: -0.1054em;
913
+ display: table;
914
+ }
915
+ }
916
+
917
+ @utility heading-small {
918
+ font-family: var(--font-ftmade);
919
+ font-size: 30px;
920
+ line-height: 32px;
921
+ letter-spacing: -0.3px;
922
+
923
+ &::before {
924
+ content: "";
925
+ margin-bottom: -0.2773em;
926
+ display: table;
927
+ }
928
+ &::after {
929
+ content: "";
930
+ margin-top: -0.1093em;
931
+ display: table;
932
+ }
933
+ }
934
+
935
+ @utility heading-xsmall {
936
+ font-family: var(--font-ftmade);
937
+ font-size: 22px;
938
+ line-height: 24px;
939
+ letter-spacing: -0.22px;
940
+
941
+ &::before {
942
+ content: "";
943
+ margin-bottom: -0.2895em;
944
+ display: table;
945
+ }
946
+ &::after {
947
+ content: "";
948
+ margin-top: -0.1215em;
949
+ display: table;
950
+ }
951
+ }
952
+
953
+ @utility heading-xxsmall {
954
+ font-family: var(--font-ftmade);
955
+ font-size: 20px;
956
+ line-height: 22px;
957
+ letter-spacing: -0.22px;
958
+
959
+ &::before {
960
+ content: "";
961
+ margin-bottom: -0.2895em;
962
+ display: table;
963
+ }
964
+ &::after {
965
+ content: "";
966
+ margin-top: -0.1215em;
967
+ display: table;
968
+ }
969
+ }
970
+
971
+ /* Body Utilities */
972
+ @utility body-large {
973
+ font-size: 18px;
974
+ font-style: normal;
975
+ font-weight: 400;
976
+ line-height: 25.2px;
977
+
978
+ &::before {
979
+ content: "";
980
+ margin-bottom: -0.2694em;
981
+ display: table;
982
+ }
983
+ &::after {
984
+ content: "";
985
+ margin-top: -0.4444em;
986
+ display: table;
987
+ }
988
+ }
989
+
990
+ @utility body-base {
991
+ font-size: 16px;
992
+ font-style: normal;
993
+ font-weight: 400;
994
+ line-height: 22.4px;
995
+
996
+ &::before {
997
+ content: "";
998
+ margin-bottom: -0.2625em;
999
+ display: table;
1000
+ }
1001
+ &::after {
1002
+ content: "";
1003
+ margin-top: -0.4375em;
1004
+ display: table;
1005
+ }
1006
+ }
1007
+ @utility body-small {
1008
+ font-size: 14px;
1009
+ font-style: normal;
1010
+ font-weight: 400;
1011
+ line-height: 19.6px;
1012
+
1013
+ &::before {
1014
+ content: "";
1015
+ margin-bottom: -0.2536em;
1016
+ display: table;
1017
+ }
1018
+ &::after {
1019
+ content: "";
1020
+ margin-top: -0.4286em;
1021
+ display: table;
1022
+ }
1023
+ }
1024
+
1025
+ /* Overline Utilities */
1026
+ @utility overline-large {
1027
+ font-size: 14px;
1028
+ font-style: normal;
1029
+ font-weight: 600;
1030
+ line-height: 14px; /* 100% */
1031
+ letter-spacing: 0.5px;
1032
+ text-transform: uppercase;
1033
+
1034
+ &::before {
1035
+ content: "";
1036
+ margin-bottom: -0.075em;
1037
+ display: table;
1038
+ }
1039
+ &::after {
1040
+ content: "";
1041
+ margin-top: -0.25em;
1042
+ display: table;
1043
+ }
1044
+ }
1045
+ @utility overline-medium {
1046
+ font-size: 12px;
1047
+ font-style: normal;
1048
+ font-weight: 600;
1049
+ line-height: 12px; /* 100% */
1050
+ letter-spacing: 0.5px;
1051
+ text-transform: uppercase;
1052
+
1053
+ &::before {
1054
+ content: "";
1055
+ margin-bottom: -0.075em;
1056
+ display: table;
1057
+ }
1058
+ &::after {
1059
+ content: "";
1060
+ margin-top: -0.25em;
1061
+ display: table;
1062
+ }
1063
+ }
1064
+ @utility overline-small {
1065
+ font-size: 10px;
1066
+ font-style: normal;
1067
+ font-weight: 600;
1068
+ line-height: 10px; /* 100% */
1069
+ letter-spacing: 0.5px;
1070
+ text-transform: uppercase;
1071
+
1072
+ &::before {
1073
+ content: "";
1074
+ margin-bottom: -0.075em;
1075
+ display: table;
1076
+ }
1077
+ &::after {
1078
+ content: "";
1079
+ margin-top: -0.25em;
1080
+ display: table;
1081
+ }
1082
+ }
1083
+
1084
+ /* Number Utilities */
1085
+ @utility number-large {
1086
+ font-size: 18px;
1087
+ font-style: normal;
1088
+ font-weight: 400;
1089
+ line-height: 25.2px;
1090
+ font-variant-numeric: lining-nums tabular-nums;
1091
+
1092
+ &::before {
1093
+ content: "";
1094
+ margin-bottom: -0.2694em;
1095
+ display: table;
1096
+ }
1097
+ &::after {
1098
+ content: "";
1099
+ margin-top: -0.4444em;
1100
+ display: table;
1101
+ }
1102
+ }
1103
+
1104
+ @utility number-base {
1105
+ font-size: 16px;
1106
+ font-style: normal;
1107
+ font-weight: 400;
1108
+ line-height: 22.4px;
1109
+ font-variant-numeric: lining-nums tabular-nums;
1110
+
1111
+ &::before {
1112
+ content: "";
1113
+ margin-bottom: -0.2625em;
1114
+ display: table;
1115
+ }
1116
+ &::after {
1117
+ content: "";
1118
+ margin-top: -0.4375em;
1119
+ display: table;
1120
+ }
1121
+ }
1122
+
1123
+ @utility number-small {
1124
+ font-size: 14px;
1125
+ font-style: normal;
1126
+ font-weight: 400;
1127
+ line-height: 19.6px;
1128
+ font-variant-numeric: lining-nums tabular-nums;
1129
+
1130
+ &::before {
1131
+ content: "";
1132
+ margin-bottom: -0.2536em;
1133
+ display: table;
1134
+ }
1135
+ &::after {
1136
+ content: "";
1137
+ margin-top: -0.4286em;
1138
+ display: table;
1139
+ }
1140
+ }
1141
+ @utility number-xsmall {
1142
+ font-size: 14px;
1143
+ font-style: normal;
1144
+ font-weight: 400;
1145
+ line-height: 16.8px;
1146
+ font-variant-numeric: lining-nums tabular-nums;
1147
+
1148
+ &::before {
1149
+ content: "";
1150
+ margin-bottom: -0.2417em;
1151
+ display: table;
1152
+ }
1153
+ &::after {
1154
+ content: "";
1155
+ margin-top: -0.4167em;
1156
+ display: table;
1157
+ }
581
1158
  }