-
Notifications
You must be signed in to change notification settings - Fork 0
/
default-style-sheet.css
57 lines (51 loc) · 1.03 KB
/
default-style-sheet.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
/* Default Style Sheet:
By Robert Wallis 2021-06-28
A replacement for #00F and Times New Roman on unformatted HTML like GNU manuals.
Also system color scheme aware.
*/
/* media queries have higher specificity, so choosing dark by default */
html {
font-family: -apple-system-body, -apple-system, Roboto, Ubuntu, Arial;
background: #222;
color: #EEE;
}
a { color: #6AF; }
a:visited { color: #d67d38; }
/*
@media (prefers-color-scheme: light) {
html {
background: #EEE;
color: #222;
}
strong, b, i, h1, h2, h3, h4, h5, h6, cite, quote {
color: #000;
}
a {
color: #5086c9;
}
a:visited {
color: #c89423;
}
a:hover {
color: #36add5;
}
}
@media (prefers-color-scheme: dark) {
html {
background: #222;
color: #EEE;
}
strong, b, i, h1, h2, h3, h4, h5, h6, cite, quote {
color: #FFF;
}
a {
color: #6AF;
}
a:visited {
color: #d67d38;
}
a:hover {
color: #BEF;
}
}
*/