blob: 42d14bda6e89697a39b0f5fd872b5138f6630257 (
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
* Humanoid dark scheme by Thomas (tasmo) Friese */
window {
background-color: #232629;
color: #f8f8f2;
}
#entry:nth-child(odd) {
background-color: #232629;
}
#entry:nth-child(even) {
background-color: #333b3d;
}
#entry:selected {
background-color: #484e54;
}
#input {
background-color: #333b3d;
color: #c0c0bd;
border-color: #484e54;
}
#input:focus {
border-color: #ffb627;
}
|