blob: 7bc058a5363ffa3a65d9878144c91ca79abd422e (
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
* Brush Trees scheme by Abraham White <abelincoln.white@gmail.com> */
window {
background-color: #E3EFEF;
color: #6D828E;
}
#entry:nth-child(odd) {
background-color: #E3EFEF;
}
#entry:nth-child(even) {
background-color: #C9DBDC;
}
#entry:selected {
background-color: #B0C5C8;
}
#input {
background-color: #C9DBDC;
color: #8299A1;
border-color: #B0C5C8;
}
#input:focus {
border-color: #aab386;
}
|