1
1
@tailwind base ;
2
2
@tailwind components;
3
3
@tailwind utilities;
4
-
4
+
5
5
@layer base {
6
- :root {
7
- --background : 0 0 % 100 % ;
8
- --foreground : 224 71.4 % 4.1 % ;
9
-
10
- --muted : 220 14.3 % 95.9 % ;
11
- --muted-foreground : 220 8.9 % 46.1 % ;
12
-
13
- --popover : 0 0 % 100 % ;
14
- --popover-foreground : 224 71.4 % 4.1 % ;
15
-
16
- --card : 0 0 % 100 % ;
17
- --card-foreground : 224 71.4 % 4.1 % ;
18
-
19
- --border : 220 13 % 91 % ;
20
- --input : 220 13 % 91 % ;
21
-
22
- --primary : 220.9 39.3 % 11 % ;
23
- --primary-foreground : 210 20 % 98 % ;
24
-
25
- --secondary : 220 14.3 % 95.9 % ;
26
- --secondary-foreground : 220.9 39.3 % 11 % ;
27
-
28
- --accent : 220 14.3 % 95.9 % ;
29
- --accent-foreground : 220.9 39.3 % 11 % ;
30
-
31
- --destructive : 0 84.2 % 60.2 % ;
32
- --destructive-foreground : 210 20 % 98 % ;
33
-
34
- --ring : 224 71.4 % 4.1 % ;
35
-
36
- --radius : 0.5 rem ;
37
- }
38
-
39
- .dark {
40
- --background : 224 71.4 % 4.1 % ;
41
- --foreground : 210 20 % 98 % ;
42
-
43
- --muted : 215 27.9 % 16.9 % ;
44
- --muted-foreground : 217.9 10.6 % 64.9 % ;
45
-
46
- --popover : 224 71.4 % 4.1 % ;
47
- --popover-foreground : 210 20 % 98 % ;
48
-
49
- --card : 224 71.4 % 4.1 % ;
50
- --card-foreground : 210 20 % 98 % ;
51
-
52
- --border : 215 27.9 % 16.9 % ;
53
- --input : 215 27.9 % 16.9 % ;
54
-
55
- --primary : 210 20 % 98 % ;
56
- --primary-foreground : 220.9 39.3 % 11 % ;
57
-
58
- --secondary : 215 27.9 % 16.9 % ;
59
- --secondary-foreground : 210 20 % 98 % ;
60
-
61
- --accent : 215 27.9 % 16.9 % ;
62
- --accent-foreground : 210 20 % 98 % ;
63
-
64
- --destructive : 0 62.8 % 30.6 % ;
65
- --destructive-foreground : 210 20 % 98 % ;
66
-
67
- --ring : 216 12.2 % 83.9 % ;
68
- }
6
+ :root {
7
+ --background : 0 0 % 100 % ;
8
+ --foreground : 224 71.4 % 4.1 % ;
9
+
10
+ --muted : 220 14.3 % 95.9 % ;
11
+ --muted-foreground : 220 8.9 % 46.1 % ;
12
+
13
+ --popover : 0 0 % 100 % ;
14
+ --popover-foreground : 224 71.4 % 4.1 % ;
15
+
16
+ --card : 0 0 % 100 % ;
17
+ --card-foreground : 224 71.4 % 4.1 % ;
18
+
19
+ --border : 220 13 % 91 % ;
20
+ --input : 220 13 % 91 % ;
21
+
22
+ --primary : 220.9 39.3 % 11 % ;
23
+ --primary-foreground : 210 20 % 98 % ;
24
+
25
+ --secondary : 220 14.3 % 95.9 % ;
26
+ --secondary-foreground : 220.9 39.3 % 11 % ;
27
+
28
+ --accent : 220 14.3 % 95.9 % ;
29
+ --accent-foreground : 220.9 39.3 % 11 % ;
30
+
31
+ --destructive : 0 84.2 % 60.2 % ;
32
+ --destructive-foreground : 210 20 % 98 % ;
33
+
34
+ --ring : 224 71.4 % 4.1 % ;
35
+
36
+ --radius : 0.5 rem ;
37
+ }
38
+
39
+ .dark {
40
+ --background : 224 71.4 % 4.1 % ;
41
+ --foreground : 210 20 % 98 % ;
42
+
43
+ --muted : 215 27.9 % 16.9 % ;
44
+ --muted-foreground : 217.9 10.6 % 64.9 % ;
45
+
46
+ --popover : 224 71.4 % 4.1 % ;
47
+ --popover-foreground : 210 20 % 98 % ;
48
+
49
+ --card : 224 71.4 % 4.1 % ;
50
+ --card-foreground : 210 20 % 98 % ;
51
+
52
+ --border : 215 27.9 % 16.9 % ;
53
+ --input : 215 27.9 % 16.9 % ;
54
+
55
+ --primary : 210 20 % 98 % ;
56
+ --primary-foreground : 220.9 39.3 % 11 % ;
57
+
58
+ --secondary : 215 27.9 % 16.9 % ;
59
+ --secondary-foreground : 210 20 % 98 % ;
60
+
61
+ --accent : 215 27.9 % 16.9 % ;
62
+ --accent-foreground : 210 20 % 98 % ;
63
+
64
+ --destructive : 0 62.8 % 30.6 % ;
65
+ --destructive-foreground : 210 20 % 98 % ;
66
+
67
+ --ring : 216 12.2 % 83.9 % ;
68
+ }
69
69
}
70
-
70
+
71
71
@layer base {
72
- * {
73
- @apply border-border;
74
- }
75
- body {
76
- @apply bg-background text-foreground;
77
- }
78
- }
72
+ * {
73
+ @apply border-border;
74
+ }
75
+ body {
76
+ @apply bg-background text-foreground;
77
+ }
78
+ }
0 commit comments