blob: 356b52058381fdcbb4c3c0ede5c9b6c7a45cc3d0 (
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
* Equilibrium Gray Dark scheme by Carlo Abelli */
window {
background-color: #111111;
color: #ababab;
}
#entry:nth-child(odd) {
background-color: #111111;
}
#entry:nth-child(even) {
background-color: #1b1b1b;
}
#entry:selected {
background-color: #262626;
}
#input {
background-color: #1b1b1b;
color: #919191;
border-color: #262626;
}
#input:focus {
border-color: #bb8801;
}
|