blob: 69eeda7ec4870ba4cbc20a0ac0b285493242b653 (
plain)
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
|
/* base16-wofi (https://sr.ht/~knezi/base16-wofi)
* Base16 wofi template by knezi
* Solar Flare scheme by Chuck Harmston (https://chuck.harmston.ch) */
window {
background-color: #18262F;
color: #A6AFB8;
}
#entry:nth-child(odd) {
background-color: #18262F;
}
#entry:nth-child(even) {
background-color: #222E38;
}
#entry:selected {
background-color: #586875;
}
#input {
background-color: #222E38;
color: #85939E;
border-color: #586875;
}
#input:focus {
border-color: #E4B51C;
}
|