blob: 95de4fe221f41d70aeb06db65edcd9d20539ff3a (
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 Cave Light scheme by Bram de Haan (http://atelierbramdehaan.nl) */
window {
background-color: #efecf4;
color: #585260;
}
#entry:nth-child(odd) {
background-color: #efecf4;
}
#entry:nth-child(even) {
background-color: #e2dfe7;
}
#entry:selected {
background-color: #8b8792;
}
#input {
background-color: #e2dfe7;
color: #655f6d;
border-color: #8b8792;
}
#input:focus {
border-color: #a06e3b;
}
|