Add dmenu theme
This commit is contained in:
parent
199fbdae4d
commit
16cb8f092e
3 changed files with 56 additions and 0 deletions
11
.config/rofi/themes/colorschemes/dmenu.rasi
Normal file
11
.config/rofi/themes/colorschemes/dmenu.rasi
Normal file
|
@ -0,0 +1,11 @@
|
|||
* {
|
||||
accent: #ffffff; // anything which should be accented
|
||||
background: #000000; // rofi background color
|
||||
background-nofocus: #000000;// bg of items not focused
|
||||
background-focus: #4682b4; // bg of item focused
|
||||
foreground: #ffffff; // rofi foreground color
|
||||
foreground-nofocus: #ffffff;// fg of items not focused
|
||||
foreground-focus: #000000; // fg of items focused
|
||||
on: #6B9BC3; // color to signify something is turned on
|
||||
off: #1D354A; // color to signify something is turned off
|
||||
}
|
44
.config/rofi/themes/layouts/dmenu.rasi
Normal file
44
.config/rofi/themes/layouts/dmenu.rasi
Normal file
|
@ -0,0 +1,44 @@
|
|||
/**
|
||||
* Layout for the horizontal top bar
|
||||
* dmenu we all know and love
|
||||
*
|
||||
*/
|
||||
|
||||
@import "../settings.rasi"
|
||||
* {
|
||||
background-color: @background;
|
||||
border-color: @accent;
|
||||
text-color: @foreground;
|
||||
font: @text-font;
|
||||
}
|
||||
|
||||
#window {
|
||||
anchor: north;
|
||||
location: north;
|
||||
width: 100%;
|
||||
padding: 4px;
|
||||
children: [ horizbox ];
|
||||
}
|
||||
|
||||
#horizbox {
|
||||
orientation: horizontal;
|
||||
children: [ prompt, entry, listview ];
|
||||
}
|
||||
|
||||
#listview {
|
||||
layout: horizontal;
|
||||
spacing: 5px;
|
||||
lines: 100;
|
||||
}
|
||||
|
||||
#entry {
|
||||
expand: false;
|
||||
width: 10em;
|
||||
}
|
||||
|
||||
#element {
|
||||
padding: 0px 2px;
|
||||
}
|
||||
#element selected {
|
||||
background-color: @background-focus;
|
||||
}
|
|
@ -18,6 +18,7 @@ children: [ listview ];
|
|||
layout: horizontal;
|
||||
}
|
||||
#element {
|
||||
option-element-padding: 88px 100px 81px 4px;
|
||||
padding: @option-element-padding;
|
||||
background-color: @background-nofocus;
|
||||
text-color: @foreground-nofocus;
|
||||
|
|
Loading…
Reference in a new issue