blob: 1bb618bc80e321c8b8d05deeffb08afc4a2928b9 (
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 scheme by Nate Peterson */
window {
background-color: #263238;
color: #EEFFFF;
}
#entry:nth-child(odd) {
background-color: #263238;
}
#entry:nth-child(even) {
background-color: #2E3C43;
}
#entry:selected {
background-color: #314549;
}
#input {
background-color: #2E3C43;
color: #B2CCD6;
border-color: #314549;
}
#input:focus {
border-color: #FFCB6B;
}
|