blob: 3a8ce1e9749ceacd05db878f9556770d3ed3152a (
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
* Brewer scheme by Timothée Poisot (http://github.com/tpoisot) */
window {
background-color: #0c0d0e;
color: #b7b8b9;
}
#entry:nth-child(odd) {
background-color: #0c0d0e;
}
#entry:nth-child(even) {
background-color: #2e2f30;
}
#entry:selected {
background-color: #515253;
}
#input {
background-color: #2e2f30;
color: #959697;
border-color: #515253;
}
#input:focus {
border-color: #dca060;
}
|