99 lines
1.4 KiB
Plaintext
99 lines
1.4 KiB
Plaintext
|
|
|
||
|
|
* {
|
||
|
|
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;
|
||
|
|
}
|
||
|
|
|