80 lines
1.2 KiB
Text
80 lines
1.2 KiB
Text
configuration {
|
|
modi: "dmenu";
|
|
show-icons: true;
|
|
font: "Inter Bold 11";
|
|
display-dmenu: "> ";
|
|
}
|
|
|
|
* {
|
|
/* Hardcoded high-contrast palette */
|
|
bg: #000000;
|
|
fg: #ffffff;
|
|
border-col: #ffffff44;
|
|
sel-bg: #ffffff;
|
|
sel-fg: #000000;
|
|
|
|
background-color: transparent;
|
|
text-color: @fg;
|
|
}
|
|
|
|
window {
|
|
width: 25%;
|
|
background-color: @bg;
|
|
border: 1px;
|
|
border-color: @border-col;
|
|
border-radius: 0px;
|
|
padding: 25px;
|
|
}
|
|
|
|
mainbox {
|
|
children: [ inputbar, listview ];
|
|
spacing: 10px;
|
|
}
|
|
|
|
inputbar {
|
|
children: [ prompt, entry ];
|
|
padding: 0 0 10px 0;
|
|
}
|
|
|
|
prompt {
|
|
text-color: @fg;
|
|
}
|
|
|
|
entry {
|
|
text-color: @fg;
|
|
}
|
|
|
|
listview {
|
|
lines: 10;
|
|
columns: 1;
|
|
fixed-height: true;
|
|
scrollbar: false;
|
|
spacing: 5px;
|
|
}
|
|
|
|
element {
|
|
padding: 8px;
|
|
border-radius: 0px;
|
|
/* This kills the cream/grey background boxes from your screenshot */
|
|
background-color: transparent;
|
|
}
|
|
|
|
element selected {
|
|
/* The high-contrast "Fuzzel" selection look */
|
|
background-color: @sel-bg;
|
|
text-color: @sel-fg;
|
|
}
|
|
|
|
element-text selected {
|
|
text-color: @sel-fg;
|
|
}
|
|
|
|
element-icon {
|
|
size: 48px;
|
|
padding: 0 15px 0 0;
|
|
}
|
|
|
|
element-text {
|
|
vertical-align: 0.5;
|
|
text-color: inherit;
|
|
}
|