blob: 15998a2873627f5114a048a253e8efeab890b79a (
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
* Brogrammer scheme by Vik Ramanujam (http://github.com/piggyslasher) */
window {
background-color: #1f1f1f;
color: #4e5ab7;
}
#entry:nth-child(odd) {
background-color: #1f1f1f;
}
#entry:nth-child(even) {
background-color: #f81118;
}
#entry:selected {
background-color: #2dc55e;
}
#input {
background-color: #f81118;
color: #2a84d2;
border-color: #2dc55e;
}
#input:focus {
border-color: #1dd361;
}
|