home/.config/rofi/config.rasi

109 lines
1.8 KiB
Plaintext
Raw Normal View History

2020-09-27 10:49:53 -05:00
/*
* config.rasi
* Copyright (C) 2020 Vintage Salt <rehashedsalt@cock.li>
*
* Distributed under terms of the MIT License
2020-05-31 21:08:15 -05:00
*
2020-09-27 10:49:53 -05:00
* See rofi-theme(5) for documentation
2018-05-18 01:37:53 -05:00
*/
configuration {
2020-09-27 10:49:53 -05:00
matching: "normal";
2018-05-18 01:37:53 -05:00
show-icons: true;
icon-theme: "Papirus-Gruvbox-Dark";
2018-05-18 01:37:53 -05:00
modi: "drun,ssh,window";
}
* {
background: #282828;
background-alt: #32302f;
foreground: #ebdbb2;
foreground-alt: #fb4934;
yellow: #fabd2f;
blue: #83a598;
cyan: #8ec07c;
2020-05-31 21:08:15 -05:00
text-color: @foreground;
background-color: @background;
2020-11-02 19:09:46 -06:00
font: "IBM Plex Sans 10";
2018-05-18 01:37:53 -05:00
}
#window {
location: southwest;
anchor: southwest;
2020-05-31 21:08:15 -05:00
border-color: @background-alt;
background-color: @background;
border: 4px 4px 0 0;
height: 60%;
width: 30%;
2020-05-31 21:08:15 -05:00
}
#inputbar {
background-color: @background-alt;
padding: 1em;
2020-05-31 21:08:15 -05:00
}
#case-indicator {
enabled: false;
background-color: @background-alt;
2020-05-31 21:08:15 -05:00
text-color: @foreground-alt;
}
#prompt {
enabled: false;
background-color: @background-alt;
font: "IBM Plex Sans Medium 12";
padding: 0.5em;
2020-05-31 21:08:15 -05:00
}
2020-09-27 10:49:53 -05:00
#entry {
background-color: @background-alt;
font: "IBM Plex Sans 12";
padding: 0.5em;
2020-09-27 10:49:53 -05:00
}
2020-05-31 21:08:15 -05:00
#message {
padding: 4px;
}
#textbox {
padding: 4px 12px 4px 12px;
font-color: @foreground-alt;
}
#listview {
2020-09-27 10:49:53 -05:00
padding: 1em;
2020-05-31 21:08:15 -05:00
}
#element {
2020-09-27 10:49:53 -05:00
orientation: vertical;
2020-12-06 10:39:15 -06:00
padding: 1em;
2020-05-31 21:08:15 -05:00
}
#element normal active {
text-color: @cyan;
2020-05-31 21:08:15 -05:00
}
#element normal urgent {
text-color: @yellow;
}
#element selected normal {
background-color: @blue;
text-color: @background;
}
#element selected active {
background-color: @cyan;
2020-05-31 21:08:15 -05:00
text-color: @background;
}
#element selected urgent {
background-color: @yellow;
text-color: @background;
}
#sidebar {
}
#button {
padding: 8px;
}
#button selected {
background-color: @background-alt;
}
/* vim:ft=css
2020-09-27 10:49:53 -05:00
*/