-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy paththemes.css
51 lines (49 loc) · 840 Bytes
/
themes.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
[Dark-Mode] {
background: #555;
color: white;
border: white;
}
[Dark-Mode] input,[DarkMode] button {
background: #444;
color: #fff;
}
[Dark-Mode] iframe {
background: #555;
color: #fff;
}
[Dark-Mode] a {
color: #0000ff;
}
[Light-Mode] {
background: #fff;
color: #000;
}
[Light-Mode] input,[Light-Mode] button {
background: #eee;
color: #000;
}
[Light-Mode] a {
color: #0000ff;
}
[Light-Mode] [Dark-Mode] {
background: #555;
color: white;
border: white;
}
[Light-Mode] [Dark-Mode] input,[LightMode] [DarkMode] button {
background: #444;
color: #fff;
}
[Light-Mode] [Dark-Mode] iframe {
background: #555;
color: #fff;
}
[Light-Mode] [DarkMode] a {
color: #0000ff;
}
experimental-stuff {
display: none;
}
[enable-experimental] experimental-stuff {
display: inline;
}