This commit is contained in:
2025-10-11 19:10:48 +05:00
commit d0401c8c07
27 changed files with 1240 additions and 0 deletions

View File

@@ -0,0 +1,98 @@
* {
bg: #1d1d1d;
fg: #fcfcfc;
}
configuration {
modes: "drun";
font: "JetBrainsMono Regular 10";
location: 0;
xoffset: 0;
yoffset: 0;
}
window {
background-color: @bg;
width: 400;
border-radius: 12px;
border: 1px solid;
border-color: #000000;
}
mainbox {
background-color: @bg;
padding: 6px;
margin: 8px;
border-radius: 12px;
}
inputbar {
background-color: #383838;
border: 2px solid;
border-color: #383838;
padding: 6px;
border-radius: 5px;
}
prompt {
enabled: false;
}
textbox-prompt-colon {
expand: false;
str: " ";
background-color: #383838;
text-color: @bg;
}
entry {
background-color: #383838;
text-color: @fg;
cursor: text;
placeholder: "Search...";
placeholder-color: @fg;
}
listview {
columns: 1;
lines: 16;
dynamic: true;
scrollbar: false;
fixed-height: true;
fixed-columns: true;
background-color: @bg;
text-color: @fg;
margin: 5px 0px 0px 0px;
border: 1px solid;
border-color: @bg;
}
element {
background-color: @bg;
text-color: @fg;
padding: 8px 3px;
}
element normal.normal,
element alternate.normal,
message,
error-message {
background-color: @bg;
text-color: @fg;
}
element selected.normal {
background-color: #2a2a2a;
text-color: @fg;
border-radius: 5px;
padding: 8px 4px;
}
error-message,
textbox {
padding: 3px;
background-color: @bg;
text-color: @fg;
}