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