blob: 608e09e960f62c54e907906b2f6c89008b344ec3 (
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
* XCode Dusk scheme by Elsa Gonsiorowski (https://github.com/gonsie) */
window {
background-color: #282B35;
color: #939599;
}
#entry:nth-child(odd) {
background-color: #282B35;
}
#entry:nth-child(even) {
background-color: #3D4048;
}
#entry:selected {
background-color: #53555D;
}
#input {
background-color: #3D4048;
color: #7E8086;
border-color: #53555D;
}
#input:focus {
border-color: #438288;
}
|