1:root {
2 /* Font scales */
3 --fs-3xs: clamp(0.41rem, -0.06vi + 0.42rem, 0.38rem);
4 --fs-2xs: clamp(0.51rem, -0.02vi + 0.52rem, 0.5rem);
5 --fs-xs: clamp(0.64rem, 0.05vi + 0.63rem, 0.67rem);
6 --fs-sm: clamp(0.8rem, 0.17vi + 0.76rem, 0.89rem);
7 --fs-base: clamp(1rem, 0.34vi + 0.91rem, 1.19rem);
8 --fs-md: clamp(1.25rem, 0.61vi + 1.1rem, 1.58rem);
9 --fs-lg: clamp(1.56rem, 1vi + 1.31rem, 2.11rem);
10 --fs-xl: clamp(1.95rem, 1.56vi + 1.56rem, 2.81rem);
11 --fs-2xl: clamp(2.44rem, 2.38vi + 1.85rem, 3.75rem);
12 --fs-3xl: clamp(3.05rem, 3.54vi + 2.17rem, 5rem);
13
14 /* Space scales */
15 --space-3xs: clamp(0.25rem, 0.2216rem + 0.1136vw, 0.3125rem);
16 --space-2xs: clamp(0.5rem, 0.4432rem + 0.2273vw, 0.625rem);
17 --space-xs: clamp(0.75rem, 0.6932rem + 0.2273vw, 0.875rem);
18 --space-sm: clamp(1rem, 0.9148rem + 0.3409vw, 1.1875rem);
19 --space-md: clamp(1.5rem, 1.358rem + 0.5682vw, 1.8125rem);
20 --space-lg: clamp(2rem, 1.8295rem + 0.6818vw, 2.375rem);
21 --space-xl: clamp(3rem, 2.7443rem + 1.0227vw, 3.5625rem);
22 --space-2xl: clamp(4rem, 3.6591rem + 1.3636vw, 4.75rem);
23 --space-3xl: clamp(6rem, 5.4886rem + 2.0455vw, 7.125rem);
24
25 /* Border-radius */
26 --radius-xs: 0.125rem;
27 --radius-sm: 0.25rem;
28 --radius-md: 0.375rem;
29 --radius-lg: 0.5rem;
30 --radius-xl: 0.75rem;
31 --radius-2xl: 1rem;
32 --radius-3xl: 1.5rem;
33 --radius-4xl: 2rem;
34
35 /* Containers */
36 --container-3xs: 16rem;
37 --container-2xs: 18rem;
38 --container-xs: 20rem;
39 --container-sm: 24rem;
40 --container-md: 28rem;
41 --container-lg: 32rem;
42 --container-xl: 36rem;
43 --container-2xl: 42rem;
44 --container-3xl: 48rem;
45 --container-4xl: 56rem;
46 --container-5xl: 64rem;
47 --container-6xl: 72rem;
48 --container-7xl: 80rem;
49
50 /* Letter-spacing */
51 --tracking-tighter: -0.05em;
52 --tracking-tight: -0.025em;
53 --tracking-normal: 0em;
54 --tracking-wide: 0.025em;
55 --tracking-wider: 0.05em;
56 --tracking-widest: 0.1em;
57
58 /* Line-height */
59 --leading-tight: 1.25;
60 --leading-snug: 1.375;
61 --leading-normal: 1.5;
62 --leading-relaxed: 1.625;
63 --leading-loose: 2;
64
65 /* Shadows */
66 --box-shadow-2xs: 0 1px rgb(0 0 0 / 0.05);
67 --box-shadow-xs: 0 1px 2px 0 rgb(0 0 0 / 0.05);
68 --box-shadow-sm: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
69 --box-shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
70 --box-shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
71 --box-shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
72 --box-shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
73
74 --text-shadow-2xs: 0px 1px 0px rgb(0 0 0 / 0.15);
75 --text-shadow-xs: 0px 1px 1px rgb(0 0 0 / 0.2);
76 --text-shadow-sm:
77 0px 1px 0px rgb(0 0 0 / 0.075), 0px 1px 1px rgb(0 0 0 / 0.075), 0px 2px 2px rgb(0 0 0 / 0.075);
78 --text-shadow-md:
79 0px 1px 1px rgb(0 0 0 / 0.1), 0px 1px 2px rgb(0 0 0 / 0.1), 0px 2px 4px rgb(0 0 0 / 0.1);
80 --text-shadow-lg:
81 0px 1px 2px rgb(0 0 0 / 0.1), 0px 3px 2px rgb(0 0 0 / 0.1), 0px 4px 8px rgb(0 0 0 / 0.1);
82}