1
+ @tailwind base;
2
+ @tailwind components;
3
+ @tailwind utilities;
4
+
5
+ body {
6
+ font-family : Arial, Helvetica, sans-serif;
7
+ }
8
+
9
+ @layer utilities {
10
+ .text-balance {
11
+ text-wrap : balance;
12
+ }
13
+ }
14
+
15
+ @layer base {
16
+ : root {
17
+ --background : 0 0% 100% ;
18
+ --foreground : 20 14.3% 4.1% ;
19
+ --card : 0 0% 100% ;
20
+ --card-foreground : 20 14.3% 4.1% ;
21
+ --popover : 0 0% 100% ;
22
+ --popover-foreground : 20 14.3% 4.1% ;
23
+ --primary : 24 9.8% 10% ;
24
+ --primary-foreground : 60 9.1% 97.8% ;
25
+ --secondary : 60 4.8% 95.9% ;
26
+ --secondary-foreground : 24 9.8% 10% ;
27
+ --muted : 60 4.8% 95.9% ;
28
+ --muted-foreground : 25 5.3% 44.7% ;
29
+ --accent : 60 4.8% 95.9% ;
30
+ --accent-foreground : 24 9.8% 10% ;
31
+ --destructive : 0 84.2% 60.2% ;
32
+ --destructive-foreground : 60 9.1% 97.8% ;
33
+ --border : 20 5.9% 90% ;
34
+ --input : 20 5.9% 90% ;
35
+ --ring : 20 14.3% 4.1% ;
36
+ --chart-1 : 12 76% 61% ;
37
+ --chart-2 : 173 58% 39% ;
38
+ --chart-3 : 197 37% 24% ;
39
+ --chart-4 : 43 74% 66% ;
40
+ --chart-5 : 27 87% 67% ;
41
+ --radius : 0.5rem ;
42
+ }
43
+ .dark {
44
+ --background : 20 14.3% 4.1% ;
45
+ --foreground : 60 9.1% 97.8% ;
46
+ --card : 20 14.3% 4.1% ;
47
+ --card-foreground : 60 9.1% 97.8% ;
48
+ --popover : 20 14.3% 4.1% ;
49
+ --popover-foreground : 60 9.1% 97.8% ;
50
+ --primary : 60 9.1% 97.8% ;
51
+ --primary-foreground : 24 9.8% 10% ;
52
+ --secondary : 12 6.5% 15.1% ;
53
+ --secondary-foreground : 60 9.1% 97.8% ;
54
+ --muted : 12 6.5% 15.1% ;
55
+ --muted-foreground : 24 5.4% 63.9% ;
56
+ --accent : 12 6.5% 15.1% ;
57
+ --accent-foreground : 60 9.1% 97.8% ;
58
+ --destructive : 0 62.8% 30.6% ;
59
+ --destructive-foreground : 60 9.1% 97.8% ;
60
+ --border : 12 6.5% 15.1% ;
61
+ --input : 12 6.5% 15.1% ;
62
+ --ring : 24 5.7% 82.9% ;
63
+ --chart-1 : 220 70% 50% ;
64
+ --chart-2 : 160 60% 45% ;
65
+ --chart-3 : 30 80% 55% ;
66
+ --chart-4 : 280 65% 60% ;
67
+ --chart-5 : 340 75% 55% ;
68
+ }
69
+ }
70
+
71
+ @layer base {
72
+ * {
73
+ @apply border-border;
74
+ }
75
+ body {
76
+ @apply bg-background text-foreground;
77
+ }
78
+ }
79
+
80
+ .toast {
81
+ background-color : # 1a202c ;
82
+ color : white;
83
+ padding : 12px ;
84
+ border-radius : 8px ;
85
+ display : flex;
86
+ flex-direction : column;
87
+ }
88
+
89
+ .toast .destructive {
90
+ background-color : # e53e3e ;
91
+ }
92
+
93
+ .toast .default {
94
+ background-color : # 2d3748 ;
95
+ }
0 commit comments