-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathglobal.css
More file actions
54 lines (48 loc) · 1.45 KB
/
global.css
File metadata and controls
54 lines (48 loc) · 1.45 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
@tailwind base;
@tailwind components;
@tailwind utilities;
/* CSS Variables for theme colors */
:root {
/* Light theme colors (default) - Vanguard Palette */
--color-primary: #00C0D4; /* Teal Vanguard */
--color-background: #FFFFFF;
--color-surface: #F8F9FA;
--color-foreground: #1A1A1A;
--color-muted: #687076;
--color-border: #E5E7EB;
--color-success: #A7F3D0; /* Menta Vanguard */
--color-warning: #FDBA74; /* Coral Vanguard */
--color-error: #EF4444;
--color-tint: #00C0D4;
/* Vanguard accent colors */
--color-accent-mint: #A7F3D0;
--color-accent-coral: #FDBA74;
--color-accent-teal: #00C0D4;
--color-gradient-start: #00C0D4;
--color-gradient-end: #A7F3D0;
/* Smooth theme transitions */
transition: background-color 0.3s ease, color 0.3s ease;
}
/* Dark theme colors */
:root[data-theme="dark"] {
--color-primary: #00C0D4;
--color-background: #0A0A0A;
--color-surface: #1F1F1F;
--color-foreground: #FFFFFF;
--color-muted: #9BA1A6;
--color-border: #334155;
--color-success: #A7F3D0;
--color-warning: #FDBA74;
--color-error: #F87171;
--color-tint: #00C0D4;
}
* {
transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
/* Vanguard gradient text utility */
.text-gradient-vanguard {
background: linear-gradient(135deg, var(--color-gradient-start) 0%, var(--color-gradient-end) 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}