blob: 881907b7c6bd58ad18971ff4026273fe9d01cd8f [file] [log] [blame]
gio5f2f1002025-03-20 18:38:48 +04001@tailwind base;
2@tailwind components;
3@tailwind utilities;
4
5@layer base {
6 :root {
7 --background: 0 0% 100%;
8 --foreground: 0 0% 3.9%;
9 --card: 0 0% 100%;
10 --card-foreground: 0 0% 3.9%;
11 --popover: 0 0% 100%;
12 --popover-foreground: 0 0% 3.9%;
13 --primary: 0 0% 9%;
14 --primary-foreground: 0 0% 98%;
15 --secondary: 0 0% 96.1%;
16 --secondary-foreground: 0 0% 9%;
17 --muted: 0 0% 96.1%;
18 --muted-foreground: 0 0% 45.1%;
19 --accent: 0 0% 96.1%;
20 --accent-foreground: 0 0% 9%;
21 --destructive: 0 84.2% 60.2%;
22 --destructive-foreground: 0 0% 98%;
23 --border: 0 0% 89.8%;
24 --input: 0 0% 89.8%;
25 --ring: 0 0% 3.9%;
26 --chart-1: 12 76% 61%;
27 --chart-2: 173 58% 39%;
28 --chart-3: 197 37% 24%;
29 --chart-4: 43 74% 66%;
30 --chart-5: 27 87% 67%;
31 --radius: 0.5rem
32 ;
33 --sidebar-background: 0 0% 98%;
34 --sidebar-foreground: 240 5.3% 26.1%;
35 --sidebar-primary: 240 5.9% 10%;
36 --sidebar-primary-foreground: 0 0% 98%;
37 --sidebar-accent: 240 4.8% 95.9%;
38 --sidebar-accent-foreground: 240 5.9% 10%;
39 --sidebar-border: 220 13% 91%;
40 --sidebar-ring: 217.2 91.2% 59.8%;
41 --sidebar-background: 0 0% 98%;
42 --sidebar-foreground: 240 5.3% 26.1%;
43 --sidebar-primary: 240 5.9% 10%;
44 --sidebar-primary-foreground: 0 0% 98%;
45 --sidebar-accent: 240 4.8% 95.9%;
46 --sidebar-accent-foreground: 240 5.9% 10%;
47 --sidebar-border: 220 13% 91%;
48 --sidebar-ring: 217.2 91.2% 59.8%;
49 }
50
51 .dark {
52 --background: 0 0% 3.9%;
53 --foreground: 0 0% 98%;
54 --card: 0 0% 3.9%;
55 --card-foreground: 0 0% 98%;
56 --popover: 0 0% 3.9%;
57 --popover-foreground: 0 0% 98%;
58 --primary: 0 0% 98%;
59 --primary-foreground: 0 0% 9%;
60 --secondary: 0 0% 14.9%;
61 --secondary-foreground: 0 0% 98%;
62 --muted: 0 0% 14.9%;
63 --muted-foreground: 0 0% 63.9%;
64 --accent: 0 0% 14.9%;
65 --accent-foreground: 0 0% 98%;
66 --destructive: 0 62.8% 30.6%;
67 --destructive-foreground: 0 0% 98%;
68 --border: 0 0% 14.9%;
69 --input: 0 0% 14.9%;
70 --ring: 0 0% 83.1%;
71 --chart-1: 220 70% 50%;
72 --chart-2: 160 60% 45%;
73 --chart-3: 30 80% 55%;
74 --chart-4: 280 65% 60%;
75 --chart-5: 340 75% 55%
76 ;
77 --sidebar-background: 240 5.9% 10%;
78 --sidebar-foreground: 240 4.8% 95.9%;
79 --sidebar-primary: 224.3 76.3% 48%;
80 --sidebar-primary-foreground: 0 0% 100%;
81 --sidebar-accent: 240 3.7% 15.9%;
82 --sidebar-accent-foreground: 240 4.8% 95.9%;
83 --sidebar-border: 240 3.7% 15.9%;
84 --sidebar-ring: 217.2 91.2% 59.8%;
85 --sidebar-background: 240 5.9% 10%;
86 --sidebar-foreground: 240 4.8% 95.9%;
87 --sidebar-primary: 224.3 76.3% 48%;
88 --sidebar-primary-foreground: 0 0% 100%;
89 --sidebar-accent: 240 3.7% 15.9%;
90 --sidebar-accent-foreground: 240 4.8% 95.9%;
91 --sidebar-border: 240 3.7% 15.9%;
92 --sidebar-ring: 217.2 91.2% 59.8%;
93 }
94}
95
96@layer base {
97 * {
98 @apply border-border;
99 }
100 body {
101 @apply bg-background text-foreground;
102 }
103}
104