blob: ccdf98631545b003b633fa5ac6956664a687be50 (
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
31
32
33
34
35
36
37
38
|
configuration {
show-icons: false;
disable-history: false;
}
* {
font: "Berkeley Mono Bold 14";
foreground: white;
background-color: black;
}
#window {
background-color: black;
border: 2;
border-color: white;
padding: 20;
width: 800;
}
prompt, inputbar, entry {
text-color: white;
padding: 0 10 10 0;
text-style: bold;
}
listview {
lines: 20;
columns: 1;
}
element-text {
text-color: khaki;
}
element-text selected {
text-color: black;
background-color: white;
}
|