-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdarkmode.css
103 lines (72 loc) · 2.03 KB
/
darkmode.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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
@import url("https://cdnjs.cloudflare.com/ajax/libs/highlight.js/10.5.0/styles/atom-one-dark.min.css");
:root {
/* - COLOR - */
/* general */
--background: #21252b;
--text-color: #ffffff;
/* heading */
--heading-border: #000000;
--content-divider: #000000;
/* navigator */
--heading-hover: #be2c34;
--navigator-extend-border: #b03634;
--navigator-extend-background: #121518; /* TODO */
--navigator-extend-lines: #b03634;
--navigator-item: #282c34;
--navigator-item-hover: #181a1f;
--navigator-extra-text: #ff4500;
--navigator-divider: #999999;
/* table of content */
--toc-heading-border: #992c34;
--toc-background-hover: #992c3466;
/* CONTENT */
/* header */
--sub-heading-border: #992c3489;
/* content */
--content-border-left: #992c3444;
--content-border-left-hover: #992c34bb;
--content-heading-hover: #bb4c54;
--content-link: #008080e6;
--content-link-hover: #005050;
/* table */
--table-heading-background: #b03434;
--table-heading-text: #181a1f;
--table-cell-background: #282c34;
/* type / return */
--property-background: #182127;
--property-text: #dddddd;
--property-highlight: #00808099;
--property-highlight-value:#ff4500d0;
--property-link: #bb2000;
--property-link-hover: #ff2a00;
/* code */
--code-extend: #992c3433;
--code-extend-hover: #992c3466;
--code-extend-line: #ffffff;
/* lightdark */
--lightdark: #ffffff;
--lightdark-hover: #de2c34aa;
/* footer */
--footer-color: #ffffff;
--footer-background-hover: #282c34;
/* footer bar */
--footer-cross: #ffffff;
/* action bar */
--actionbar-background: #800000;
/* cookie bar */
--cookiebar-background: #003030;
--cookiebar-link: #0080a0;
--cookiebar-link-hover: #0080ff;
/* index */
--index-project-background: #282c34;
--index-project-background-hover: #992c3466;
/* cookies */
/* --cookie-name-background: #25272f; */
--cookie-name-background: #282c34;
--cookie-value: #0080a0;
--cookie-delete: #ff00001a;
--cookie-delete-hover: #ff000066;
--no-cookie-background: #00000030;
/* - FONT - */
--font: monospace;
}