dotfiles/dot_config/rofi/config.rasi

141 lines
2.2 KiB
Text
Raw Normal View History

2022-07-30 07:17:12 +02:00
@import "colors.rasi"
* {
font: "Berkeley Mono 12";
foreground: @text;
background: @base;
2022-07-30 07:17:12 +02:00
active-background: @pink;
urgent-background: @red;
2022-07-30 07:17:12 +02:00
selected-background: @surface2;
selected-urgent-background: @surface2;
selected-active-background: @surface2;
2022-07-30 07:17:12 +02:00
}
#window {
background-color: @background;
border-color: @pink;
2022-07-30 07:17:12 +02:00
border: 2;
padding: 0;
}
#mainbox {
border: 0;
padding: 0;
}
#message {
border: 1px;
border-color: @crust;
padding: 1px;
2022-07-30 07:17:12 +02:00
}
#textbox {
text-color: @foreground;
}
#listview {
fixed-height: 0;
border: 1 0 0;
border-color: @rosewater;
scrollbar: true;
padding: 0;
2022-07-30 07:17:12 +02:00
}
#element {
border: 0;
padding: 0px 10px;
}
#element.normal.normal {
background-color: @base;
text-color: @text;
2022-07-30 07:17:12 +02:00
}
#element.normal.active {
background-color: @surface2;
text-color: @text;
2022-07-30 07:17:12 +02:00
}
#element.selected.normal {
background-color: @selected-background;
text-color: @text;
2022-07-30 07:17:12 +02:00
}
#element.selected.active {
background-color: @surface2;
text-color: @crust;
2022-07-30 07:17:12 +02:00
}
#element.alternate.normal {
background-color: @base;
text-color: @text;
2022-07-30 07:17:12 +02:00
}
#element.alternate.active {
background-color: @active-background;
text-color: @foreground;
}
#element.normal.urgent {
background-color: @crust;
text-color: @red;
}
#element.selected.urgent {
background-color: @selected-urgent-background;
text-color: @text;
}
#element.alternate.urgent {
background-color: @urgent-background;
text-color: @text;
}
2022-07-30 07:17:12 +02:00
#scrollbar {
background-color: @crust;
2022-07-30 07:17:12 +02:00
width: 2px ;
border: 0;
handle-width: 8px ;
padding: 0;
}
2022-07-30 07:17:12 +02:00
#sidebar {
border: 2px dash 0px 0px ;
border-color: @crust;
2022-07-30 07:17:12 +02:00
}
2022-07-30 07:17:12 +02:00
#button.selected {
background-color: @base;
text-color: @text;
2022-07-30 07:17:12 +02:00
}
2022-07-30 07:17:12 +02:00
#inputbar {
spacing: 0;
text-color: @text;
2022-07-30 07:17:12 +02:00
padding: 1px ;
}
#case-indicator {
spacing: 0;
text-color: @text;
2022-07-30 07:17:12 +02:00
}
#entry {
spacing: 0;
text-color: @text;
2022-07-30 07:17:12 +02:00
}
#prompt {
spacing: 0;
text-color: @pink;
2022-07-30 07:17:12 +02:00
}
#inputbar {
children: [
prompt,
textbox-prompt-colon,
entry,
case-indicator
];
2022-07-30 07:17:12 +02:00
}
2022-07-30 07:17:12 +02:00
#textbox-prompt-colon {
expand: false;
str: ":";
margin: 0 0.5em 0 0;
text-color: @pink;
2022-07-30 07:17:12 +02:00
}
/* vim:ft=css */