blob: 7ecff6429e4e2d1a664efd7922e6099bc752674a (
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
* darkmoss scheme by Gabriel Avanzi (https://github.com/avanzzzi) */
window {
background-color: #171e1f;
color: #c7c7a5;
}
#entry:nth-child(odd) {
background-color: #171e1f;
}
#entry:nth-child(even) {
background-color: #252c2d;
}
#entry:selected {
background-color: #373c3d;
}
#input {
background-color: #252c2d;
color: #818f80;
border-color: #373c3d;
}
#input:focus {
border-color: #fdb11f;
}
|