-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy paththeme.css
More file actions
52 lines (46 loc) · 1.35 KB
/
theme.css
File metadata and controls
52 lines (46 loc) · 1.35 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
[data-theme="dark"] {
--primary: #36c085;
--primary-dark: #30b77c;
--primary-light: #4fd197;
--text-primary: #f7fafc;
--text-secondary: #e2e8f0;
--bg-light: #1e242c;
--bg-dark: #171e26;
--bg-card: #1e2833;
--bg-footer: #171e26;
--border: #364049;
--ifm-navbar-background-color: rgba(30, 36, 44, 0.98);
--ifm-background-color: var(--bg-dark);
--ifm-background-surface-color: var(--bg-card);
--ifm-color-primary: var(--primary);
--ifm-color-primary-dark: var(--primary-dark);
}
[data-theme="light"] body,
[data-theme="light"] .main-wrapper,
[data-theme="light"] .homepage,
[data-theme="light"] .docMainContainer_gTbr,
[data-theme="light"] article,
[data-theme="light"] .theme-doc-markdown {
background-color: var(--bg-light);
}
[data-theme="light"] .container {
background-color: transparent;
}
[data-theme="dark"] body,
[data-theme="dark"] .main-wrapper,
[data-theme="dark"] .docMainContainer_gTbr,
[data-theme="dark"] .container,
[data-theme="dark"] article,
[data-theme="dark"] .theme-doc-markdown {
background-color: var(--bg-dark);
}
[data-theme="dark"] .card {
background-color: var(--bg-card);
border-color: var(--border);
}
[data-theme="dark"] .card:hover {
border-color: rgba(54, 192, 133, 0.3);
}
[data-theme="dark"] .footer__copyright {
border-top-color: rgba(255, 255, 255, 0.05);
}