blob: 4c4ac1060c4251ba71db4ad32770d4a51b0d261b (
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 Dark scheme by Michaël Ball (http://github.com/michael-ball/) */
window {
background-color: #1C1E26;
color: #CBCED0;
}
#entry:nth-child(odd) {
background-color: #1C1E26;
}
#entry:nth-child(even) {
background-color: #232530;
}
#entry:selected {
background-color: #2E303E;
}
#input {
background-color: #232530;
color: #9DA0A2;
border-color: #2E303E;
}
#input:focus {
border-color: #EFB993;
}
|