|
1 | 1 | @tailwind base; |
2 | | - |
3 | | -@custom-variant dark (&:is(.dark *)); |
4 | 2 | @tailwind components; |
5 | 3 | @tailwind utilities; |
6 | 4 |
|
7 | | -@layer base { |
8 | | - :root { |
9 | | - --background: 0 0% 100%; |
10 | | - --foreground: 222.2 84% 4.9%; |
11 | | - --card: 0 0% 100%; |
12 | | - --card-foreground: 222.2 84% 4.9%; |
13 | | - --popover: 0 0% 100%; |
14 | | - --popover-foreground: 222.2 84% 4.9%; |
15 | | - --primary: 222.2 47.4% 11.2%; |
16 | | - --primary-foreground: 210 40% 98%; |
17 | | - --secondary: 210 40% 96%; |
18 | | - --secondary-foreground: 222.2 47.4% 11.2%; |
19 | | - --muted: 210 40% 96%; |
20 | | - --muted-foreground: 215.4 16.3% 46.9%; |
21 | | - --accent: 210 40% 96%; |
22 | | - --accent-foreground: 222.2 47.4% 11.2%; |
23 | | - --destructive: 0 84.2% 60.2%; |
24 | | - --destructive-foreground: 210 40% 98%; |
25 | | - --border: 214.3 31.8% 91.4%; |
26 | | - --input: 214.3 31.8% 91.4%; |
27 | | - --ring: 222.2 84% 4.9%; |
28 | | - --radius: 0.5rem; |
29 | | - --chart-1: 12 76% 61%; |
30 | | - --chart-2: 173 58% 39%; |
31 | | - --chart-3: 197 37% 24%; |
32 | | - --chart-4: 43 74% 66%; |
33 | | - --chart-5: 27 87% 67%; |
34 | | - } |
35 | | - |
36 | | - .dark { |
37 | | - --background: 222.2 84% 4.9%; |
38 | | - --foreground: 210 40% 98%; |
39 | | - --card: 222.2 84% 4.9%; |
40 | | - --card-foreground: 210 40% 98%; |
41 | | - --popover: 222.2 84% 4.9%; |
42 | | - --popover-foreground: 210 40% 98%; |
43 | | - --primary: 210 40% 98%; |
44 | | - --primary-foreground: 222.2 47.4% 11.2%; |
45 | | - --secondary: 217.2 32.6% 17.5%; |
46 | | - --secondary-foreground: 210 40% 98%; |
47 | | - --muted: 217.2 32.6% 17.5%; |
48 | | - --muted-foreground: 215 20.2% 65.1%; |
49 | | - --accent: 217.2 32.6% 17.5%; |
50 | | - --accent-foreground: 210 40% 98%; |
51 | | - --destructive: 0 62.8% 30.6%; |
52 | | - --destructive-foreground: 210 40% 98%; |
53 | | - --border: 217.2 32.6% 17.5%; |
54 | | - --input: 217.2 32.6% 17.5%; |
55 | | - --ring: 212.7 26.8% 83.9%; |
56 | | - --chart-1: 220 70% 50%; |
57 | | - --chart-2: 160 60% 45%; |
58 | | - --chart-3: 30 80% 55%; |
59 | | - --chart-4: 280 65% 60%; |
60 | | - --chart-5: 340 75% 55%; |
61 | | - } |
62 | | -} |
63 | | - |
64 | 5 | @layer base { |
65 | 6 | * { |
66 | 7 | @apply border-border; |
67 | 8 | } |
68 | 9 | body { |
69 | 10 | @apply bg-background text-foreground; |
| 11 | + font-feature-settings: "rlig" 1, "calt" 1; |
70 | 12 | } |
71 | 13 | } |
72 | 14 |
|
73 | | -@theme inline { |
74 | | - --radius-sm: calc(var(--radius) - 4px); |
75 | | - --radius-md: calc(var(--radius) - 2px); |
76 | | - --radius-lg: var(--radius); |
77 | | - --radius-xl: calc(var(--radius) + 4px); |
78 | | - --color-background: var(--background); |
79 | | - --color-foreground: var(--foreground); |
80 | | - --color-card: var(--card); |
81 | | - --color-card-foreground: var(--card-foreground); |
82 | | - --color-popover: var(--popover); |
83 | | - --color-popover-foreground: var(--popover-foreground); |
84 | | - --color-primary: var(--primary); |
85 | | - --color-primary-foreground: var(--primary-foreground); |
86 | | - --color-secondary: var(--secondary); |
87 | | - --color-secondary-foreground: var(--secondary-foreground); |
88 | | - --color-muted: var(--muted); |
89 | | - --color-muted-foreground: var(--muted-foreground); |
90 | | - --color-accent: var(--accent); |
91 | | - --color-accent-foreground: var(--accent-foreground); |
92 | | - --color-destructive: var(--destructive); |
93 | | - --color-border: var(--border); |
94 | | - --color-input: var(--input); |
95 | | - --color-ring: var(--ring); |
96 | | - --color-chart-1: var(--chart-1); |
97 | | - --color-chart-2: var(--chart-2); |
98 | | - --color-chart-3: var(--chart-3); |
99 | | - --color-chart-4: var(--chart-4); |
100 | | - --color-chart-5: var(--chart-5); |
101 | | - --color-sidebar: var(--sidebar); |
102 | | - --color-sidebar-foreground: var(--sidebar-foreground); |
103 | | - --color-sidebar-primary: var(--sidebar-primary); |
104 | | - --color-sidebar-primary-foreground: var(--sidebar-primary-foreground); |
105 | | - --color-sidebar-accent: var(--sidebar-accent); |
106 | | - --color-sidebar-accent-foreground: var(--sidebar-accent-foreground); |
107 | | - --color-sidebar-border: var(--sidebar-border); |
108 | | - --color-sidebar-ring: var(--sidebar-ring); |
109 | | -} |
| 15 | + |
110 | 16 |
|
111 | 17 | :root { |
112 | 18 | --radius: 0.625rem; |
|
0 commit comments