Add dmenu theme

This commit is contained in:
Marty Oehme 2019-09-05 13:03:51 +02:00
parent 199fbdae4d
commit 16cb8f092e
3 changed files with 56 additions and 0 deletions

View 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
}

View 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;
}

View file

@ -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;