dotfiles/config/rofi/themes/nten-dmenu.rasi
2021-03-29 19:16:45 +03:00

41 lines
930 B
Text

* {
background-color: #262A2B;
text-color: #93A1A1;
font: "JetbrainsMono Nerd Font 9";
prompt-padding: 4px;
selected-background: #008DCD;
selected-foreground: #ffffff;
}
window {
anchor: north;
location: north;
width: 100%;
padding: 0px;
children: [ horibox ];
}
horibox {
orientation: horizontal;
height: 24px;
children: [ prompt, entry, listview ];
}
prompt {
padding: @prompt-padding;
background-color: @selected-background;
text-color: @selected-foreground;
font: @font;
}
listview {
layout: horizontal;
spacing: 0px;
lines: 100;
}
entry {
padding: 4px 4px;
expand: false;
width: 170px;
}
element { padding: 4px 8px; }
element selected {
background-color: @selected-background;
text-color: @selected-foreground;
}