This commit is contained in:
fatmeat 2025-05-11 17:54:22 +02:00
parent 05e971ac2a
commit 0470856c76

View File

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