blob: ec30ac4850e43df3ef5e60be1914cd2811ead005 [file] [log] [blame]
gio5f2f1002025-03-20 18:38:48 +04001@tailwind base;
2@tailwind components;
3@tailwind utilities;
4
5@layer base {
giod0026612025-05-08 13:00:36 +00006 :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 --sidebar-background: 0 0% 98%;
33 --sidebar-foreground: 240 5.3% 26.1%;
34 --sidebar-primary: 240 5.9% 10%;
35 --sidebar-primary-foreground: 0 0% 98%;
36 --sidebar-accent: 240 4.8% 95.9%;
37 --sidebar-accent-foreground: 240 5.9% 10%;
38 --sidebar-border: 220 13% 91%;
39 --sidebar-ring: 217.2 91.2% 59.8%;
40 --sidebar-background: 0 0% 98%;
41 --sidebar-foreground: 240 5.3% 26.1%;
42 --sidebar-primary: 240 5.9% 10%;
43 --sidebar-primary-foreground: 0 0% 98%;
44 --sidebar-accent: 240 4.8% 95.9%;
45 --sidebar-accent-foreground: 240 5.9% 10%;
46 --sidebar-border: 220 13% 91%;
47 --sidebar-ring: 217.2 91.2% 59.8%;
48 }
gio5f2f1002025-03-20 18:38:48 +040049
giod0026612025-05-08 13:00:36 +000050 .dark {
51 --background: 0 0% 3.9%;
52 --foreground: 0 0% 98%;
53 --card: 0 0% 3.9%;
54 --card-foreground: 0 0% 98%;
55 --popover: 0 0% 3.9%;
56 --popover-foreground: 0 0% 98%;
57 --primary: 0 0% 98%;
58 --primary-foreground: 0 0% 9%;
59 --secondary: 0 0% 14.9%;
60 --secondary-foreground: 0 0% 98%;
61 --muted: 0 0% 14.9%;
62 --muted-foreground: 0 0% 63.9%;
63 --accent: 0 0% 14.9%;
64 --accent-foreground: 0 0% 98%;
65 --destructive: 0 62.8% 30.6%;
66 --destructive-foreground: 0 0% 98%;
67 --border: 0 0% 14.9%;
68 --input: 0 0% 14.9%;
69 --ring: 0 0% 83.1%;
70 --chart-1: 220 70% 50%;
71 --chart-2: 160 60% 45%;
72 --chart-3: 30 80% 55%;
73 --chart-4: 280 65% 60%;
74 --chart-5: 340 75% 55%;
75 --sidebar-background: 240 5.9% 10%;
76 --sidebar-foreground: 240 4.8% 95.9%;
77 --sidebar-primary: 224.3 76.3% 48%;
78 --sidebar-primary-foreground: 0 0% 100%;
79 --sidebar-accent: 240 3.7% 15.9%;
80 --sidebar-accent-foreground: 240 4.8% 95.9%;
81 --sidebar-border: 240 3.7% 15.9%;
82 --sidebar-ring: 217.2 91.2% 59.8%;
83 --sidebar-background: 240 5.9% 10%;
84 --sidebar-foreground: 240 4.8% 95.9%;
85 --sidebar-primary: 224.3 76.3% 48%;
86 --sidebar-primary-foreground: 0 0% 100%;
87 --sidebar-accent: 240 3.7% 15.9%;
88 --sidebar-accent-foreground: 240 4.8% 95.9%;
89 --sidebar-border: 240 3.7% 15.9%;
90 --sidebar-ring: 217.2 91.2% 59.8%;
91 }
gio5f2f1002025-03-20 18:38:48 +040092}
93
94@layer base {
giod0026612025-05-08 13:00:36 +000095 * {
96 @apply border-border;
97 }
98 body {
99 @apply bg-background text-foreground;
100 }
gio5f2f1002025-03-20 18:38:48 +0400101}