-
Notifications
You must be signed in to change notification settings - Fork 45
/
Copy pathstyle-alt-theme.css
51 lines (37 loc) · 1.37 KB
/
style-alt-theme.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
42
43
44
45
46
47
48
49
50
51
/* Primary color theme */
:root {
--accent-color: hsl(0, 0%, 0%);
--accent-color-contrast: hsl(0, 0%, 55%);
--background-color: hsl(0, 0%, 96%);
--background-color-contrast: hsl(0, 0%, 90%);
--background-color-contrast-more: hsl(0, 0%, 65%);
--background-color-graph: hsl(0, 0%, 100%);
--background-color-inputs: hsl(0, 0%, 100%);
--font-color-primary: hsl(0, 0%, 10%);
--font-color-secondary: hsl(0, 0%, 100%);
--font-color-inputs: hsl(0, 0%, 50%);
--font-primary: 'Open Sans', sans-serif;
--font-secondary: monospace;
--scrollbar-color: 255,255,255;
--scrollbar-accent: 0,0,0;
--logo-filter: invert(1.0);
--svg-filter: none;
}
body.dark-mode {
--accent-color: hsl(0, 0%, 100%);
--accent-color-contrast: hsl(0, 0%, 50%);
--background-color: hsl(0, 0%, 6%);
--background-color-contrast: hsl(0, 0%, 15%);
--background-color-contrast-more: hsl(0, 0%, 30%);
--background-color-graph: hsl(0, 0%, 8%);
--background-color-inputs: hsl(0, 0%, 15%);
--font-color-primary: hsl(0, 0%, 80%);
--font-color-secondary: hsl(0, 0%, 0%);
--font-color-inputs: hsl(0, 0%, 60%);
--font-primary: 'Open Sans', sans-serif;
--font-secondary: monospace;
--scrollbar-color: 0,0,0;
--scrollbar-accent: 255,255,255;
--logo-filter: none;
--svg-filter: invert(1.0);
}