mirror of
https://github.com/davatorium/rofi.git
synced 2024-10-27 05:23:18 -04:00
95 lines
2.3 KiB
Text
95 lines
2.3 KiB
Text
//!-------------------------------------------------------------------------------
|
|
//! Rofi color theme
|
|
//!
|
|
//! Based on the Gruvbox color scheme for Vim by morhetz
|
|
//! https://github.com/morhetz/gruvbox
|
|
//!
|
|
//! File: gruvbox-light-soft.theme
|
|
//! Desc: Gruvbox light (soft contrast) color theme for Rofi
|
|
//! Author: bardisty <b@bah.im>
|
|
//! Source: https://github.com/bardisty/gruvbox-rofi
|
|
//! Modified: Sat Oct 22 2016 03:11:25 PDT -0700
|
|
//!-------------------------------------------------------------------------------
|
|
* {
|
|
spacing: 2;
|
|
background: #00000000;
|
|
}
|
|
#window {
|
|
border: 2;
|
|
foreground: #FF7C6F64;
|
|
padding: 5;
|
|
background: #FFF2E5BC;
|
|
}
|
|
#window.mainbox {
|
|
border: 0;
|
|
padding: 0;
|
|
}
|
|
#window.mainbox.message.box {
|
|
border: 2px 0px 0px ;
|
|
padding: 2px 0px 0px ;
|
|
}
|
|
#window.mainbox.message.normal {
|
|
foreground: #FF3C3836;
|
|
background: #FFF2E5BC;
|
|
}
|
|
#window.mainbox.listview {
|
|
fixed-height: 1;
|
|
border: 2px 0px 0px ;
|
|
columns: 1;
|
|
padding: 2px 0px 0px ;
|
|
}
|
|
#window.mainbox.listview.element {
|
|
border: 0;
|
|
}
|
|
#window.mainbox.listview.element.normal.normal {
|
|
foreground: #FF3C3836;
|
|
background: #FFF2E5BC;
|
|
}
|
|
#window.mainbox.listview.element.normal.urgent {
|
|
foreground: #FFF2E5BC;
|
|
background: #FFCC241D;
|
|
}
|
|
#window.mainbox.listview.element.normal.active {
|
|
foreground: #FFF2E5BC;
|
|
background: #FFB57614;
|
|
}
|
|
#window.mainbox.listview.element.selected.normal {
|
|
foreground: #FF282828;
|
|
background: #FFD5C4A1;
|
|
}
|
|
#window.mainbox.listview.element.selected.urgent {
|
|
foreground: #FFF2E5BC;
|
|
background: #FFFB4934;
|
|
}
|
|
#window.mainbox.listview.element.selected.active {
|
|
foreground: #FFF2E5BC;
|
|
background: #FFD79921;
|
|
}
|
|
#window.mainbox.listview.element.alternate.normal {
|
|
foreground: #FF3C3836;
|
|
background: #FFEBDBB2;
|
|
}
|
|
#window.mainbox.listview.element.alternate.urgent {
|
|
foreground: #FFF2E5BC;
|
|
background: #FFCC241D;
|
|
}
|
|
#window.mainbox.listview.element.alternate.active {
|
|
foreground: #FFF2E5BC;
|
|
background: #FFB57614;
|
|
}
|
|
#window.mainbox.listview.scrollbar {
|
|
border: 0;
|
|
padding: 0;
|
|
}
|
|
#window.mainbox.sidebar.box {
|
|
border: 2px 0px 0px ;
|
|
}
|
|
#window.mainbox.inputbar {
|
|
spacing: 0;
|
|
}
|
|
#window.mainbox.inputbar.box {
|
|
}
|
|
#window.mainbox.inputbar.normal {
|
|
foreground: #FF3C3836;
|
|
background: #FFF2E5BC;
|
|
}
|