blob: 5aaef79ff06691dc20376c0bed6b8b9e387e5680 (
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
* One Light scheme by Daniel Pfeifer (http://github.com/purpleKarrot) */
window {
background-color: #fafafa;
color: #383a42;
}
#entry:nth-child(odd) {
background-color: #fafafa;
}
#entry:nth-child(even) {
background-color: #f0f0f1;
}
#entry:selected {
background-color: #e5e5e6;
}
#input {
background-color: #f0f0f1;
color: #696c77;
border-color: #e5e5e6;
}
#input:focus {
border-color: #c18401;
}
|