blob: 6a17e98e359ed6eec54b212a4177388fac3812c6 (
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
* Atelier Estuary scheme by Bram de Haan (http://atelierbramdehaan.nl) */
window {
background-color: #22221b;
color: #929181;
}
#entry:nth-child(odd) {
background-color: #22221b;
}
#entry:nth-child(even) {
background-color: #302f27;
}
#entry:selected {
background-color: #5f5e4e;
}
#input {
background-color: #302f27;
color: #878573;
border-color: #5f5e4e;
}
#input:focus {
border-color: #a5980d;
}
|