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