blob: 0113aa8222151c60e19a3e811a0a433d95ab4e2e (
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
* PhD scheme by Hennig Hasemann (http://leetless.de/vim.html) */
window {
background-color: #061229;
color: #b8bbc2;
}
#entry:nth-child(odd) {
background-color: #061229;
}
#entry:nth-child(even) {
background-color: #2a3448;
}
#entry:selected {
background-color: #4d5666;
}
#input {
background-color: #2a3448;
color: #9a99a3;
border-color: #4d5666;
}
#input:focus {
border-color: #fbd461;
}
|