blob: e6a70b8c67a4b6b36145b7b69e0923d3d8c6d458 (
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
* Unikitty Dark scheme by Josh W Lewis (@joshwlewis) */
window {
background-color: #2e2a31;
color: #bcbabe;
}
#entry:nth-child(odd) {
background-color: #2e2a31;
}
#entry:nth-child(even) {
background-color: #4a464d;
}
#entry:selected {
background-color: #666369;
}
#input {
background-color: #4a464d;
color: #9f9da2;
border-color: #666369;
}
#input:focus {
border-color: #dc8a0e;
}
|