-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.css
41 lines (39 loc) · 1.31 KB
/
config.css
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
/* CUSTOMIZATION */
:root, html[data-theme="light"] {
--primary-color: #000000;
--secondary-color: grey;
--contrast-color: #ffffff;
--accent-color: rgb(255, 166, 0);
--primary-background: #ffffff;
--secondary-background: #c9c9c9;
--green: rgba(81, 179, 0, 0.486);
--red: rgba(177, 20, 20, 0.473);
--yellow: rgb(226, 230, 29);
--bright: rgb(245, 240, 240);
--medium: rgb(124, 124, 124);
--dark: rgb(30, 30, 30);
--shadow: rgba(0, 0, 0, 0.1);
--skeletonLoading-dark: hsl(200, 20%, 70%);
--skeletonLoading-bright: hsl(200, 20%, 95%);
--border-radius: 0.25rem;
}
@media (prefers-color-scheme: dark) {
:root, html[data-theme="dark"] {
--primary-color: #ffffff;
--secondary-color: grey;
--contrast-color: #000000;
--accent-color: rgb(255, 166, 0);
--primary-background: #000000;
--secondary-background: #424242;
--green: rgba(81, 179, 0, 0.486);
--red: rgba(177, 20, 20, 0.473);
--yellow: rgb(226, 230, 29);
--bright: rgb(245, 240, 240);
--medium: rgb(124, 124, 124);
--dark: rgb(30, 30, 30);
--shadow: rgba(0, 0, 0, 0.1);
--skeletonLoading-dark: hsl(200, 20%, 70%);
--skeletonLoading-bright: hsl(200, 20%, 95%);
--border-radius: 0.25rem;
}
}