blob: 71a47471eac453846ca13379e643c75030118e41 (
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
* vulcan scheme by Andrey Varfolomeev */
window {
background-color: #041523;
color: #5b778c;
}
#entry:nth-child(odd) {
background-color: #041523;
}
#entry:nth-child(even) {
background-color: #122339;
}
#entry:selected {
background-color: #003552;
}
#input {
background-color: #122339;
color: #6b6977;
border-color: #003552;
}
#input:focus {
border-color: #adb4b9;
}
|