rofi-themes/Official Themes/dmenu.rasi

44 lines
620 B
Text
Raw Normal View History

2017-10-19 16:28:30 +02:00
/**
* ROFI Color theme
* User: Qball
* Copyright: Dave Davenport
*/
2020-10-30 14:58:16 +01:00
2017-10-19 16:28:30 +02:00
* {
2020-10-30 14:58:16 +01:00
background-color: #222222;
text-color: white;
2017-10-19 16:28:30 +02:00
}
#window {
anchor: north;
location: north;
children: [ horibox ];
2020-10-30 14:58:16 +01:00
width: 100%;
padding:0px;
2017-10-19 16:28:30 +02:00
}
#horibox {
orientation: horizontal;
children: [ prompt, entry, listview ];
}
#listview {
layout: horizontal;
spacing: 5px;
lines: 100;
}
#entry {
expand: false;
width: 10em;
}
#element {
2020-10-30 14:58:16 +01:00
padding: 0.1em 0.5em 0.1em 0.5em;
2017-10-19 16:28:30 +02:00
}
2020-10-30 14:58:16 +01:00
2017-10-19 16:28:30 +02:00
#element selected {
2020-10-30 14:58:16 +01:00
text-color: white;
background-color: #005577;
2017-10-19 16:28:30 +02:00
}