87 lines
1.2 KiB
Sass
87 lines
1.2 KiB
Sass
configuration {
|
|
font: "Hack 14";
|
|
display-drun: " ";
|
|
drun-display-format: "{icon} {name}";
|
|
modi: "run";
|
|
show-icons: true;
|
|
icon-theme: "Papirus";
|
|
}
|
|
|
|
@theme "/dev/null"
|
|
|
|
* {
|
|
bg: #222436;
|
|
bg-alt: #2d3f76;
|
|
bg-selected: #4fd6be;
|
|
|
|
fg: #c8d3f5;
|
|
fg-alt: #c8d3f5;
|
|
fg-selected: #222436;
|
|
|
|
border: 0;
|
|
margin: 0;
|
|
padding: 0;
|
|
spacing: 0;
|
|
}
|
|
|
|
window {
|
|
width: 30%;
|
|
background-color: @bg;
|
|
border-radius: 10px;
|
|
}
|
|
|
|
element {
|
|
padding: 8 12;
|
|
background-color: transparent;
|
|
text-color: @fg-alt;
|
|
}
|
|
|
|
element selected {
|
|
text-color: @fg-selected;
|
|
background-color: @bg-selected;
|
|
}
|
|
|
|
element-text {
|
|
background-color: transparent;
|
|
text-color: inherit;
|
|
vertical-align: 0.5;
|
|
}
|
|
|
|
element-icon {
|
|
size: 30;
|
|
padding: 0 10 0 0;
|
|
background-color: transparent;
|
|
}
|
|
|
|
entry {
|
|
padding: 12;
|
|
background-color: @bg-alt;
|
|
text-color: @fg-alt;
|
|
font: "Hack 28";
|
|
}
|
|
|
|
inputbar {
|
|
children: [prompt, entry];
|
|
background-color: @bg;
|
|
}
|
|
|
|
listview {
|
|
background-color: @bg;
|
|
columns: 1;
|
|
lines: 10;
|
|
}
|
|
|
|
mainbox {
|
|
children: [inputbar, listview];
|
|
background-color: @bg;
|
|
}
|
|
|
|
prompt {
|
|
enabled: true;
|
|
padding: 12 0 0 12;
|
|
background-color: @bg-alt;
|
|
text-color: @fg;
|
|
font: "Hack 30";
|
|
}
|
|
|
|
/* vim: ft=sass
|