-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathshared.css
More file actions
61 lines (54 loc) · 1.39 KB
/
shared.css
File metadata and controls
61 lines (54 loc) · 1.39 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
61
/* Shared Ejo Brand Variables */
:root {
--ejo-primary: #FF6B6B;
--ejo-secondary: #4ECDC4;
--ejo-accent: #FFE66D;
--ejo-dark: #2A2A2A;
--ejo-light: #F7F7F7;
--ejo-gradient: linear-gradient(135deg, #FF6B6B 0%, #4ECDC4 100%);
/* Semantic Colors */
--text-primary: var(--ejo-dark);
--text-secondary: #666;
--white: #ffffff;
--black: #1a1a1a;
--background: var(--ejo-light);
--card-bg: #ffffff;
--button: var(--ejo-secondary);
--button-hover: var(--ejo-primary);
}
/* Themes */
[data-theme="midnight"] {
--ejo-primary: #BB86FC;
--ejo-secondary: #03DAC6;
--ejo-accent: #CF6679;
--ejo-dark: #121212;
--ejo-light: #1E1E1E;
--text-primary: #FFFFFF;
--text-secondary: #B0B0B0;
--white: #ffffff;
--black: #000000;
--background: #121212;
--card-bg: #1e1e1e;
}
[data-theme="forest"] {
--ejo-primary: #2ECC71;
--ejo-secondary: #27AE60;
--ejo-accent: #F1C40F;
--ejo-dark: #1B5E20;
--ejo-light: #E8F5E9;
--text-primary: #1B5E20;
--text-secondary: #2E7D32;
--background: var(--ejo-light);
--card-bg: #ffffff;
}
[data-theme="sunset"] {
--ejo-primary: #FF5722;
--ejo-secondary: #FF9800;
--ejo-accent: #FFEB3B;
--ejo-dark: #3E2723;
--ejo-light: #FFF3E0;
--text-primary: #3E2723;
--text-secondary: #5D4037;
--background: var(--ejo-light);
--card-bg: #ffffff;
}