Files
dotfiles/.config/rofi/themes/dmenu-dracula.rasi
Sravan Balaji 392e8d9b4d Re-Write Dotfiles as Org Doc w/ Tangle
- Restore previously removed window-manager specific files
- Collect dotfiles into one org document
2021-05-09 18:52:46 -04:00

44 lines
772 B
Plaintext

/**
* ROFI Color theme: dmenu-dracula
* User: balajsra
* Copyright: Sravan Balaji
*/
* {
background-color: #282a36;
text-color: #f8f8f2;
font: "NotoSans Nerd Font 12";
}
#window {
anchor: north;
location: north;
width: 100%;
padding: 2px 5px 2px 5px; /* top right bottom left */
children: [ horibox ];
}
#horibox {
orientation: horizontal;
children: [ prompt, entry, listview ];
}
#listview {
layout: horizontal;
spacing: 10px;
lines: 100;
}
#entry {
expand: false;
width: 10em;
}
#element {
padding: 1px 5px 1px 5px; /* top right bottom left */
}
#element selected {
background-color: #bd93f9;
text-color: #282a36;
}