Rofi: Re-theme to breeze dark

Credit to MonsieurBedard
This commit is contained in:
Salt 2020-02-28 02:25:01 -06:00
parent 0115f5e6c4
commit 974e3fbaa1

View File

@ -1,122 +1,147 @@
/* rehashedsalt's Gruvbox rofi theme /*
* Distributed under the terms of the MIT License * breeze-dark.rasi
* github.com/rehashedsalt * rofi theme inspired by plasma breeze
* * Theme by MonsieurBedard
* See rofi-theme(5) for documentation * Minor tweaking done by rehashedsalt
*
*/ */
configuration { configuration {
/* Tweaks */
matching: "fuzzy"; matching: "fuzzy";
show-icons: true; show-icons: true;
drun-icon-theme: "Papirus-Color"; drun-icon-theme: "breeze-dark";
modi: "drun,ssh,window"; modi: "drun,ssh,window";
sidebar-mode: false; width: 24;
yoffset: 0;
xoffset: 0;
width: 32;
} }
* { * {
background: #383c4a; /* Base */
background-alt: #404552; default-background: rgba(49, 52, 56, 100%); // <- change this for transparency
border: #2b2e39; default-foreground: rgba(239, 240, 241, 100%);
foreground: #fffcf6; default-border: rgba(97, 101, 105, 100%);
foreground-alt: #7c818c; alternative-background: rgba(35, 38, 41, 100%);
blue-dark: #457dbf; invisible: rgba(0, 0, 0, 0%);
blue: #5294e2;
yellow: #b58900;
text-color: @foreground; /* Colors */
background-color: @background-alt; hard-blue: rgba(42, 139, 218, 100%);
light-blue: rgba(24, 53, 69, 100%);
hard-red: rgba(141, 58, 80, 100%);
light-red: rgba(77, 31, 37, 100%);
hard-green: rgba(39, 161, 69, 100%);
light-green: rgba(19, 55, 35, 100%);
/* Universal */
background-color: @invisible;
border-color: @default-border;
font: "Noto Sans 10"; font: "Noto Sans 10";
text-color: @default-foreground;
} }
#window { #window {
background-color: @default-background;
border: 0 1 1 1;
border-radius: 0 0 3 3;
border-color: @default-border;
padding: 7;
/* Tweaks */
location: north; location: north;
anchor: north; anchor: north;
border-color: @border;
background-color: @background-alt;
border: 0px 1px 1px 1px;
border-radius: 0px 0px 3px 3px;
height: 50%;
width: 520px;
} }
#inputbar { #mainbox {
padding: 14px; border: 0;
border: 0px 0px 1px 0px; padding: 0;
border-color: @border; }
background-color: @background;
}
#case-indicator { #message {
text-color: @foreground-alt; border: 1;
background-color: @background; border-radius: 3;
} padding: 5;
background-color: @alternative-background;
}
#prompt { #textbox {
padding: 0px 8px 0px 0px; background-color: @entry-background;
text-color: @foreground; }
background-color: @background;
}
#entry { #listview {
background-color: @background; fixed-height: 0;
} spacing: 2;
scrollbar: false;
padding: 2 0 0;
}
#message { #element {
padding: 4px; padding: 5;
} border: 1;
border-radius: 3;
#textbox { border-color: @invisible;
padding: 4px 12px 4px 12px; }
font-color: @foreground-alt;
}
#listview { #element.normal.normal {
padding: 4px; background-color: @invisible;
spacing: 0px; }
}
#element { #element.normal.urgent {
border-radius: 3px; background-color: @light-red;
padding: 4px; }
}
#element normal active { #element.normal.active {
text-color: @blue-dark; background-color: @light-green;
} }
#element normal urgent { #element.selected.normal {
text-color: @yellow; background-color: @light-blue;
} border-color: @hard-blue;
}
#element selected normal { #element.selected.urgent {
background-color: @blue; background-color: @light-red;
} border-color: @hard-red;
}
#element selected active { #element.selected.active {
background-color: @blue-dark; background-color: @light-green;
} border-color: @hard-green;
}
#element selected urgent { #mode-switcher {
background-color: @yellow; spacing: 0;
} }
#sidebar { #button {
} border: 0 0 3 0;
border-color: @invisible;
padding: 3;
}
#button { #button.selected {
padding: 8px; border-color: @hard-blue;
} }
#button selected { #inputbar {
background-color: @background-alt; spacing: 0;
} padding: 1;
}
#case-indicator {
spacing: 0;
padding: 3px;
background-color: @alternative-background;
border: 1 1 1 0;
border-radius: 0 2 2 0;
}
#entry {
background-color: @alternative-background;
padding: 3px;
border: 1 0 1 1;
border-radius: 2 0 0 2;
}
#prompt {
padding: 3 7 3 0;
}
/* vim:ft=css
*/