blob: a869f33237e8ca732aeed68b7aaddb2812a549c4 (
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
* Harmonic16 Light scheme by Jannik Siebert (https://github.com/janniks) */
window {
background-color: #f7f9fb;
color: #405c79;
}
#entry:nth-child(odd) {
background-color: #f7f9fb;
}
#entry:nth-child(even) {
background-color: #e5ebf1;
}
#entry:selected {
background-color: #cbd6e2;
}
#input {
background-color: #e5ebf1;
color: #627e99;
border-color: #cbd6e2;
}
#input:focus {
border-color: #8bbf56;
}
|