Redoing my rofi prompts.

This commit is contained in:
Derek Taylor 2020-12-09 17:05:00 -06:00
parent 205c9571c0
commit 0191650b77
2 changed files with 50 additions and 0 deletions

View File

@ -0,0 +1,50 @@
/**
* ROFI Color theme
* NAME: dt-dmenu.rasi
* AUTHOR: Derek Taylor (DT)
*/
* {
background-color: #282c34;
border-color: #282c34;
text-color: #bbc2cf;
font: "SauceCodePro Nerd Font Mono 9";
prompt-font: "Ubuntu Bold 9";
prompt-background: #51afef;
prompt-foreground: #282c34;
prompt-padding: 4px;
}
#window {
anchor: north;
location: north;
width: 100%;
padding: 0px;
children: [ horibox ];
}
#horibox {
orientation: horizontal;
children: [ prompt, entry, listview ];
}
#prompt {
padding: @prompt-padding;
background-color: @prompt-background;
text-color: @prompt-foreground;
font: @prompt-font;
}
#listview {
layout: horizontal;
spacing: 2px;
lines: 100;
}
#entry {
padding: 4px 4px;
expand: false;
width: 10em;
}
#element {
padding: 4px 8px;
}
#element selected {
background-color: #ae3f3e;
text-color: #ffffff;
}