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