-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathglobal.css
More file actions
59 lines (57 loc) · 1.46 KB
/
global.css
File metadata and controls
59 lines (57 loc) · 1.46 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
@tailwind base;
@tailwind components;
@tailwind utilities;
@layer base {
:root {
--background: #f9fafb;
--foreground: #374151;
--overlay: #00000060;
--border: #e2e7ed;
--shadow: #6f8cb0;
--logo-primary: #202020;
--logo-secondary: #ffc800;
--primary: #ffc800;
--secondary: #ffe480;
--primary-foreground: #374151;
--secondary-foreground: #6b7280;
--muted: #e4e6ea;
--muted-foreground: #9ba2ae;
--receive: #22c45e;
--receive-foreground: #dbfbe6;
--sent: #f97316;
--sent-foreground: #ffedd5;
--destructive: #ef4444;
--destructive-foreground: #fee2e2;
--pending: #3b82f6;
--pending-foreground: #dbeafe;
--warning: #c2410c;
--warning-foreground: #fff7ed;
--warning-border: #ffedd5;
}
.dark:root {
--background: #0a0b0c;
--foreground: #e3e3e3;
--overlay: #ffffff20;
--border: #e2e7ed;
--shadow: #000000;
--logo-primary: #ffffff;
--logo-secondary: #ffe480;
--primary: #ffc800;
--secondary: #ffe480;
--primary-foreground: #374151;
--secondary-foreground: #bababa;
--muted: #242424;
--muted-foreground: #858585;
--receive: #14b8a6;
--receive-foreground: #022c22;
--sent: #f59e0b;
--sent-foreground: #451a03;
--destructive: #f43f5e;
--destructive-foreground: #4c0519;
--pending: #0ea5e9;
--pending-foreground: #082f49;
--warning: #fdba74;
--warning-foreground: #7c2d12;
--warning-border: #c16242;
}
}