generated from NEARBuilders/near-vite-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinput.css
57 lines (57 loc) · 1.43 KB
/
input.css
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
@tailwind base;
@tailwind components;
@tailwind utilities;
@layer base {
:root {
--background: 0 0% 100%;
--foreground: 158 5% 10%;
--card: 158 50% 90%;
--card-foreground: 158 5% 15%;
--popover: 158 100% 95%;
--popover-foreground: 158 100% 10%;
--primary: 158 100% 46.3%;
--primary-foreground: 0 0% 100%;
--secondary: 158 30% 70%;
--secondary-foreground: 0 0% 0%;
--muted: 120 30% 85%;
--muted-foreground: 158 5% 35%;
--accent: 120 30% 80%;
--accent-foreground: 158 5% 15%;
--destructive: 0 100% 30%;
--destructive-foreground: 158 5% 90%;
--border: 158 30% 50%;
--input: 158 30% 26%;
--ring: 158 100% 46.3%;
--radius: 0.5rem;
}
.dark {
--background: 158 50% 10%;
--foreground: 158 5% 90%;
--card: 158 50% 30%;
--card-foreground: 158 5% 90%;
--popover: 158 50% 5%;
--popover-foreground: 158 5% 90%;
--primary: 158 100% 46.3%;
--primary-foreground: 0 0% 100%;
--secondary: 158 30% 20%;
--secondary-foreground: 0 0% 100%;
--muted: 120 30% 25%;
--muted-foreground: 158 5% 60%;
--accent: 120 30% 25%;
--accent-foreground: 158 5% 90%;
--destructive: 0 100% 30%;
--destructive-foreground: 158 5% 90%;
--border: 158 30% 26%;
--input: 158 30% 26%;
--ring: 158 100% 46.3%;
--radius: 0.5rem;
}
}
@layer base {
* {
@apply border-border;
}
body {
@apply bg-background text-foreground;
}
}