home/.config/rofi/config.rasi

109 lines
1.7 KiB
CSS

/*
* config.rasi
* Copyright (C) 2020 Vintage Salt <rehashedsalt@cock.li>
*
* Distributed under terms of the MIT License
*
* See rofi-theme(5) for documentation
*/
configuration {
matching: "normal";
show-icons: true;
icon-theme: "Papirus-Dark";
modi: "drun,ssh,window";
height: 60%;
width: 50%;
}
* {
background: #232629;
background-alt: #31363b;
foreground: #eff0f1;
foreground-alt: #ed1515;
blue-dark: #1abc9c;
blue: #1d99f3;
yellow: #fdbc4b;
text-color: @foreground;
background-color: @background;
font: "IBM Plex Sans 10";
}
#window {
location: center;
anchor: center;
border-color: @background-alt;
background-color: @background;
border: 4px;
border-radius: 16px;
}
#inputbar {
padding: 2em;
}
#case-indicator {
text-color: @foreground-alt;
}
#prompt {
font: "IBM Plex Sans Bold 16";
padding: 0 1em 0 0;
}
#entry {
font: "IBM Plex Sans 16";
}
#message {
padding: 4px;
}
#textbox {
padding: 4px 12px 4px 12px;
font-color: @foreground-alt;
}
#listview {
columns: 6;
lines: 4;
padding: 1em;
}
#element-icon {
size: 64px;
}
#element {
orientation: vertical;
padding: 1em;
border-radius: 8px;
}
#element normal active {
text-color: @blue-dark;
}
#element normal urgent {
text-color: @yellow;
}
#element selected normal {
background-color: @blue;
text-color: @background;
}
#element selected active {
background-color: @blue-dark;
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
*/