blob: babbcf6c6d348778da8f6178662f2b0107a55db5 (
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
* Horizon Light scheme by Michaël Ball (http://github.com/michael-ball/) */
window {
background-color: #FDF0ED;
color: #403C3D;
}
#entry:nth-child(odd) {
background-color: #FDF0ED;
}
#entry:nth-child(even) {
background-color: #FADAD1;
}
#entry:selected {
background-color: #F9CBBE;
}
#input {
background-color: #FADAD1;
color: #948C8A;
border-color: #F9CBBE;
}
#input:focus {
border-color: #FADAD1;
}
|