-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathglobal.css
More file actions
57 lines (45 loc) · 1.26 KB
/
Copy pathglobal.css
File metadata and controls
57 lines (45 loc) · 1.26 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
/**
* Global CSS for NativeWind v4
*
* This file imports Tailwind's base styles and any custom global styles.
* Import this in your root layout to enable NativeWind styling.
*/
@tailwind base;
@tailwind components;
@tailwind utilities;
/* Custom CSS Variables (referenced in tailwind.config.js) */
:root {
/* Primary colors */
--color-primary: 220 90% 56%;
--color-primary-foreground: 0 0% 100%;
/* Background colors */
--color-background: 0 0% 100%;
--color-foreground: 222 47% 11%;
/* Card colors */
--color-card: 0 0% 100%;
--color-card-foreground: 222 47% 11%;
/* Muted colors */
--color-muted: 210 40% 96%;
--color-muted-foreground: 215 16% 47%;
/* Border and input */
--color-border: 214 32% 91%;
--color-input: 214 32% 91%;
/* Semantic colors */
--color-destructive: 0 84% 60%;
--color-destructive-foreground: 0 0% 100%;
}
/* Dark mode (optional - uncomment to enable) */
/*
.dark {
--color-primary: 220 90% 56%;
--color-primary-foreground: 0 0% 100%;
--color-background: 222 47% 11%;
--color-foreground: 210 40% 98%;
--color-card: 217 33% 17%;
--color-card-foreground: 210 40% 98%;
--color-muted: 217 33% 17%;
--color-muted-foreground: 215 20% 65%;
--color-border: 217 33% 17%;
--color-input: 217 33% 17%;
}
*/