blob: 3d04fc346f22ff43d47beb4485925476ff9315b7 (
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
* Material Palenight scheme by Nate Peterson */
window {
background-color: #292D3E;
color: #959DCB;
}
#entry:nth-child(odd) {
background-color: #292D3E;
}
#entry:nth-child(even) {
background-color: #444267;
}
#entry:selected {
background-color: #32374D;
}
#input {
background-color: #444267;
color: #8796B0;
border-color: #32374D;
}
#input:focus {
border-color: #FFCB6B;
}
|