forked from BeOnAuto/auto-engineer
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
101 lines (77 loc) · 2.01 KB
/
index.css
File metadata and controls
101 lines (77 loc) · 2.01 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
@tailwind base;
@tailwind components;
@tailwind utilities;
@layer base {
:root {
--radius: 0.5rem;
--background: 0 0% 100%;
--foreground: 0 0% 7%;
--card: 0 0% 100%;
--card-foreground: 0 0% 7%;
--popover: 0 0% 100%;
--popover-foreground: 0 0% 7%;
--primary: 0 100% 40%;
--primary-foreground: 0 0% 100%;
--secondary: 0 0% 96%;
--secondary-foreground: 0 0% 7%;
--muted: 0 0% 94%;
--muted-foreground: 0 0% 40%;
--accent: 0 0% 97%;
--accent-foreground: 0 0% 7%;
--destructive: 351 100% 45%;
--destructive-foreground: 0 0% 100%;
--border: 0 0% 90%;
--input: 0 0% 90%;
--ring: 0 0% 84%;
--chart-1: 0 100% 40%;
--chart-2: 0 0% 60%;
--chart-3: 0 0% 40%;
--chart-4: 351 100% 45%;
--chart-5: 48 100% 50%;
--sidebar: 0 0% 100%;
--sidebar-foreground: 0 0% 7%;
--sidebar-primary: 0 100% 40%;
--sidebar-primary-foreground: 0 0% 100%;
--sidebar-accent: 0 0% 96%;
--sidebar-accent-foreground: 0 0% 7%;
--sidebar-border: 0 0% 90%;
--sidebar-ring: 0 0% 84%;
}
.dark {
--background: 0 0% 7%;
--foreground: 0 0% 100%;
--card: 0 0% 7%;
--card-foreground: 0 0% 100%;
--popover: 0 0% 7%;
--popover-foreground: 0 0% 100%;
--primary: 0 0% 100%;
--primary-foreground: 0 100% 40%;
--secondary: 0 0% 20%;
--secondary-foreground: 0 0% 100%;
--muted: 0 0% 20%;
--muted-foreground: 0 0% 70%;
--accent: 0 0% 20%;
--accent-foreground: 0 0% 100%;
--destructive: 0 100% 25%;
--destructive-foreground: 0 0% 100%;
--border: 0 0% 20%;
--input: 0 0% 20%;
--ring: 0 0% 84%;
--sidebar: 0 0% 10%;
--sidebar-foreground: 0 0% 97%;
--sidebar-primary: 0 100% 40%;
--sidebar-primary-foreground: 0 0% 100%;
--sidebar-accent: 0 0% 15%;
--sidebar-accent-foreground: 0 0% 97%;
--sidebar-border: 0 0% 15%;
--sidebar-ring: 0 0% 84%;
}
}
@layer base {
* {
@apply border-border;
}
body {
@apply bg-background text-foreground;
}
}