2018-02-25 09:18:37 -05:00
|
|
|
/* ==========================================================================
|
|
|
|
Rofi color theme
|
|
|
|
|
|
|
|
Based on the Gruvbox color scheme for Vim by morhetz
|
|
|
|
https://github.com/morhetz/gruvbox
|
|
|
|
|
|
|
|
File: gruvbox-light-hard.rasi
|
|
|
|
Desc: Gruvbox light (hard contrast) color theme for Rofi
|
|
|
|
Author: bardisty <b@bah.im>
|
|
|
|
Source: https://github.com/bardisty/gruvbox-rofi
|
|
|
|
Modified: Mon Feb 12 2018 06:04:48 PST -0800
|
|
|
|
========================================================================== */
|
2017-10-01 06:55:42 -04:00
|
|
|
|
2017-01-19 03:19:14 -05:00
|
|
|
* {
|
2018-02-25 09:18:37 -05:00
|
|
|
/* Theme settings */
|
|
|
|
highlight: bold italic;
|
|
|
|
scrollbar: true;
|
|
|
|
|
|
|
|
/* Gruvbox light colors */
|
|
|
|
gruvbox-light-bg0-hard: #f9f5d7;
|
|
|
|
gruvbox-light-bg0: #fbf1c7;
|
|
|
|
gruvbox-light-bg1: #ebdbb2;
|
|
|
|
gruvbox-light-fg0: #282828;
|
|
|
|
gruvbox-light-fg1: #3c3836;
|
|
|
|
gruvbox-light-red-dark: #9d0006;
|
|
|
|
gruvbox-light-red-light: #cc241d;
|
|
|
|
gruvbox-light-yellow-dark: #b57614;
|
|
|
|
gruvbox-light-yellow-light: #d79921;
|
|
|
|
gruvbox-light-gray: #7c6f64;
|
|
|
|
|
|
|
|
/* Theme colors */
|
|
|
|
background: @gruvbox-light-bg0-hard;
|
|
|
|
background-color: @background;
|
|
|
|
foreground: @gruvbox-light-fg1;
|
|
|
|
border-color: @gruvbox-light-gray;
|
|
|
|
separatorcolor: @border-color;
|
|
|
|
scrollbar-handle: @border-color;
|
|
|
|
|
|
|
|
normal-background: @background;
|
2017-09-09 08:50:23 -04:00
|
|
|
normal-foreground: @foreground;
|
2018-02-25 09:18:37 -05:00
|
|
|
alternate-normal-background: @gruvbox-light-bg0;
|
2017-09-09 08:50:23 -04:00
|
|
|
alternate-normal-foreground: @foreground;
|
2018-02-25 09:18:37 -05:00
|
|
|
selected-normal-background: @gruvbox-light-bg1;
|
|
|
|
selected-normal-foreground: @gruvbox-light-fg0;
|
|
|
|
|
|
|
|
active-background: @gruvbox-light-yellow-dark;
|
|
|
|
active-foreground: @background;
|
|
|
|
alternate-active-background: @active-background;
|
2017-09-09 08:50:23 -04:00
|
|
|
alternate-active-foreground: @active-foreground;
|
2018-02-25 09:18:37 -05:00
|
|
|
selected-active-background: @gruvbox-light-yellow-light;
|
|
|
|
selected-active-foreground: @active-foreground;
|
|
|
|
|
|
|
|
urgent-background: @gruvbox-light-red-dark;
|
|
|
|
urgent-foreground: @background;
|
|
|
|
alternate-urgent-background: @urgent-background;
|
|
|
|
alternate-urgent-foreground: @urgent-foreground;
|
|
|
|
selected-urgent-background: @gruvbox-light-red-light;
|
|
|
|
selected-urgent-foreground: @urgent-foreground;
|
2017-01-19 03:19:14 -05:00
|
|
|
}
|
2018-02-25 09:18:37 -05:00
|
|
|
|
|
|
|
@import "gruvbox-common.rasi"
|
|
|
|
|