blob: 32651ee59dc4f385441c77f5f3913a99b7151589 (
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
* Pasque scheme by Gabriel Fontes (https://github.com/Misterio77) */
window {
background-color: #271C3A;
color: #DEDCDF;
}
#entry:nth-child(odd) {
background-color: #271C3A;
}
#entry:nth-child(even) {
background-color: #100323;
}
#entry:selected {
background-color: #3E2D5C;
}
#input {
background-color: #100323;
color: #BEBCBF;
border-color: #3E2D5C;
}
#input:focus {
border-color: #804ead;
}
|