blob: 2d2031420b5fd4ff0679b3830d5e4e5bd92b35c4 (
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
* Railscasts scheme by Ryan Bates (http://railscasts.com) */
window {
background-color: #2b2b2b;
color: #e6e1dc;
}
#entry:nth-child(odd) {
background-color: #2b2b2b;
}
#entry:nth-child(even) {
background-color: #272935;
}
#entry:selected {
background-color: #3a4055;
}
#input {
background-color: #272935;
color: #d4cfc9;
border-color: #3a4055;
}
#input:focus {
border-color: #ffc66d;
}
|