forked from rinafcode/teachLink_mobile
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathglobal.css
More file actions
27 lines (25 loc) · 671 Bytes
/
Copy pathglobal.css
File metadata and controls
27 lines (25 loc) · 671 Bytes
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
@tailwind base;
@tailwind components;
@tailwind utilities;
@layer base {
:root {
--color-background: 220 20% 95%;
--color-card: 0 0% 100%;
--color-primary: 220 85% 57%;
--color-secondary: 190 80% 50%;
--color-accent: 250 70% 65%;
--color-text-primary: 220 20% 15%;
--color-text-secondary: 220 10% 45%;
--color-border: 220 15% 88%;
}
.dark {
--color-background: 220 25% 15%;
--color-card: 220 25% 20%;
--color-primary: 220 85% 60%;
--color-secondary: 190 80% 55%;
--color-accent: 250 70% 70%;
--color-text-primary: 220 10% 95%;
--color-text-secondary: 220 10% 65%;
--color-border: 220 15% 25%;
}
}