-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdark_mode.css
44 lines (41 loc) · 914 Bytes
/
dark_mode.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
/* dark_mode.css */
body.dark-mode,
body.dark-mode header,
body.dark-mode footer,
body.dark-mode section,
body.dark-mode nav,
body.dark-mode div,
body.dark-mode table,
body.dark-mode ul,
body.dark-mode ol,
body.dark-mode li,
body.dark-mode h1,
body.dark-mode h2,
body.dark-mode h3,
body.dark-mode h4,
body.dark-mode h5,
body.dark-mode h6,
body.dark-mode p,
body.dark-mode span,
body.dark-mode blockquote,
body.dark-mode pre,
body.dark-mode code,
body.dark-mode button,
body.dark-mode input,
body.dark-mode textarea,
body.dark-mode select {
background-color: var(--dark-mode-background-color) !important;
color: var(--dark-mode-text-color) !important;
}
body.dark-mode a {
color: var(--dark-mode-link-color) !important;
}
body.dark-mode img,
body.dark-mode video,
body.dark-mode iframe,
body.dark-mode canvas,
body.dark-mode svg,
body.dark-mode picture,
body.dark-mode source {
filter: none !important;
}