blob: 6d80ddc5cb276e16cdad91fe4ad0ecc4733505a5 (
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
* Tango scheme by @Schnouki, based on the Tango Desktop Project */
window {
background-color: #2e3436;
color: #d3d7cf;
}
#entry:nth-child(odd) {
background-color: #2e3436;
}
#entry:nth-child(even) {
background-color: #8ae234;
}
#entry:selected {
background-color: #fce94f;
}
#input {
background-color: #8ae234;
color: #729fcf;
border-color: #fce94f;
}
#input:focus {
border-color: #c4a000;
}
|