63 lines
813 B
Plaintext
63 lines
813 B
Plaintext
* {
|
|
font: "Iosevka SS14 12";
|
|
background: #0f111a;
|
|
background-alt: #1a1c25;
|
|
foreground: #cbccc6;
|
|
selected: #ffcc66;
|
|
selected-foreground: #0f111a;
|
|
border: 2px;
|
|
border-color: #5ccfe6;
|
|
spacing: 5;
|
|
padding: 10;
|
|
}
|
|
|
|
window {
|
|
location: north;
|
|
anchor: north;
|
|
width: 50%;
|
|
border: 2px;
|
|
padding: 10;
|
|
y-offset: 60;
|
|
}
|
|
|
|
mainbox {
|
|
background-color: inherit;
|
|
padding: 5;
|
|
}
|
|
|
|
listview {
|
|
lines: 8;
|
|
background-color: inherit;
|
|
columns: 1;
|
|
spacing: 4;
|
|
}
|
|
|
|
element {
|
|
padding: 4 6;
|
|
background-color: transparent;
|
|
}
|
|
|
|
element-text {
|
|
text-color: inherit;
|
|
}
|
|
|
|
element selected {
|
|
background-color: @selected;
|
|
text-color: @selected-foreground;
|
|
}
|
|
|
|
inputbar {
|
|
children: [prompt, entry];
|
|
background-color: #1a1c25;
|
|
padding: 6;
|
|
}
|
|
|
|
prompt {
|
|
text-color: #5ccfe6;
|
|
padding: 0 8 0 0;
|
|
}
|
|
|
|
entry {
|
|
text-color: @foreground;
|
|
}
|