123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- /* ==========================================================================
- 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
- ========================================================================== */
- * {
- /* 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;
- normal-foreground: @foreground;
- alternate-normal-background: @gruvbox-light-bg0;
- alternate-normal-foreground: @foreground;
- 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;
- alternate-active-foreground: @active-foreground;
- 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;
- }
- @import "gruvbox-common.rasi"
|