-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdark.css
More file actions
38 lines (32 loc) · 764 Bytes
/
Copy pathdark.css
File metadata and controls
38 lines (32 loc) · 764 Bytes
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
@media (prefers-color-scheme: dark) {
#on-screen-console { /* Console main body */
border-top-color:#999;
color: #aaa;
background-color: #222;
}
#on-screen-console input,
#on-screen-console .ln {
border-top:1px solid #444;
}
/* Output beeing generated via console.warn() */
#on-screen-console div.warn {
background-color: #552;
}
/* Output beeing generated via console.error() */
#on-screen-console div.error {
background-color: #533;
}
/* Strings */
#on-screen-console span.string {
color: #aaa;
}
/* Internal types like undefined, null, booean values */
#on-screen-console span.boolean,
#on-screen-console span.internal {
color: #99c;
}
/* object members */
#on-screen-console li>span:nth-child(1) {
color: #888;
}
}