54 lines
1.2 KiB
Text
54 lines
1.2 KiB
Text
|
/**
|
||
|
* ROFI Color theme
|
||
|
* NAME: dt-dmenu.rasi
|
||
|
* DESCRIPTION: This is a horizontal prompt similar to dmenu.
|
||
|
* AUTHOR: Derek Taylor (DT)
|
||
|
*/
|
||
|
|
||
|
* {
|
||
|
background-color: #282c34;
|
||
|
border-color: #282c34;
|
||
|
text-color: #bbc2cf;
|
||
|
height: 20px;
|
||
|
font: "Mononoki Nerd Font 9";
|
||
|
prompt-font: "Mononoki Nerd Font 9";
|
||
|
prompt-background: #51afef;
|
||
|
prompt-foreground: #282c34;
|
||
|
prompt-padding: 2px;
|
||
|
selected-normal-background: #ae3f3e;
|
||
|
selected-normal-foreground: #ffffff;
|
||
|
}
|
||
|
#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;
|
||
|
lines: 100;
|
||
|
}
|
||
|
#entry {
|
||
|
padding: 2px;
|
||
|
expand: false;
|
||
|
width: 10em;
|
||
|
}
|
||
|
#element {
|
||
|
padding: 2px 8px;
|
||
|
}
|
||
|
#element selected {
|
||
|
background-color: @selected-normal-background;
|
||
|
text-color: @selected-normal-foreground;
|
||
|
}
|