-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathglobal.css
More file actions
60 lines (58 loc) · 1.61 KB
/
global.css
File metadata and controls
60 lines (58 loc) · 1.61 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
@tailwind base;
@tailwind components;
@tailwind utilities;
@layer base {
:root {
--background: 0 0% 100%;
--foreground: 224 71% 4%;
--card: 0 0% 100%;
--card-foreground: 224 71% 4%;
--popover: 0 0% 100%;
--popover-foreground: 224 71% 4%;
--primary: 221 83% 53%; /* Coinbase blue (#1652F0) */
--primary-foreground: 0 0% 100%;
--secondary: 221 83% 90%;
--secondary-foreground: 224 71% 4%;
--muted: 220 14% 96%;
--muted-foreground: 220 8% 44%;
--accent: 221 83% 40%;
--accent-foreground: 0 0% 100%;
--destructive: 0 84% 60%;
--destructive-foreground: 0 0% 98%;
--border: 220 13% 91%;
--input: 220 13% 91%;
--ring: 221 83% 40%;
--radius: 0.5rem;
--chart-1: 12 76% 61%;
--chart-2: 173 58% 39%;
--chart-3: 197 37% 24%;
--chart-4: 43 74% 66%;
--chart-5: 27 87% 67%;
}
.dark:root {
--background: 224 71% 4%; /* Coinbase dark navy */
--foreground: 210 17% 98%;
--card: 224 71% 6%;
--card-foreground: 210 17% 98%;
--popover: 224 71% 6%;
--popover-foreground: 210 17% 98%;
--primary: 221 83% 60%;
--primary-foreground: 224 71% 4%;
--secondary: 221 83% 20%;
--secondary-foreground: 210 17% 98%;
--muted: 224 71% 15%;
--muted-foreground: 220 8% 70%;
--accent: 221 83% 50%;
--accent-foreground: 210 17% 98%;
--destructive: 0 84% 50%;
--destructive-foreground: 0 0% 98%;
--border: 224 71% 15%;
--input: 224 71% 15%;
--ring: 221 83% 60%;
--chart-1: 220 70% 50%;
--chart-2: 160 60% 45%;
--chart-3: 30 80% 55%;
--chart-4: 280 65% 60%;
--chart-5: 340 75% 55%;
}
}