blob: 360f138ec2721cdaeecbced258f961cb10917252 (
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
* Marrakesh scheme by Alexandre Gavioli (http://github.com/Alexx2/) */
window {
background-color: #201602;
color: #948e48;
}
#entry:nth-child(odd) {
background-color: #201602;
}
#entry:nth-child(even) {
background-color: #302e00;
}
#entry:selected {
background-color: #5f5b17;
}
#input {
background-color: #302e00;
color: #86813b;
border-color: #5f5b17;
}
#input:focus {
border-color: #a88339;
}
|