blob: 9f0c6956110a1ce73d67ee90226a10f1ccfebfdb (
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
* Grayscale Light scheme by Alexandre Gavioli (https://github.com/Alexx2/) */
window {
background-color: #f7f7f7;
color: #464646;
}
#entry:nth-child(odd) {
background-color: #f7f7f7;
}
#entry:nth-child(even) {
background-color: #e3e3e3;
}
#entry:selected {
background-color: #b9b9b9;
}
#input {
background-color: #e3e3e3;
color: #525252;
border-color: #b9b9b9;
}
#input:focus {
border-color: #a0a0a0;
}
|