1
0
Fork 0
mirror of https://github.com/davatorium/rofi.git synced 2025-07-31 21:59:25 -04:00

Update shipped themes.

This commit is contained in:
Dave Davenport 2017-09-09 14:50:23 +02:00
parent b24660a204
commit e01aefd773
29 changed files with 2486 additions and 1679 deletions

View file

@ -40,9 +40,9 @@
#message { #message {
border: 1px dash 0px 0px ; border: 1px dash 0px 0px ;
border-color: @separatorcolor; border-color: @separatorcolor;
padding: 2px 0px 0px ; padding: 1px ;
} }
#message.normal { #textbox {
text-color: @foreground; text-color: @foreground;
} }
#listview { #listview {

View file

@ -41,9 +41,9 @@
#message { #message {
border: 2px 0px 0px ; border: 2px 0px 0px ;
border-color: @separatorcolor; border-color: @separatorcolor;
padding: 2px 0px 0px ; padding: 1px ;
} }
#message.normal { #textbox {
text-color: @foreground; text-color: @foreground;
} }
#listview { #listview {

View file

@ -73,7 +73,7 @@ const char *default_theme =
" padding: 2px 0px 0px ;" " padding: 2px 0px 0px ;"
" border-color: @separatorcolor;" " border-color: @separatorcolor;"
"}" "}"
"#message normal {" "#textbox {"
" text-color: @foreground;" " text-color: @foreground;"
"}" "}"
"#listview {" "#listview {"

View file

@ -856,11 +856,7 @@ void rofi_theme_convert_old ( void )
} }
/* Line Padding */ /* Line Padding */
{ {
char *str = g_strdup_printf ( "#element { padding: %dpx;}", config.line_padding ); char *str = g_strdup_printf ( "#element, inputbar, message { padding: %dpx;}", config.line_padding );
rofi_theme_parse_string ( str );
g_free ( str );
// inputbar
str = g_strdup_printf ( "#inputbar { padding: %dpx;}", config.line_padding );
rofi_theme_parse_string ( str ); rofi_theme_parse_string ( str );
g_free ( str ); g_free ( str );
} }

View file

@ -1,89 +1,127 @@
//! ------------------------------------------------------------------------------
//! ROFI Color theme
//! Based on Adapta-Nokto GTK theme (https://github.com/adapta-project/adapta-gtk-theme)
//! User: PyGeek03
//! Copyright: PyGeek03
//! ------------------------------------------------------------------------------
* { * {
spacing: 2; selected-normal-foreground: rgba ( 250, 251, 252, 100 % );
background: #00000000; foreground: rgba ( 250, 251, 252, 100 % );
normal-foreground: @foreground;
alternate-normal-background: rgba ( 69, 90, 100, 100 % );
red: rgba ( 220, 50, 47, 100 % );
selected-urgent-foreground: rgba ( 253, 246, 227, 100 % );
blue: rgba ( 38, 139, 210, 100 % );
urgent-foreground: rgba ( 255, 82, 82, 100 % );
alternate-urgent-background: rgba ( 69, 90, 100, 100 % );
active-foreground: rgba ( 0, 188, 212, 100 % );
lightbg: rgba ( 238, 232, 213, 100 % );
selected-active-foreground: rgba ( 253, 246, 227, 100 % );
alternate-active-background: rgba ( 69, 90, 100, 100 % );
background: rgba ( 58, 76, 84, 100 % );
bordercolor: rgba ( 42, 55, 62, 100 % );
alternate-normal-foreground: @foreground;
normal-background: rgba ( 69, 90, 100, 100 % );
lightfg: rgba ( 88, 104, 117, 100 % );
selected-normal-background: rgba ( 0, 188, 212, 100 % );
border-color: @foreground;
spacing: 2;
separatorcolor: rgba ( 195, 198, 200, 100 % );
urgent-background: rgba ( 69, 90, 100, 100 % );
selected-urgent-background: rgba ( 255, 82, 82, 100 % );
alternate-urgent-foreground: @urgent-foreground;
background-color: rgba ( 0, 0, 0, 0 % );
alternate-active-foreground: @active-foreground;
active-background: rgba ( 69, 90, 100, 100 % );
selected-active-background: rgba ( 0, 150, 136, 100 % );
} }
#window { #window {
border: 2; background-color: @background;
foreground: #C3C6C8FF; border: 1;
padding: 5; padding: 5;
background: #3A4C54FF;
} }
#window.mainbox { #mainbox {
border: 0; border: 0;
padding: 0; padding: 0;
} }
#window.mainbox.message.box { #message {
border: 2px 0px 0px ; border: 1px dash 0px 0px ;
padding: 2px 0px 0px ; border-color: @separatorcolor;
padding: 1px ;
} }
#window.mainbox.message.normal { #textbox {
foreground: #FAFBFCFF; text-color: @foreground;
background: #455A64FF;
} }
#window.mainbox.listview { #listview {
fixed-height: 1; fixed-height: 0;
border: 2px 0px 0px ; border: 2px dash 0px 0px ;
columns: 1; border-color: @separatorcolor;
spacing: 2px ;
scrollbar: true;
padding: 2px 0px 0px ; padding: 2px 0px 0px ;
} }
#window.mainbox.listview.element { #element {
border: 0;
}
#window.mainbox.listview.element.normal.normal {
foreground: #FAFBFCFF;
background: #455A64FF;
}
#window.mainbox.listview.element.normal.urgent {
foreground: #FF5252FF;
background: #455A64FF;
}
#window.mainbox.listview.element.normal.active {
foreground: #00BCD4FF;
background: #455A64FF;
}
#window.mainbox.listview.element.selected.normal {
foreground: #FAFBFCFF;
background: #00BCD4FF;
}
#window.mainbox.listview.element.selected.urgent {
foreground: #FDF6E3FF;
background: #FF5252FF;
}
#window.mainbox.listview.element.selected.active {
foreground: #FDF6E3FF;
background: #009688FF;
}
#window.mainbox.listview.element.alternate.normal {
foreground: #FAFBFCFF;
background: #455A64FF;
}
#window.mainbox.listview.element.alternate.urgent {
foreground: #FF5252FF;
background: #455A64FF;
}
#window.mainbox.listview.element.alternate.active {
foreground: #00BCD4FF;
background: #455A64FF;
}
#window.mainbox.listview.scrollbar {
border: 0; border: 0;
padding: 0; padding: 1px ;
} }
#window.mainbox.sidebar.box { #element.normal.normal {
border: 2px 0px 0px ; background-color: @normal-background;
text-color: @normal-foreground;
} }
#window.mainbox.inputbar { #element.normal.urgent {
spacing: 0; background-color: @urgent-background;
text-color: @urgent-foreground;
} }
#window.mainbox.inputbar.box { #element.normal.active {
background-color: @active-background;
text-color: @active-foreground;
} }
#window.mainbox.inputbar.normal { #element.selected.normal {
foreground: #FAFBFCFF; background-color: @selected-normal-background;
background: #455A64FF; text-color: @selected-normal-foreground;
}
#element.selected.urgent {
background-color: @selected-urgent-background;
text-color: @selected-urgent-foreground;
}
#element.selected.active {
background-color: @selected-active-background;
text-color: @selected-active-foreground;
}
#element.alternate.normal {
background-color: @alternate-normal-background;
text-color: @alternate-normal-foreground;
}
#element.alternate.urgent {
background-color: @alternate-urgent-background;
text-color: @alternate-urgent-foreground;
}
#element.alternate.active {
background-color: @alternate-active-background;
text-color: @alternate-active-foreground;
}
#scrollbar {
width: 4px ;
border: 0;
handle-width: 8px ;
padding: 0;
}
#sidebar {
border: 2px dash 0px 0px ;
border-color: @separatorcolor;
}
#button.selected {
background-color: @selected-normal-background;
text-color: @selected-normal-foreground;
}
#inputbar {
spacing: 0;
text-color: @normal-foreground;
padding: 1px ;
}
#case-indicator {
spacing: 0;
text-color: @normal-foreground;
}
#entry {
spacing: 0;
text-color: @normal-foreground;
}
#prompt {
spacing: 0;
text-color: @normal-foreground;
} }

View file

@ -1,89 +1,127 @@
//! ------------------------------------------------------------------------------
//! ROFI Color theme
//! User: Sergio Morales
//! Copyright: Sergio Morales
//! ------------------------------------------------------------------------------
//! Use extended color scheme
* { * {
spacing: 2; selected-normal-foreground: rgba ( 255, 255, 255, 100 % );
background: #00000000; foreground: rgba ( 82, 93, 118, 100 % );
normal-foreground: @foreground;
alternate-normal-background: rgba ( 245, 245, 245, 100 % );
red: rgba ( 220, 50, 47, 100 % );
selected-urgent-foreground: rgba ( 220, 50, 47, 100 % );
blue: rgba ( 38, 139, 210, 100 % );
urgent-foreground: rgba ( 220, 50, 47, 100 % );
alternate-urgent-background: rgba ( 245, 245, 245, 100 % );
active-foreground: rgba ( 194, 202, 208, 100 % );
lightbg: rgba ( 238, 232, 213, 100 % );
selected-active-foreground: rgba ( 194, 202, 208, 100 % );
alternate-active-background: rgba ( 245, 245, 245, 100 % );
background: rgba ( 255, 255, 255, 100 % );
bordercolor: rgba ( 245, 245, 245, 100 % );
alternate-normal-foreground: @foreground;
normal-background: rgba ( 255, 255, 255, 100 % );
lightfg: rgba ( 88, 104, 117, 100 % );
selected-normal-background: rgba ( 82, 148, 226, 100 % );
border-color: @foreground;
spacing: 2;
separatorcolor: @foreground;
urgent-background: rgba ( 255, 255, 255, 100 % );
selected-urgent-background: rgba ( 82, 148, 226, 100 % );
alternate-urgent-foreground: @urgent-foreground;
background-color: rgba ( 0, 0, 0, 0 % );
alternate-active-foreground: @active-foreground;
active-background: rgba ( 255, 255, 255, 100 % );
selected-active-background: rgba ( 82, 148, 226, 100 % );
} }
#window { #window {
border: 2; background-color: @background;
foreground: #F5F5F5FF; border: 1;
padding: 5; padding: 5;
background: #FFFFFFFF;
} }
#window.mainbox { #mainbox {
border: 0; border: 0;
padding: 0; padding: 0;
} }
#window.mainbox.message.box { #message {
border: 2px 0px 0px ;
padding: 2px 0px 0px ;
}
#window.mainbox.message.normal {
foreground: #525D76FF;
background: #FFFFFFFF;
}
#window.mainbox.listview {
fixed-height: 1;
border: 2px 0px 0px ; border: 2px 0px 0px ;
columns: 1; border-color: @separatorcolor;
padding: 1px ;
}
#textbox {
text-color: @foreground;
}
#listview {
fixed-height: 0;
border: 2px 0px 0px ;
border-color: @separatorcolor;
spacing: 2px ;
scrollbar: true;
padding: 2px 0px 0px ; padding: 2px 0px 0px ;
} }
#window.mainbox.listview.element { #element {
border: 0;
}
#window.mainbox.listview.element.normal.normal {
foreground: #525D76FF;
background: #FFFFFFFF;
}
#window.mainbox.listview.element.normal.urgent {
foreground: #DC322FFF;
background: #FFFFFFFF;
}
#window.mainbox.listview.element.normal.active {
foreground: #C2CAD0FF;
background: #FFFFFFFF;
}
#window.mainbox.listview.element.selected.normal {
foreground: #FFFFFFFF;
background: #5294E2FF;
}
#window.mainbox.listview.element.selected.urgent {
foreground: #DC322FFF;
background: #5294E2FF;
}
#window.mainbox.listview.element.selected.active {
foreground: #C2CAD0FF;
background: #5294E2FF;
}
#window.mainbox.listview.element.alternate.normal {
foreground: #525D76FF;
background: #F5F5F5FF;
}
#window.mainbox.listview.element.alternate.urgent {
foreground: #DC322FFF;
background: #F5F5F5FF;
}
#window.mainbox.listview.element.alternate.active {
foreground: #C2CAD0FF;
background: #F5F5F5FF;
}
#window.mainbox.listview.scrollbar {
border: 0; border: 0;
padding: 0; padding: 1px ;
} }
#window.mainbox.sidebar.box { #element.normal.normal {
border: 2px 0px 0px ; background-color: @normal-background;
text-color: @normal-foreground;
} }
#window.mainbox.inputbar { #element.normal.urgent {
spacing: 0; background-color: @urgent-background;
text-color: @urgent-foreground;
} }
#window.mainbox.inputbar.box { #element.normal.active {
background-color: @active-background;
text-color: @active-foreground;
} }
#window.mainbox.inputbar.normal { #element.selected.normal {
foreground: #525D76FF; background-color: @selected-normal-background;
background: #FFFFFFFF; text-color: @selected-normal-foreground;
}
#element.selected.urgent {
background-color: @selected-urgent-background;
text-color: @selected-urgent-foreground;
}
#element.selected.active {
background-color: @selected-active-background;
text-color: @selected-active-foreground;
}
#element.alternate.normal {
background-color: @alternate-normal-background;
text-color: @alternate-normal-foreground;
}
#element.alternate.urgent {
background-color: @alternate-urgent-background;
text-color: @alternate-urgent-foreground;
}
#element.alternate.active {
background-color: @alternate-active-background;
text-color: @alternate-active-foreground;
}
#scrollbar {
width: 4px ;
border: 0;
handle-width: 8px ;
padding: 0;
}
#sidebar {
border: 2px 0px 0px ;
border-color: @separatorcolor;
}
#button.selected {
background-color: @selected-normal-background;
text-color: @selected-normal-foreground;
}
#inputbar {
spacing: 0;
text-color: @normal-foreground;
padding: 1px ;
}
#case-indicator {
spacing: 0;
text-color: @normal-foreground;
}
#entry {
spacing: 0;
text-color: @normal-foreground;
}
#prompt {
spacing: 0;
text-color: @normal-foreground;
} }

View file

@ -1,94 +1,127 @@
//! ------------------------------------------------------------------------------
//! ROFI Color theme
//! User: qball
//! Copyright: Dave Davenport
//! ------------------------------------------------------------------------------
//! "Color scheme for normal row" Set from: File
* { * {
spacing: 2; selected-normal-foreground: rgba ( 2, 20, 63, 100 % );
background: #00000000; foreground: rgba ( 219, 223, 188, 100 % );
normal-foreground: @foreground;
alternate-normal-background: rgba ( 0, 0, 0, 0 % );
red: rgba ( 220, 50, 47, 100 % );
selected-urgent-foreground: rgba ( 2, 20, 63, 100 % );
blue: rgba ( 38, 139, 210, 100 % );
urgent-foreground: rgba ( 255, 129, 255, 100 % );
alternate-urgent-background: rgba ( 0, 0, 0, 0 % );
active-foreground: rgba ( 138, 196, 255, 100 % );
lightbg: rgba ( 238, 232, 213, 100 % );
selected-active-foreground: rgba ( 2, 20, 63, 100 % );
alternate-active-background: rgba ( 0, 0, 0, 0 % );
background: rgba ( 0, 0, 33, 87 % );
bordercolor: rgba ( 219, 223, 188, 100 % );
alternate-normal-foreground: @foreground;
normal-background: rgba ( 0, 0, 208, 0 % );
lightfg: rgba ( 88, 104, 117, 100 % );
selected-normal-background: rgba ( 219, 223, 188, 100 % );
border-color: @foreground;
spacing: 2;
separatorcolor: rgba ( 219, 223, 188, 100 % );
urgent-background: rgba ( 0, 0, 208, 0 % );
selected-urgent-background: rgba ( 255, 129, 127, 100 % );
alternate-urgent-foreground: @urgent-foreground;
background-color: rgba ( 0, 0, 0, 0 % );
alternate-active-foreground: @active-foreground;
active-background: rgba ( 0, 0, 208, 0 % );
selected-active-background: rgba ( 138, 196, 255, 100 % );
} }
#window { #window {
border: 2; background-color: @background;
foreground: #DBDFBCFF; border: 1;
padding: 5; padding: 5;
background: #000021DD;
} }
#window.mainbox { #mainbox {
border: 0; border: 0;
padding: 0; padding: 0;
} }
#window.mainbox.message.box { #message {
border: 2px 0px 0px ;
padding: 2px 0px 0px ;
}
#window.mainbox.message.normal {
foreground: #DBDFBCFF;
background: #00000000;
}
#window.mainbox.listview {
fixed-height: 1;
border: 2px 0px 0px ; border: 2px 0px 0px ;
columns: 1; border-color: @separatorcolor;
padding: 1px ;
}
#textbox {
text-color: @foreground;
}
#listview {
fixed-height: 0;
border: 2px 0px 0px ;
border-color: @separatorcolor;
spacing: 2px ;
scrollbar: true;
padding: 2px 0px 0px ; padding: 2px 0px 0px ;
} }
#window.mainbox.listview.element { #element {
border: 0;
}
#window.mainbox.listview.element.normal.normal {
foreground: #DBDFBCFF;
background: #00000000;
}
#window.mainbox.listview.element.normal.urgent {
foreground: #FF81FFFF;
background: #00000000;
}
#window.mainbox.listview.element.normal.active {
foreground: #8AC4FFFF;
background: #00000000;
}
#window.mainbox.listview.element.selected.normal {
foreground: #02143FFF;
background: #DBDFBCFF;
}
#window.mainbox.listview.element.selected.urgent {
foreground: #02143FFF;
background: #FF817FFF;
}
#window.mainbox.listview.element.selected.active {
foreground: #02143FFF;
background: #8AC4FFFF;
}
#window.mainbox.listview.element.alternate.normal {
foreground: #DBDFBCFF;
background: #00000000;
}
#window.mainbox.listview.element.alternate.urgent {
foreground: #FF81FFFF;
background: #00000000;
}
#window.mainbox.listview.element.alternate.active {
foreground: #8AC4FFFF;
background: #00000000;
}
#window.mainbox.listview.scrollbar {
border: 0; border: 0;
padding: 0; padding: 1px ;
} }
#window.mainbox.sidebar.box { #element.normal.normal {
border: 2px 0px 0px ; background-color: @normal-background;
text-color: @normal-foreground;
} }
#window.mainbox.sidebar.button selected{ #element.normal.urgent {
border: 2px 0px 0px ; background-color: @urgent-background;
foreground: #02143FFF; text-color: @urgent-foreground;
background: #DBDFBCFF;
} }
#window.mainbox.inputbar { #element.normal.active {
spacing: 0; background-color: @active-background;
text-color: @active-foreground;
} }
#window.mainbox.inputbar.box { #element.selected.normal {
background-color: @selected-normal-background;
text-color: @selected-normal-foreground;
} }
#window.mainbox.inputbar.normal { #element.selected.urgent {
foreground: #DBDFBCFF; background-color: @selected-urgent-background;
background: #00000000; text-color: @selected-urgent-foreground;
}
#element.selected.active {
background-color: @selected-active-background;
text-color: @selected-active-foreground;
}
#element.alternate.normal {
background-color: @alternate-normal-background;
text-color: @alternate-normal-foreground;
}
#element.alternate.urgent {
background-color: @alternate-urgent-background;
text-color: @alternate-urgent-foreground;
}
#element.alternate.active {
background-color: @alternate-active-background;
text-color: @alternate-active-foreground;
}
#scrollbar {
width: 4px ;
border: 0;
handle-width: 8px ;
padding: 0;
}
#sidebar {
border: 2px 0px 0px ;
border-color: @separatorcolor;
}
#button.selected {
background-color: @selected-normal-background;
text-color: @selected-normal-foreground;
}
#inputbar {
spacing: 0;
text-color: @normal-foreground;
padding: 1px ;
}
#case-indicator {
spacing: 0;
text-color: @normal-foreground;
}
#entry {
spacing: 0;
text-color: @normal-foreground;
}
#prompt {
spacing: 0;
text-color: @normal-foreground;
} }

View file

@ -1,89 +1,127 @@
//! ------------------------------------------------------------------------------
//! ROFI Color theme
//! User: qball
//! Copyright: Dave Davenport
//! ------------------------------------------------------------------------------
//! "Color scheme for normal row" Set from: File
* { * {
spacing: 2; selected-normal-foreground: rgba ( 232, 234, 246, 100 % );
background: #00000000; foreground: rgba ( 232, 234, 246, 100 % );
normal-foreground: @foreground;
alternate-normal-background: rgba ( 40, 53, 147, 100 % );
red: rgba ( 220, 50, 47, 100 % );
selected-urgent-foreground: rgba ( 183, 28, 28, 100 % );
blue: rgba ( 38, 139, 210, 100 % );
urgent-foreground: rgba ( 255, 205, 210, 100 % );
alternate-urgent-background: rgba ( 183, 28, 28, 100 % );
active-foreground: rgba ( 178, 235, 242, 100 % );
lightbg: rgba ( 238, 232, 213, 100 % );
selected-active-foreground: rgba ( 0, 96, 100, 100 % );
alternate-active-background: rgba ( 0, 96, 100, 100 % );
background: rgba ( 26, 35, 126, 100 % );
bordercolor: rgba ( 232, 234, 246, 100 % );
alternate-normal-foreground: @foreground;
normal-background: rgba ( 152, 108, 128, 3 % );
lightfg: rgba ( 88, 104, 117, 100 % );
selected-normal-background: rgba ( 63, 81, 181, 100 % );
border-color: @foreground;
spacing: 2;
separatorcolor: rgba ( 232, 234, 246, 100 % );
urgent-background: rgba ( 223, 110, 0, 6 % );
selected-urgent-background: rgba ( 255, 205, 210, 100 % );
alternate-urgent-foreground: @urgent-foreground;
background-color: rgba ( 0, 0, 0, 0 % );
alternate-active-foreground: @active-foreground;
active-background: rgba ( 223, 110, 0, 6 % );
selected-active-background: rgba ( 178, 235, 242, 100 % );
} }
#window { #window {
border: 2; background-color: @background;
foreground: #E8EAF6FF; border: 1;
padding: 5; padding: 5;
background: #1A237EFF;
} }
#window.mainbox { #mainbox {
border: 0; border: 0;
padding: 0; padding: 0;
} }
#window.mainbox.message.box { #message {
border: 2px 0px 0px ;
padding: 2px 0px 0px ;
}
#window.mainbox.message.normal {
foreground: #E8EAF6FF;
background: #7986CB00;
}
#window.mainbox.listview {
fixed-height: 1;
border: 2px 0px 0px ; border: 2px 0px 0px ;
columns: 1; border-color: @separatorcolor;
padding: 1px ;
}
#textbox {
text-color: @foreground;
}
#listview {
fixed-height: 0;
border: 2px 0px 0px ;
border-color: @separatorcolor;
spacing: 2px ;
scrollbar: true;
padding: 2px 0px 0px ; padding: 2px 0px 0px ;
} }
#window.mainbox.listview.element { #element {
border: 0;
}
#window.mainbox.listview.element.normal.normal {
foreground: #E8EAF6FF;
background: #7986CB00;
}
#window.mainbox.listview.element.normal.urgent {
foreground: #FFCDD2FF;
background: #FDF6E300;
}
#window.mainbox.listview.element.normal.active {
foreground: #B2EBF2FF;
background: #FDF6E300;
}
#window.mainbox.listview.element.selected.normal {
foreground: #E8EAF6FF;
background: #3F51B5FF;
}
#window.mainbox.listview.element.selected.urgent {
foreground: #B71C1CFF;
background: #FFCDD2FF;
}
#window.mainbox.listview.element.selected.active {
foreground: #006064FF;
background: #B2EBF2FF;
}
#window.mainbox.listview.element.alternate.normal {
foreground: #E8EAF6FF;
background: #283593FF;
}
#window.mainbox.listview.element.alternate.urgent {
foreground: #FFCDD2FF;
background: #B71C1CFF;
}
#window.mainbox.listview.element.alternate.active {
foreground: #B2EBF2FF;
background: #006064FF;
}
#window.mainbox.listview.scrollbar {
border: 0; border: 0;
padding: 0; padding: 1px ;
} }
#window.mainbox.sidebar.box { #element.normal.normal {
border: 2px 0px 0px ; background-color: @normal-background;
text-color: @normal-foreground;
} }
#window.mainbox.inputbar { #element.normal.urgent {
spacing: 0; background-color: @urgent-background;
text-color: @urgent-foreground;
} }
#window.mainbox.inputbar.box { #element.normal.active {
background-color: @active-background;
text-color: @active-foreground;
} }
#window.mainbox.inputbar.normal { #element.selected.normal {
foreground: #E8EAF6FF; background-color: @selected-normal-background;
background: #7986CB00; text-color: @selected-normal-foreground;
}
#element.selected.urgent {
background-color: @selected-urgent-background;
text-color: @selected-urgent-foreground;
}
#element.selected.active {
background-color: @selected-active-background;
text-color: @selected-active-foreground;
}
#element.alternate.normal {
background-color: @alternate-normal-background;
text-color: @alternate-normal-foreground;
}
#element.alternate.urgent {
background-color: @alternate-urgent-background;
text-color: @alternate-urgent-foreground;
}
#element.alternate.active {
background-color: @alternate-active-background;
text-color: @alternate-active-foreground;
}
#scrollbar {
width: 4px ;
border: 0;
handle-width: 8px ;
padding: 0;
}
#sidebar {
border: 2px 0px 0px ;
border-color: @separatorcolor;
}
#button.selected {
background-color: @selected-normal-background;
text-color: @selected-normal-foreground;
}
#inputbar {
spacing: 0;
text-color: @normal-foreground;
padding: 1px ;
}
#case-indicator {
spacing: 0;
text-color: @normal-foreground;
}
#entry {
spacing: 0;
text-color: @normal-foreground;
}
#prompt {
spacing: 0;
text-color: @normal-foreground;
} }

View file

@ -1,89 +1,127 @@
//! ------------------------------------------------------------------------------
//! ROFI Color theme
//! User: milouse
//! Copyright: Étienne Deparis
//! ------------------------------------------------------------------------------
//! "Color scheme for normal row" Set from: File
* { * {
spacing: 2; selected-normal-foreground: rgba ( 248, 248, 242, 100 % );
background: #00000000; foreground: rgba ( 248, 248, 242, 100 % );
normal-foreground: @foreground;
alternate-normal-background: rgba ( 39, 40, 34, 0 % );
red: rgba ( 220, 50, 47, 100 % );
selected-urgent-foreground: rgba ( 248, 248, 242, 100 % );
blue: rgba ( 38, 139, 210, 100 % );
urgent-foreground: rgba ( 249, 38, 114, 100 % );
alternate-urgent-background: rgba ( 39, 40, 34, 0 % );
active-foreground: rgba ( 166, 226, 42, 100 % );
lightbg: rgba ( 238, 232, 213, 100 % );
selected-active-foreground: rgba ( 166, 226, 42, 100 % );
alternate-active-background: rgba ( 39, 40, 34, 0 % );
background: rgba ( 39, 40, 34, 93 % );
bordercolor: rgba ( 0, 43, 54, 100 % );
alternate-normal-foreground: @foreground;
normal-background: rgba ( 39, 40, 34, 0 % );
lightfg: rgba ( 88, 104, 117, 100 % );
selected-normal-background: rgba ( 20, 20, 17, 100 % );
border-color: @foreground;
spacing: 2;
separatorcolor: rgba ( 230, 219, 116, 100 % );
urgent-background: rgba ( 39, 40, 34, 0 % );
selected-urgent-background: rgba ( 249, 38, 114, 100 % );
alternate-urgent-foreground: @urgent-foreground;
background-color: rgba ( 0, 0, 0, 0 % );
alternate-active-foreground: @active-foreground;
active-background: rgba ( 39, 40, 34, 0 % );
selected-active-background: rgba ( 20, 20, 17, 100 % );
} }
#window { #window {
border: 2; background-color: @background;
foreground: #E6DB74FF; border: 1;
padding: 5; padding: 5;
background: #272822EE;
} }
#window.mainbox { #mainbox {
border: 0; border: 0;
padding: 0; padding: 0;
} }
#window.mainbox.message.box { #message {
border: 2px 0px 0px ;
padding: 2px 0px 0px ;
}
#window.mainbox.message.normal {
foreground: #F8F8F2FF;
background: #27282200;
}
#window.mainbox.listview {
fixed-height: 1;
border: 2px 0px 0px ; border: 2px 0px 0px ;
columns: 1; border-color: @separatorcolor;
padding: 1px ;
}
#textbox {
text-color: @foreground;
}
#listview {
fixed-height: 0;
border: 2px 0px 0px ;
border-color: @separatorcolor;
spacing: 2px ;
scrollbar: true;
padding: 2px 0px 0px ; padding: 2px 0px 0px ;
} }
#window.mainbox.listview.element { #element {
border: 0;
}
#window.mainbox.listview.element.normal.normal {
foreground: #F8F8F2FF;
background: #27282200;
}
#window.mainbox.listview.element.normal.urgent {
foreground: #F92672FF;
background: #27282200;
}
#window.mainbox.listview.element.normal.active {
foreground: #A6E22AFF;
background: #27282200;
}
#window.mainbox.listview.element.selected.normal {
foreground: #F8F8F2FF;
background: #141411FF;
}
#window.mainbox.listview.element.selected.urgent {
foreground: #F8F8F2FF;
background: #F92672FF;
}
#window.mainbox.listview.element.selected.active {
foreground: #A6E22AFF;
background: #141411FF;
}
#window.mainbox.listview.element.alternate.normal {
foreground: #F8F8F2FF;
background: #27282200;
}
#window.mainbox.listview.element.alternate.urgent {
foreground: #F92672FF;
background: #27282200;
}
#window.mainbox.listview.element.alternate.active {
foreground: #A6E22AFF;
background: #27282200;
}
#window.mainbox.listview.scrollbar {
border: 0; border: 0;
padding: 0; padding: 1px ;
} }
#window.mainbox.sidebar.box { #element.normal.normal {
border: 2px 0px 0px ; background-color: @normal-background;
text-color: @normal-foreground;
} }
#window.mainbox.inputbar { #element.normal.urgent {
spacing: 0; background-color: @urgent-background;
text-color: @urgent-foreground;
} }
#window.mainbox.inputbar.box { #element.normal.active {
background-color: @active-background;
text-color: @active-foreground;
} }
#window.mainbox.inputbar.normal { #element.selected.normal {
foreground: #F8F8F2FF; background-color: @selected-normal-background;
background: #27282200; text-color: @selected-normal-foreground;
}
#element.selected.urgent {
background-color: @selected-urgent-background;
text-color: @selected-urgent-foreground;
}
#element.selected.active {
background-color: @selected-active-background;
text-color: @selected-active-foreground;
}
#element.alternate.normal {
background-color: @alternate-normal-background;
text-color: @alternate-normal-foreground;
}
#element.alternate.urgent {
background-color: @alternate-urgent-background;
text-color: @alternate-urgent-foreground;
}
#element.alternate.active {
background-color: @alternate-active-background;
text-color: @alternate-active-foreground;
}
#scrollbar {
width: 4px ;
border: 0;
handle-width: 8px ;
padding: 0;
}
#sidebar {
border: 2px 0px 0px ;
border-color: @separatorcolor;
}
#button.selected {
background-color: @selected-normal-background;
text-color: @selected-normal-foreground;
}
#inputbar {
spacing: 0;
text-color: @normal-foreground;
padding: 1px ;
}
#case-indicator {
spacing: 0;
text-color: @normal-foreground;
}
#entry {
spacing: 0;
text-color: @normal-foreground;
}
#prompt {
spacing: 0;
text-color: @normal-foreground;
} }

View file

@ -1,89 +1,127 @@
//! ------------------------------------------------------------------------------
//! ROFI Color theme
//! User: qball
//! Copyright: Dave Davenport
//! ------------------------------------------------------------------------------
//! "Color scheme for normal row" Set from: File
* { * {
spacing: 2; selected-normal-foreground: rgba ( 245, 245, 245, 100 % );
background: #00000000; foreground: rgba ( 0, 43, 54, 100 % );
normal-foreground: @foreground;
alternate-normal-background: rgba ( 208, 208, 208, 100 % );
red: rgba ( 220, 50, 47, 100 % );
selected-urgent-foreground: rgba ( 245, 245, 245, 100 % );
blue: rgba ( 38, 139, 210, 100 % );
urgent-foreground: rgba ( 215, 95, 0, 100 % );
alternate-urgent-background: rgba ( 208, 208, 208, 100 % );
active-foreground: rgba ( 0, 95, 135, 100 % );
lightbg: rgba ( 238, 232, 213, 100 % );
selected-active-foreground: rgba ( 245, 245, 245, 100 % );
alternate-active-background: rgba ( 208, 208, 208, 100 % );
background: rgba ( 245, 245, 245, 100 % );
bordercolor: rgba ( 68, 68, 68, 100 % );
alternate-normal-foreground: @foreground;
normal-background: rgba ( 95, 95, 32, 6 % );
lightfg: rgba ( 88, 104, 117, 100 % );
selected-normal-background: rgba ( 66, 113, 174, 100 % );
border-color: @foreground;
spacing: 2;
separatorcolor: rgba ( 68, 68, 68, 100 % );
urgent-background: rgba ( 245, 245, 245, 100 % );
selected-urgent-background: rgba ( 215, 95, 0, 100 % );
alternate-urgent-foreground: @urgent-foreground;
background-color: rgba ( 0, 0, 0, 0 % );
alternate-active-foreground: @active-foreground;
active-background: rgba ( 245, 245, 245, 100 % );
selected-active-background: rgba ( 0, 95, 135, 100 % );
} }
#window { #window {
border: 2; background-color: @background;
foreground: #444444FF; border: 1;
padding: 5; padding: 5;
background: #F5F5F5FF;
} }
#window.mainbox { #mainbox {
border: 0; border: 0;
padding: 0; padding: 0;
} }
#window.mainbox.message.box { #message {
border: 2px 0px 0px ;
padding: 2px 0px 0px ;
}
#window.mainbox.message.normal {
foreground: #002B36FF;
background: #F5F5F500;
}
#window.mainbox.listview {
fixed-height: 1;
border: 2px 0px 0px ; border: 2px 0px 0px ;
columns: 1; border-color: @separatorcolor;
padding: 1px ;
}
#textbox {
text-color: @foreground;
}
#listview {
fixed-height: 0;
border: 2px 0px 0px ;
border-color: @separatorcolor;
spacing: 2px ;
scrollbar: true;
padding: 2px 0px 0px ; padding: 2px 0px 0px ;
} }
#window.mainbox.listview.element { #element {
border: 0;
}
#window.mainbox.listview.element.normal.normal {
foreground: #002B36FF;
background: #F5F5F500;
}
#window.mainbox.listview.element.normal.urgent {
foreground: #D75F00FF;
background: #F5F5F5FF;
}
#window.mainbox.listview.element.normal.active {
foreground: #005F87FF;
background: #F5F5F5FF;
}
#window.mainbox.listview.element.selected.normal {
foreground: #F5F5F5FF;
background: #4271AEFF;
}
#window.mainbox.listview.element.selected.urgent {
foreground: #F5F5F5FF;
background: #D75F00FF;
}
#window.mainbox.listview.element.selected.active {
foreground: #F5F5F5FF;
background: #005F87FF;
}
#window.mainbox.listview.element.alternate.normal {
foreground: #002B36FF;
background: #D0D0D0FF;
}
#window.mainbox.listview.element.alternate.urgent {
foreground: #D75F00FF;
background: #D0D0D0FF;
}
#window.mainbox.listview.element.alternate.active {
foreground: #005F87FF;
background: #D0D0D0FF;
}
#window.mainbox.listview.scrollbar {
border: 0; border: 0;
padding: 0; padding: 1px ;
} }
#window.mainbox.sidebar.box { #element.normal.normal {
border: 2px 0px 0px ; background-color: @normal-background;
text-color: @normal-foreground;
} }
#window.mainbox.inputbar { #element.normal.urgent {
spacing: 0; background-color: @urgent-background;
text-color: @urgent-foreground;
} }
#window.mainbox.inputbar.box { #element.normal.active {
background-color: @active-background;
text-color: @active-foreground;
} }
#window.mainbox.inputbar.normal { #element.selected.normal {
foreground: #002B36FF; background-color: @selected-normal-background;
background: #F5F5F500; text-color: @selected-normal-foreground;
}
#element.selected.urgent {
background-color: @selected-urgent-background;
text-color: @selected-urgent-foreground;
}
#element.selected.active {
background-color: @selected-active-background;
text-color: @selected-active-foreground;
}
#element.alternate.normal {
background-color: @alternate-normal-background;
text-color: @alternate-normal-foreground;
}
#element.alternate.urgent {
background-color: @alternate-urgent-background;
text-color: @alternate-urgent-foreground;
}
#element.alternate.active {
background-color: @alternate-active-background;
text-color: @alternate-active-foreground;
}
#scrollbar {
width: 4px ;
border: 0;
handle-width: 8px ;
padding: 0;
}
#sidebar {
border: 2px 0px 0px ;
border-color: @separatorcolor;
}
#button.selected {
background-color: @selected-normal-background;
text-color: @selected-normal-foreground;
}
#inputbar {
spacing: 0;
text-color: @normal-foreground;
padding: 1px ;
}
#case-indicator {
spacing: 0;
text-color: @normal-foreground;
}
#entry {
spacing: 0;
text-color: @normal-foreground;
}
#prompt {
spacing: 0;
text-color: @normal-foreground;
} }

View file

@ -2,8 +2,8 @@
* Author: Primetoxinz * Author: Primetoxinz
*/ */
* { * {
foreground: #f2f2f2; text-color: #f2f2f2;
background: #4e4743; background-color: #4e4743;
lightbg: #534c48; lightbg: #534c48;
red: #f15d22; red: #f15d22;
orange: #faa41a; orange: #faa41a;
@ -33,85 +33,81 @@
} }
#window { #window {
border: 0; border: 0;
foreground: @foreground; text-color: @foreground;
background: rgba ( 0, 0, 0, 0 % ); background-color: rgba ( 0, 0, 0, 0 % );
padding: 5; padding: 5;
text-color: @bordercolor;
background-color: @background;
} }
#window.box { #mainbox {
foreground: @bordercolor;
background: @background;
}
#window.mainbox {
border: 0; border: 0;
padding: 0; padding: 0;
} }
#window.mainbox.message.box { #message {
border: 1px dash 0px 0px ; border: 1px dash 0px 0px ;
foreground: @separatorcolor; text-color: @separatorcolor;
padding: 2px 0px 0px ; padding: 2px 0px 0px ;
} }
#window.mainbox.message.normal { #textbox {
foreground: @foreground; text-color: @foreground;
} }
#window.mainbox.listview { #listview {
fixed-height: 0; fixed-height: 0;
border: 2px 0px 0px ; border: 2px 0px 0px ;
padding: 2px 0px 0px ; padding: 2px 0px 0px ;
foreground: @separatorcolor; text-color: @separatorcolor;
} }
#window.mainbox.listview.element { #element {
border: 0; border: 0;
} }
#window.mainbox.listview.element.normal.normal { #element.normal.normal {
foreground: @normal-foreground; text-color: @normal-foreground;
background: @normal-background; background-color: @normal-background;
} }
#window.mainbox.listview.element.normal.urgent { #element.normal.urgent {
foreground: @urgent-foreground; text-color: @urgent-foreground;
background: @urgent-background; background-color: @urgent-background;
} }
#window.mainbox.listview.element.normal.active { #element.normal.active {
foreground: @active-foreground; text-color: @active-foreground;
background: @active-background; background-color: @active-background;
} }
#window.mainbox.listview.element.selected.normal { #element.selected.normal {
foreground: @selected-normal-foreground; text-color: @selected-normal-foreground;
background: @selected-normal-background; background-color: @selected-normal-background;
} }
#window.mainbox.listview.element.selected.urgent { #element.selected.urgent {
foreground: @selected-urgent-foreground; text-color: @selected-urgent-foreground;
background: @selected-urgent-background; background-color: @selected-urgent-background;
} }
#window.mainbox.listview.element.selected.active { #element.selected.active {
foreground: @selected-active-foreground; text-color: @selected-active-foreground;
background: @selected-active-background; background-color: @selected-active-background;
} }
#window.mainbox.listview.element.alternate.normal { #element.alternate.normal {
foreground: @alternate-normal-foreground; text-color: @alternate-normal-foreground;
background: @alternate-normal-background; background-color: @alternate-normal-background;
} }
#window.mainbox.listview.element.alternate.urgent { #element.alternate.urgent {
foreground: @alternate-urgent-foreground; text-color: @alternate-urgent-foreground;
background: @alternate-urgent-background; background-color: @alternate-urgent-background;
} }
#window.mainbox.listview.element.alternate.active { #element.alternate.active {
foreground: @alternate-active-foreground; text-color: @alternate-active-foreground;
background: @alternate-active-background; background-color: @alternate-active-background;
} }
#window.mainbox.sidebar.box { #sidebar {
border: 1px dash 0px 0px ; border: 1px dash 0px 0px ;
} }
#window.mainbox.sidebar.button.selected { #button selected {
foreground: @selected-normal-foreground; text-color: @selected-normal-foreground;
background: @selected-normal-background; background-color: @selected-normal-background;
} }
#window.mainbox.inputbar { #inputbar {
spacing: 0; spacing: 0;
}
#window.mainbox.inputbar.box {
border: 0px ; border: 0px ;
} }
#window.mainbox.inputbar.normal { #button normal {
foreground: @foreground; text-color: @foreground;
} }

View file

@ -1,88 +1,127 @@
//! ------------------------------------------------------------------------------
//! ROFI Color theme
//! User: Rasi
//! Copyright: Rasmus Steinke
//! ------------------------------------------------------------------------------
* { * {
spacing: 2; selected-normal-foreground: rgba ( 255, 255, 255, 100 % );
background: #00000000; foreground: rgba ( 193, 193, 193, 100 % );
normal-foreground: @foreground;
alternate-normal-background: rgba ( 39, 50, 56, 100 % );
red: rgba ( 220, 50, 47, 100 % );
selected-urgent-foreground: rgba ( 255, 24, 68, 100 % );
blue: rgba ( 38, 139, 210, 100 % );
urgent-foreground: rgba ( 255, 24, 68, 100 % );
alternate-urgent-background: rgba ( 39, 50, 56, 100 % );
active-foreground: rgba ( 128, 203, 196, 100 % );
lightbg: rgba ( 238, 232, 213, 100 % );
selected-active-foreground: rgba ( 128, 203, 196, 100 % );
alternate-active-background: rgba ( 39, 50, 56, 100 % );
background: rgba ( 39, 50, 56, 100 % );
bordercolor: rgba ( 39, 50, 56, 100 % );
alternate-normal-foreground: @foreground;
normal-background: rgba ( 39, 50, 56, 100 % );
lightfg: rgba ( 88, 104, 117, 100 % );
selected-normal-background: rgba ( 57, 66, 73, 100 % );
border-color: @foreground;
spacing: 2;
separatorcolor: rgba ( 30, 37, 41, 100 % );
urgent-background: rgba ( 39, 50, 56, 100 % );
selected-urgent-background: rgba ( 57, 66, 73, 100 % );
alternate-urgent-foreground: @urgent-foreground;
background-color: rgba ( 0, 0, 0, 0 % );
alternate-active-foreground: @active-foreground;
active-background: rgba ( 39, 50, 56, 100 % );
selected-active-background: rgba ( 57, 66, 73, 100 % );
} }
#window { #window {
border: 2; background-color: @background;
foreground: #1E2529FF; border: 1;
padding: 5; padding: 5;
background: #273238FF;
} }
#window.mainbox { #mainbox {
border: 0; border: 0;
padding: 0; padding: 0;
} }
#window.mainbox.message.box { #message {
border: 2px 0px 0px ; border: 1px dash 0px 0px ;
padding: 2px 0px 0px ; border-color: @separatorcolor;
padding: 1px ;
} }
#window.mainbox.message.normal { #textbox {
foreground: #C1C1C1FF; text-color: @foreground;
background: #273238FF;
} }
#window.mainbox.listview { #listview {
fixed-height: 1; fixed-height: 0;
border: 2px 0px 0px ; border: 2px dash 0px 0px ;
columns: 1; border-color: @separatorcolor;
spacing: 2px ;
scrollbar: true;
padding: 2px 0px 0px ; padding: 2px 0px 0px ;
} }
#window.mainbox.listview.element { #element {
border: 0;
}
#window.mainbox.listview.element.normal.normal {
foreground: #C1C1C1FF;
background: #273238FF;
}
#window.mainbox.listview.element.normal.urgent {
foreground: #FF1844FF;
background: #273238FF;
}
#window.mainbox.listview.element.normal.active {
foreground: #80CBC4FF;
background: #273238FF;
}
#window.mainbox.listview.element.selected.normal {
foreground: #FFFFFFFF;
background: #394249FF;
}
#window.mainbox.listview.element.selected.urgent {
foreground: #FF1844FF;
background: #394249FF;
}
#window.mainbox.listview.element.selected.active {
foreground: #80CBC4FF;
background: #394249FF;
}
#window.mainbox.listview.element.alternate.normal {
foreground: #C1C1C1FF;
background: #273238FF;
}
#window.mainbox.listview.element.alternate.urgent {
foreground: #FF1844FF;
background: #273238FF;
}
#window.mainbox.listview.element.alternate.active {
foreground: #80CBC4FF;
background: #273238FF;
}
#window.mainbox.listview.scrollbar {
border: 0; border: 0;
padding: 0; padding: 1px ;
} }
#window.mainbox.sidebar.box { #element.normal.normal {
border: 2px 0px 0px ; background-color: @normal-background;
text-color: @normal-foreground;
} }
#window.mainbox.inputbar { #element.normal.urgent {
spacing: 0; background-color: @urgent-background;
text-color: @urgent-foreground;
} }
#window.mainbox.inputbar.box { #element.normal.active {
background-color: @active-background;
text-color: @active-foreground;
} }
#window.mainbox.inputbar.normal { #element.selected.normal {
foreground: #C1C1C1FF; background-color: @selected-normal-background;
background: #273238FF; text-color: @selected-normal-foreground;
}
#element.selected.urgent {
background-color: @selected-urgent-background;
text-color: @selected-urgent-foreground;
}
#element.selected.active {
background-color: @selected-active-background;
text-color: @selected-active-foreground;
}
#element.alternate.normal {
background-color: @alternate-normal-background;
text-color: @alternate-normal-foreground;
}
#element.alternate.urgent {
background-color: @alternate-urgent-background;
text-color: @alternate-urgent-foreground;
}
#element.alternate.active {
background-color: @alternate-active-background;
text-color: @alternate-active-foreground;
}
#scrollbar {
width: 4px ;
border: 0;
handle-width: 8px ;
padding: 0;
}
#sidebar {
border: 2px dash 0px 0px ;
border-color: @separatorcolor;
}
#button.selected {
background-color: @selected-normal-background;
text-color: @selected-normal-foreground;
}
#inputbar {
spacing: 0;
text-color: @normal-foreground;
padding: 1px ;
}
#case-indicator {
spacing: 0;
text-color: @normal-foreground;
}
#entry {
spacing: 0;
text-color: @normal-foreground;
}
#prompt {
spacing: 0;
text-color: @normal-foreground;
} }

View file

@ -1,14 +1,33 @@
configuration {
// The display name of this browser
display-ssh: " ";
// The display name of this browser
display-run: "";
// The display name of this browser
display-drun: "";
// The display name of this browser
display-window: "";
display-combi: "";
display-top: "";
show-icons: true;
}
/** /**
* User: Qball * User: Qball
* Copyright: Dave Davenport * Copyright: Dave Davenport
*/ */
* { * {
foreground: #ffeedd; foreground: #ffeedd;
background: rgba(0,0,0,0); backlight: #ccffeedd;
background-color: rgba(0,0,0,0);
dark: #1c1c1c; dark: #1c1c1c;
// Black // Black
black: #3d352a; black: #3d352a;
lightblack: #554444; lightblack: #554444;
tlightblack: #554444cc;
// //
// Red // Red
red: #cd5c5c; red: #cd5c5c;
@ -32,6 +51,7 @@
// //
// Cyan // Cyan
cyan: #b0c4de; cyan: #b0c4de;
tcyan: #ccb0c4de;
lightcyan: #b0c4de; lightcyan: #b0c4de;
// //
// White // White
@ -39,61 +59,137 @@
lightwhite: #ddccbb; lightwhite: #ddccbb;
// //
// Bold, Italic, Underline // Bold, Italic, Underline
highlight: bold #ffffff; highlight: underline bold #ffffff;
transparent: rgba(0,0,0,0);
font: "Sauce Code Powerline Medium 10";
} }
#window { #window {
location: center; location: center;
anchor: center; anchor: center;
} transparency: "screenshot";
#window box {
padding: 10px; padding: 10px;
border: 1px; border: 0px;
border-radius: 15px; border-radius: 10px;
foreground: @magenta; color: @magenta;
background: #1c1c1ccc; background-color: @transparent;
spacing: 0;
children: [vertb, mainbox];
orientation: horizontal;
} }
#mainbox {
#window mainbox inputbar { spacing: 0;
background: @lightblack; children: [ inputbar, listview ];
text: @lightgreen;
padding: 4px;
}
#window mainbox inputbar box {
border: 0px 0px 2px 0px;
}
#window mainbox box {
spacing: 0.3em;
} }
#window mainbox listview { #message {
border-color: @foreground;
border: 0px 2px 2px 2px;
// border-radius: 10px;
padding: 5;
background-color: @tcyan;
}
#message {
font: "Sauce Code Powerline ExtraLight 8";
color: @black;
}
#inputbar {
color: @lightgreen;
padding: 8px;
background-color: @tlightblack;
border: 2px 2px 2px 2px;
border-radius: 15px 15px 0px 0px;
border-color: @foreground;
font: "Sauce Code Pro 18";
}
#prompt {
color: inherit;
}
#entry {
color:inherit;
}
#entry {
color:inherit;
}
#entry {
font: inherit;
}
#listview {
padding: 8px;
border-radius: 0px 0px 15px 15px;
border-color: @foreground;
border: 0px 2px 2px 2px;
background-color: #1c1c1ccc;
dynamic: false; dynamic: false;
lines: 10;
} }
#window mainbox listview element selected normal { #element {
background: @blue; padding: 3px;
vertical-align: 0.5;
// border: 2px;
border-radius: 4px;
background-color: transparent;
color: @foreground;
font:inherit;
} }
#window mainbox listview element normal active { #element selected.normal {
background-color: @blue;
}
#element normal active {
foreground: @lightblue; foreground: @lightblue;
} }
#window mainbox listview element normal urgent { #element normal urgent {
foreground: @lightred; foreground: @lightred;
} }
#window mainbox listview element alternate normal { #element alternate normal {
} }
#window mainbox listview element alternate active { #element alternate active {
foreground: @lightblue; foreground: @lightblue;
} }
#window mainbox listview element alternate urgent { #element alternate urgent {
foreground: @lightred; foreground: @lightred;
} }
#window mainbox listview element selected active { #element selected active {
background: @lightblue; background-color: @lightblue;
foreground: @dark; foreground: @dark;
} }
#window mainbox listview element selected urgent { #element selected urgent {
background: @lightred; background-color: @lightred;
foreground: @dark; foreground: @dark;
} }
#window mainbox listview element normal normal { #element normal normal {
} }
#vertb {
expand: false;
children: [ dummy0, sidebar, dummy1 ];
}
#dummy0, dummy1 {
expand: true;
}
#sidebar {
expand: false;
orientation: vertical;
spacing: 0px;
border: 0px 0px 0px 0px;
}
#button {
font: "FontAwesome 22";
padding: 6px;
border: 2px 0px 2px 2px;
border-radius: 4px 0px 0px 4px;
background-color: @tlightblack;
border-color: @foreground;
color: @foreground;
}
#button selected normal {
color: @dark;
border: 2px 0px 2px 2px;
background-color: @backlight;
border-color: @foreground;
}

View file

@ -1,89 +1,127 @@
//! ------------------------------------------------------------------------------
//! ROFI Color theme
//! User: qball
//! Copyright: Dave Davenport
//! ------------------------------------------------------------------------------
//! Use extended color scheme
* { * {
spacing: 2; selected-normal-foreground: rgba ( 0, 96, 160, 100 % );
background: #00000000; foreground: rgba ( 0, 176, 239, 100 % );
normal-foreground: @foreground;
alternate-normal-background: rgba ( 0, 0, 0, 0 % );
red: rgba ( 220, 50, 47, 100 % );
selected-urgent-foreground: rgba ( 0, 96, 160, 100 % );
blue: rgba ( 38, 139, 210, 100 % );
urgent-foreground: rgba ( 255, 160, 160, 100 % );
alternate-urgent-background: rgba ( 0, 0, 0, 0 % );
active-foreground: rgba ( 160, 255, 160, 100 % );
lightbg: rgba ( 238, 232, 213, 100 % );
selected-active-foreground: rgba ( 0, 96, 160, 100 % );
alternate-active-background: rgba ( 0, 0, 0, 0 % );
background: rgba ( 0, 96, 160, 93 % );
bordercolor: rgba ( 0, 176, 239, 100 % );
alternate-normal-foreground: @foreground;
normal-background: rgba ( 0, 0, 0, 0 % );
lightfg: rgba ( 88, 104, 117, 100 % );
selected-normal-background: rgba ( 0, 176, 239, 100 % );
border-color: @foreground;
spacing: 2;
separatorcolor: rgba ( 0, 176, 239, 100 % );
urgent-background: rgba ( 0, 0, 0, 0 % );
selected-urgent-background: rgba ( 255, 160, 160, 100 % );
alternate-urgent-foreground: @urgent-foreground;
background-color: rgba ( 0, 0, 0, 0 % );
alternate-active-foreground: @active-foreground;
active-background: rgba ( 0, 0, 0, 0 % );
selected-active-background: rgba ( 160, 255, 160, 100 % );
} }
#window { #window {
border: 2; background-color: @background;
foreground: #00B0EFFF; border: 1;
padding: 5; padding: 5;
background: #0060A0EE;
} }
#window.mainbox { #mainbox {
border: 0; border: 0;
padding: 0; padding: 0;
} }
#window.mainbox.message.box { #message {
border: 2px 0px 0px ; border: 1px dash 0px 0px ;
padding: 2px 0px 0px ; border-color: @separatorcolor;
padding: 1px ;
} }
#window.mainbox.message.normal { #textbox {
foreground: #00B0EFFF; text-color: @foreground;
background: #00000000;
} }
#window.mainbox.listview { #listview {
fixed-height: 1; fixed-height: 0;
border: 2px 0px 0px ; border: 2px dash 0px 0px ;
columns: 1; border-color: @separatorcolor;
spacing: 2px ;
scrollbar: true;
padding: 2px 0px 0px ; padding: 2px 0px 0px ;
} }
#window.mainbox.listview.element { #element {
border: 0;
}
#window.mainbox.listview.element.normal.normal {
foreground: #00B0EFFF;
background: #00000000;
}
#window.mainbox.listview.element.normal.urgent {
foreground: #FFA0A0FF;
background: #00000000;
}
#window.mainbox.listview.element.normal.active {
foreground: #A0FFA0FF;
background: #00000000;
}
#window.mainbox.listview.element.selected.normal {
foreground: #0060A0FF;
background: #00B0EFFF;
}
#window.mainbox.listview.element.selected.urgent {
foreground: #0060A0FF;
background: #FFA0A0FF;
}
#window.mainbox.listview.element.selected.active {
foreground: #0060A0FF;
background: #A0FFA0FF;
}
#window.mainbox.listview.element.alternate.normal {
foreground: #00B0EFFF;
background: #00000000;
}
#window.mainbox.listview.element.alternate.urgent {
foreground: #FFA0A0FF;
background: #00000000;
}
#window.mainbox.listview.element.alternate.active {
foreground: #A0FFA0FF;
background: #00000000;
}
#window.mainbox.listview.scrollbar {
border: 0; border: 0;
padding: 0; padding: 1px ;
} }
#window.mainbox.sidebar.box { #element.normal.normal {
border: 2px 0px 0px ; background-color: @normal-background;
text-color: @normal-foreground;
} }
#window.mainbox.inputbar { #element.normal.urgent {
spacing: 0; background-color: @urgent-background;
text-color: @urgent-foreground;
} }
#window.mainbox.inputbar.box { #element.normal.active {
background-color: @active-background;
text-color: @active-foreground;
} }
#window.mainbox.inputbar.normal { #element.selected.normal {
foreground: #00B0EFFF; background-color: @selected-normal-background;
background: #00000000; text-color: @selected-normal-foreground;
}
#element.selected.urgent {
background-color: @selected-urgent-background;
text-color: @selected-urgent-foreground;
}
#element.selected.active {
background-color: @selected-active-background;
text-color: @selected-active-foreground;
}
#element.alternate.normal {
background-color: @alternate-normal-background;
text-color: @alternate-normal-foreground;
}
#element.alternate.urgent {
background-color: @alternate-urgent-background;
text-color: @alternate-urgent-foreground;
}
#element.alternate.active {
background-color: @alternate-active-background;
text-color: @alternate-active-foreground;
}
#scrollbar {
width: 4px ;
border: 0;
handle-width: 8px ;
padding: 0;
}
#sidebar {
border: 2px dash 0px 0px ;
border-color: @separatorcolor;
}
#button.selected {
background-color: @selected-normal-background;
text-color: @selected-normal-foreground;
}
#inputbar {
spacing: 0;
text-color: @normal-foreground;
padding: 1px ;
}
#case-indicator {
spacing: 0;
text-color: @normal-foreground;
}
#entry {
spacing: 0;
text-color: @normal-foreground;
}
#prompt {
spacing: 0;
text-color: @normal-foreground;
} }

View file

@ -1,88 +1,127 @@
//! ------------------------------------------------------------------------------
//! ROFI Color theme
//! User: Rasi
//! Copyright: Rasmus Steinke
//! ------------------------------------------------------------------------------
* { * {
spacing: 2; selected-normal-foreground: rgba ( 255, 255, 255, 100 % );
background: #00000000; foreground: rgba ( 79, 128, 255, 100 % );
normal-foreground: @foreground;
alternate-normal-background: rgba ( 0, 57, 255, 100 % );
red: rgba ( 220, 50, 47, 100 % );
selected-urgent-foreground: rgba ( 255, 112, 71, 100 % );
blue: rgba ( 38, 139, 210, 100 % );
urgent-foreground: rgba ( 255, 112, 71, 100 % );
alternate-urgent-background: rgba ( 0, 57, 255, 100 % );
active-foreground: rgba ( 104, 186, 80, 100 % );
lightbg: rgba ( 238, 232, 213, 100 % );
selected-active-foreground: rgba ( 104, 186, 80, 100 % );
alternate-active-background: rgba ( 0, 57, 255, 100 % );
background: rgba ( 0, 57, 255, 100 % );
bordercolor: rgba ( 0, 57, 255, 100 % );
alternate-normal-foreground: @foreground;
normal-background: rgba ( 0, 57, 255, 100 % );
lightfg: rgba ( 88, 104, 117, 100 % );
selected-normal-background: rgba ( 79, 128, 255, 100 % );
border-color: @foreground;
spacing: 2;
separatorcolor: rgba ( 79, 128, 255, 100 % );
urgent-background: rgba ( 0, 57, 255, 100 % );
selected-urgent-background: rgba ( 79, 128, 255, 100 % );
alternate-urgent-foreground: @urgent-foreground;
background-color: rgba ( 0, 0, 0, 0 % );
alternate-active-foreground: @active-foreground;
active-background: rgba ( 0, 57, 255, 100 % );
selected-active-background: rgba ( 79, 128, 255, 100 % );
} }
#window { #window {
border: 2; background-color: @background;
foreground: #4F80FFFF; border: 1;
padding: 5; padding: 5;
background: #0039FFFF;
} }
#window.mainbox { #mainbox {
border: 0; border: 0;
padding: 0; padding: 0;
} }
#window.mainbox.message.box { #message {
border: 2px 0px 0px ; border: 1px dash 0px 0px ;
padding: 2px 0px 0px ; border-color: @separatorcolor;
padding: 1px ;
} }
#window.mainbox.message.normal { #textbox {
foreground: #4F80FFFF; text-color: @foreground;
background: #0039FFFF;
} }
#window.mainbox.listview { #listview {
fixed-height: 1; fixed-height: 0;
border: 2px 0px 0px ; border: 2px dash 0px 0px ;
columns: 1; border-color: @separatorcolor;
spacing: 2px ;
scrollbar: true;
padding: 2px 0px 0px ; padding: 2px 0px 0px ;
} }
#window.mainbox.listview.element { #element {
border: 0;
}
#window.mainbox.listview.element.normal.normal {
foreground: #4F80FFFF;
background: #0039FFFF;
}
#window.mainbox.listview.element.normal.urgent {
foreground: #FF7047FF;
background: #0039FFFF;
}
#window.mainbox.listview.element.normal.active {
foreground: #68BA50FF;
background: #0039FFFF;
}
#window.mainbox.listview.element.selected.normal {
foreground: #FFFFFFFF;
background: #4F80FFFF;
}
#window.mainbox.listview.element.selected.urgent {
foreground: #FF7047FF;
background: #4F80FFFF;
}
#window.mainbox.listview.element.selected.active {
foreground: #68BA50FF;
background: #4F80FFFF;
}
#window.mainbox.listview.element.alternate.normal {
foreground: #4F80FFFF;
background: #0039FFFF;
}
#window.mainbox.listview.element.alternate.urgent {
foreground: #FF7047FF;
background: #0039FFFF;
}
#window.mainbox.listview.element.alternate.active {
foreground: #68BA50FF;
background: #0039FFFF;
}
#window.mainbox.listview.scrollbar {
border: 0; border: 0;
padding: 0; padding: 1px ;
} }
#window.mainbox.sidebar.box { #element.normal.normal {
border: 2px 0px 0px ; background-color: @normal-background;
text-color: @normal-foreground;
} }
#window.mainbox.inputbar { #element.normal.urgent {
spacing: 0; background-color: @urgent-background;
text-color: @urgent-foreground;
} }
#window.mainbox.inputbar.box { #element.normal.active {
background-color: @active-background;
text-color: @active-foreground;
} }
#window.mainbox.inputbar.normal { #element.selected.normal {
foreground: #4F80FFFF; background-color: @selected-normal-background;
background: #0039FFFF; text-color: @selected-normal-foreground;
}
#element.selected.urgent {
background-color: @selected-urgent-background;
text-color: @selected-urgent-foreground;
}
#element.selected.active {
background-color: @selected-active-background;
text-color: @selected-active-foreground;
}
#element.alternate.normal {
background-color: @alternate-normal-background;
text-color: @alternate-normal-foreground;
}
#element.alternate.urgent {
background-color: @alternate-urgent-background;
text-color: @alternate-urgent-foreground;
}
#element.alternate.active {
background-color: @alternate-active-background;
text-color: @alternate-active-foreground;
}
#scrollbar {
width: 4px ;
border: 0;
handle-width: 8px ;
padding: 0;
}
#sidebar {
border: 2px dash 0px 0px ;
border-color: @separatorcolor;
}
#button.selected {
background-color: @selected-normal-background;
text-color: @selected-normal-foreground;
}
#inputbar {
spacing: 0;
text-color: @normal-foreground;
padding: 1px ;
}
#case-indicator {
spacing: 0;
text-color: @normal-foreground;
}
#entry {
spacing: 0;
text-color: @normal-foreground;
}
#prompt {
spacing: 0;
text-color: @normal-foreground;
} }

View file

@ -1,44 +1,40 @@
* { * {
background: Black; background-color: Black;
foreground: White; border-color: White;
text-color: White;
font: "Times New Roman 12"; font: "Times New Roman 12";
} }
configuration { configuration {
show-icons: true;
drun-icon-theme: "gnome";
} }
#window { #window {
anchor: north; anchor: north;
location: north; location: north;
}
#window box {
width: 100%; width: 100%;
padding: 4px; padding: 4px;
children: [ horibox ]; children: [ horibox ];
} }
#window horibox box { #horibox {
orientation: horizontal; orientation: horizontal;
children: [ prompt, entry, listview ]; children: [ prompt, entry, listview ];
} }
#window horibox listview box { #listview {
layout: horizontal; layout: horizontal;
spacing: 5px; spacing: 5px;
lines: 10; lines: 100;
} }
#window horibox entry { #entry {
expand: false; expand: false;
width: 10em; width: 10em;
} }
#window horibox listview element { #element {
padding: 0px 2px; padding: 0px 2px;
} }
#window horibox listview element selected { #element selected {
background: SteelBlue; background-color: SteelBlue;
} }

View file

@ -1,88 +1,127 @@
//! ------------------------------------------------------------------------------
//! ROFI Color theme
//! User: Rasi
//! Copyright: Rasmus Steinke
//! ------------------------------------------------------------------------------
* { * {
spacing: 2; selected-normal-foreground: rgba ( 255, 255, 255, 100 % );
background: #00000000; foreground: rgba ( 255, 255, 255, 100 % );
normal-foreground: @foreground;
alternate-normal-background: rgba ( 57, 57, 57, 100 % );
red: rgba ( 220, 50, 47, 100 % );
selected-urgent-foreground: rgba ( 255, 195, 156, 100 % );
blue: rgba ( 38, 139, 210, 100 % );
urgent-foreground: rgba ( 243, 132, 61, 100 % );
alternate-urgent-background: rgba ( 57, 57, 57, 100 % );
active-foreground: rgba ( 38, 139, 210, 100 % );
lightbg: rgba ( 238, 232, 213, 100 % );
selected-active-foreground: rgba ( 32, 81, 113, 100 % );
alternate-active-background: rgba ( 57, 57, 57, 100 % );
background: rgba ( 57, 57, 57, 100 % );
bordercolor: rgba ( 57, 57, 57, 100 % );
alternate-normal-foreground: @foreground;
normal-background: rgba ( 57, 57, 57, 100 % );
lightfg: rgba ( 88, 104, 117, 100 % );
selected-normal-background: rgba ( 38, 139, 210, 100 % );
border-color: @foreground;
spacing: 2;
separatorcolor: rgba ( 38, 139, 210, 100 % );
urgent-background: rgba ( 57, 57, 57, 100 % );
selected-urgent-background: rgba ( 38, 139, 210, 100 % );
alternate-urgent-foreground: @urgent-foreground;
background-color: rgba ( 0, 0, 0, 0 % );
alternate-active-foreground: @active-foreground;
active-background: rgba ( 57, 57, 57, 100 % );
selected-active-background: rgba ( 38, 139, 210, 100 % );
} }
#window { #window {
border: 2; background-color: @background;
foreground: #268BD2FF; border: 1;
padding: 5; padding: 5;
background: #393939FF;
} }
#window.mainbox { #mainbox {
border: 0; border: 0;
padding: 0; padding: 0;
} }
#window.mainbox.message.box { #message {
border: 2px 0px 0px ; border: 1px dash 0px 0px ;
padding: 2px 0px 0px ; border-color: @separatorcolor;
padding: 1px ;
} }
#window.mainbox.message.normal { #textbox {
foreground: #FFFFFFFF; text-color: @foreground;
background: #393939FF;
} }
#window.mainbox.listview { #listview {
fixed-height: 1; fixed-height: 0;
border: 2px 0px 0px ; border: 2px dash 0px 0px ;
columns: 1; border-color: @separatorcolor;
spacing: 2px ;
scrollbar: true;
padding: 2px 0px 0px ; padding: 2px 0px 0px ;
} }
#window.mainbox.listview.element { #element {
border: 0;
}
#window.mainbox.listview.element.normal.normal {
foreground: #FFFFFFFF;
background: #393939FF;
}
#window.mainbox.listview.element.normal.urgent {
foreground: #F3843DFF;
background: #393939FF;
}
#window.mainbox.listview.element.normal.active {
foreground: #268BD2FF;
background: #393939FF;
}
#window.mainbox.listview.element.selected.normal {
foreground: #FFFFFFFF;
background: #268BD2FF;
}
#window.mainbox.listview.element.selected.urgent {
foreground: #FFC39CFF;
background: #268BD2FF;
}
#window.mainbox.listview.element.selected.active {
foreground: #205171FF;
background: #268BD2FF;
}
#window.mainbox.listview.element.alternate.normal {
foreground: #FFFFFFFF;
background: #393939FF;
}
#window.mainbox.listview.element.alternate.urgent {
foreground: #F3843DFF;
background: #393939FF;
}
#window.mainbox.listview.element.alternate.active {
foreground: #268BD2FF;
background: #393939FF;
}
#window.mainbox.listview.scrollbar {
border: 0; border: 0;
padding: 0; padding: 1px ;
} }
#window.mainbox.sidebar.box { #element.normal.normal {
border: 2px 0px 0px ; background-color: @normal-background;
text-color: @normal-foreground;
} }
#window.mainbox.inputbar { #element.normal.urgent {
spacing: 0; background-color: @urgent-background;
text-color: @urgent-foreground;
} }
#window.mainbox.inputbar.box { #element.normal.active {
background-color: @active-background;
text-color: @active-foreground;
} }
#window.mainbox.inputbar.normal { #element.selected.normal {
foreground: #FFFFFFFF; background-color: @selected-normal-background;
background: #393939FF; text-color: @selected-normal-foreground;
}
#element.selected.urgent {
background-color: @selected-urgent-background;
text-color: @selected-urgent-foreground;
}
#element.selected.active {
background-color: @selected-active-background;
text-color: @selected-active-foreground;
}
#element.alternate.normal {
background-color: @alternate-normal-background;
text-color: @alternate-normal-foreground;
}
#element.alternate.urgent {
background-color: @alternate-urgent-background;
text-color: @alternate-urgent-foreground;
}
#element.alternate.active {
background-color: @alternate-active-background;
text-color: @alternate-active-foreground;
}
#scrollbar {
width: 4px ;
border: 0;
handle-width: 8px ;
padding: 0;
}
#sidebar {
border: 2px dash 0px 0px ;
border-color: @separatorcolor;
}
#button.selected {
background-color: @selected-normal-background;
text-color: @selected-normal-foreground;
}
#inputbar {
spacing: 0;
text-color: @normal-foreground;
padding: 1px ;
}
#case-indicator {
spacing: 0;
text-color: @normal-foreground;
}
#entry {
spacing: 0;
text-color: @normal-foreground;
}
#prompt {
spacing: 0;
text-color: @normal-foreground;
} }

View file

@ -1,95 +1,127 @@
//!-------------------------------------------------------------------------------
//! Rofi color theme
//!
//! Based on the Gruvbox color scheme for Vim by morhetz
//! https://github.com/morhetz/gruvbox
//!
//! File: gruvbox-dark-hard.theme
//! Desc: Gruvbox dark (hard contrast) color theme for Rofi
//! Author: bardisty <b@bah.im>
//! Source: https://github.com/bardisty/gruvbox-rofi
//! Modified: Sat Oct 22 2016 03:12:10 PDT -0700
//!-------------------------------------------------------------------------------
* { * {
spacing: 2; selected-normal-foreground: rgba ( 251, 241, 199, 100 % );
background: #00000000; foreground: rgba ( 235, 219, 178, 100 % );
normal-foreground: @foreground;
alternate-normal-background: rgba ( 40, 40, 40, 100 % );
red: rgba ( 220, 50, 47, 100 % );
selected-urgent-foreground: rgba ( 29, 32, 33, 100 % );
blue: rgba ( 38, 139, 210, 100 % );
urgent-foreground: rgba ( 29, 32, 33, 100 % );
alternate-urgent-background: rgba ( 204, 36, 29, 100 % );
active-foreground: rgba ( 29, 32, 33, 100 % );
lightbg: rgba ( 238, 232, 213, 100 % );
selected-active-foreground: rgba ( 29, 32, 33, 100 % );
alternate-active-background: rgba ( 215, 153, 33, 100 % );
background: rgba ( 29, 32, 33, 100 % );
bordercolor: rgba ( 168, 153, 132, 100 % );
alternate-normal-foreground: @foreground;
normal-background: rgba ( 29, 32, 33, 100 % );
lightfg: rgba ( 88, 104, 117, 100 % );
selected-normal-background: rgba ( 80, 73, 69, 100 % );
border-color: @foreground;
spacing: 2;
separatorcolor: rgba ( 168, 153, 132, 100 % );
urgent-background: rgba ( 204, 36, 29, 100 % );
selected-urgent-background: rgba ( 251, 73, 52, 100 % );
alternate-urgent-foreground: @urgent-foreground;
background-color: rgba ( 0, 0, 0, 0 % );
alternate-active-foreground: @active-foreground;
active-background: rgba ( 215, 153, 33, 100 % );
selected-active-background: rgba ( 250, 189, 47, 100 % );
} }
#window { #window {
border: 2; background-color: @background;
foreground: #A89984FF; border: 1;
padding: 5; padding: 5;
background: #1D2021FF;
} }
#window.mainbox { #mainbox {
border: 0; border: 0;
padding: 0; padding: 0;
} }
#window.mainbox.message.box { #message {
border: 2px 0px 0px ; border: 1px dash 0px 0px ;
padding: 2px 0px 0px ; border-color: @separatorcolor;
padding: 1px ;
} }
#window.mainbox.message.normal { #textbox {
foreground: #EBDBB2FF; text-color: @foreground;
background: #1D2021FF;
} }
#window.mainbox.listview { #listview {
fixed-height: 1; fixed-height: 0;
border: 2px 0px 0px ; border: 2px dash 0px 0px ;
columns: 1; border-color: @separatorcolor;
spacing: 2px ;
scrollbar: true;
padding: 2px 0px 0px ; padding: 2px 0px 0px ;
} }
#window.mainbox.listview.element { #element {
border: 0;
}
#window.mainbox.listview.element.normal.normal {
foreground: #EBDBB2FF;
background: #1D2021FF;
}
#window.mainbox.listview.element.normal.urgent {
foreground: #1D2021FF;
background: #CC241DFF;
}
#window.mainbox.listview.element.normal.active {
foreground: #1D2021FF;
background: #D79921FF;
}
#window.mainbox.listview.element.selected.normal {
foreground: #FBF1C7FF;
background: #504945FF;
}
#window.mainbox.listview.element.selected.urgent {
foreground: #1D2021FF;
background: #FB4934FF;
}
#window.mainbox.listview.element.selected.active {
foreground: #1D2021FF;
background: #FABD2FFF;
}
#window.mainbox.listview.element.alternate.normal {
foreground: #EBDBB2FF;
background: #282828FF;
}
#window.mainbox.listview.element.alternate.urgent {
foreground: #1D2021FF;
background: #CC241DFF;
}
#window.mainbox.listview.element.alternate.active {
foreground: #1D2021FF;
background: #D79921FF;
}
#window.mainbox.listview.scrollbar {
border: 0; border: 0;
padding: 0; padding: 1px ;
} }
#window.mainbox.sidebar.box { #element.normal.normal {
border: 2px 0px 0px ; background-color: @normal-background;
text-color: @normal-foreground;
} }
#window.mainbox.inputbar { #element.normal.urgent {
spacing: 0; background-color: @urgent-background;
text-color: @urgent-foreground;
} }
#window.mainbox.inputbar.box { #element.normal.active {
background-color: @active-background;
text-color: @active-foreground;
} }
#window.mainbox.inputbar.normal { #element.selected.normal {
foreground: #EBDBB2FF; background-color: @selected-normal-background;
background: #1D2021FF; text-color: @selected-normal-foreground;
}
#element.selected.urgent {
background-color: @selected-urgent-background;
text-color: @selected-urgent-foreground;
}
#element.selected.active {
background-color: @selected-active-background;
text-color: @selected-active-foreground;
}
#element.alternate.normal {
background-color: @alternate-normal-background;
text-color: @alternate-normal-foreground;
}
#element.alternate.urgent {
background-color: @alternate-urgent-background;
text-color: @alternate-urgent-foreground;
}
#element.alternate.active {
background-color: @alternate-active-background;
text-color: @alternate-active-foreground;
}
#scrollbar {
width: 4px ;
border: 0;
handle-width: 8px ;
padding: 0;
}
#sidebar {
border: 2px dash 0px 0px ;
border-color: @separatorcolor;
}
#button.selected {
background-color: @selected-normal-background;
text-color: @selected-normal-foreground;
}
#inputbar {
spacing: 0;
text-color: @normal-foreground;
padding: 1px ;
}
#case-indicator {
spacing: 0;
text-color: @normal-foreground;
}
#entry {
spacing: 0;
text-color: @normal-foreground;
}
#prompt {
spacing: 0;
text-color: @normal-foreground;
} }

View file

@ -1,95 +1,127 @@
//!-------------------------------------------------------------------------------
//! Rofi color theme
//!
//! Based on the Gruvbox color scheme for Vim by morhetz
//! https://github.com/morhetz/gruvbox
//!
//! File: gruvbox-dark-soft.theme
//! Desc: Gruvbox dark (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:49 PDT -0700
//!-------------------------------------------------------------------------------
* { * {
spacing: 2; selected-normal-foreground: rgba ( 251, 241, 199, 100 % );
background: #00000000; foreground: rgba ( 235, 219, 178, 100 % );
normal-foreground: @foreground;
alternate-normal-background: rgba ( 60, 56, 54, 100 % );
red: rgba ( 220, 50, 47, 100 % );
selected-urgent-foreground: rgba ( 50, 48, 47, 100 % );
blue: rgba ( 38, 139, 210, 100 % );
urgent-foreground: rgba ( 50, 48, 47, 100 % );
alternate-urgent-background: rgba ( 204, 36, 29, 100 % );
active-foreground: rgba ( 50, 48, 47, 100 % );
lightbg: rgba ( 238, 232, 213, 100 % );
selected-active-foreground: rgba ( 50, 48, 47, 100 % );
alternate-active-background: rgba ( 215, 153, 33, 100 % );
background: rgba ( 50, 48, 47, 100 % );
bordercolor: rgba ( 168, 153, 132, 100 % );
alternate-normal-foreground: @foreground;
normal-background: rgba ( 50, 48, 47, 100 % );
lightfg: rgba ( 88, 104, 117, 100 % );
selected-normal-background: rgba ( 102, 92, 84, 100 % );
border-color: @foreground;
spacing: 2;
separatorcolor: rgba ( 168, 153, 132, 100 % );
urgent-background: rgba ( 204, 36, 29, 100 % );
selected-urgent-background: rgba ( 251, 73, 52, 100 % );
alternate-urgent-foreground: @urgent-foreground;
background-color: rgba ( 0, 0, 0, 0 % );
alternate-active-foreground: @active-foreground;
active-background: rgba ( 215, 153, 33, 100 % );
selected-active-background: rgba ( 250, 189, 47, 100 % );
} }
#window { #window {
border: 2; background-color: @background;
foreground: #A89984FF; border: 1;
padding: 5; padding: 5;
background: #32302FFF;
} }
#window.mainbox { #mainbox {
border: 0; border: 0;
padding: 0; padding: 0;
} }
#window.mainbox.message.box { #message {
border: 2px 0px 0px ; border: 1px dash 0px 0px ;
padding: 2px 0px 0px ; border-color: @separatorcolor;
padding: 1px ;
} }
#window.mainbox.message.normal { #textbox {
foreground: #EBDBB2FF; text-color: @foreground;
background: #32302FFF;
} }
#window.mainbox.listview { #listview {
fixed-height: 1; fixed-height: 0;
border: 2px 0px 0px ; border: 2px dash 0px 0px ;
columns: 1; border-color: @separatorcolor;
spacing: 2px ;
scrollbar: true;
padding: 2px 0px 0px ; padding: 2px 0px 0px ;
} }
#window.mainbox.listview.element { #element {
border: 0;
}
#window.mainbox.listview.element.normal.normal {
foreground: #EBDBB2FF;
background: #32302FFF;
}
#window.mainbox.listview.element.normal.urgent {
foreground: #32302FFF;
background: #CC241DFF;
}
#window.mainbox.listview.element.normal.active {
foreground: #32302FFF;
background: #D79921FF;
}
#window.mainbox.listview.element.selected.normal {
foreground: #FBF1C7FF;
background: #665C54FF;
}
#window.mainbox.listview.element.selected.urgent {
foreground: #32302FFF;
background: #FB4934FF;
}
#window.mainbox.listview.element.selected.active {
foreground: #32302FFF;
background: #FABD2FFF;
}
#window.mainbox.listview.element.alternate.normal {
foreground: #EBDBB2FF;
background: #3C3836FF;
}
#window.mainbox.listview.element.alternate.urgent {
foreground: #32302FFF;
background: #CC241DFF;
}
#window.mainbox.listview.element.alternate.active {
foreground: #32302FFF;
background: #D79921FF;
}
#window.mainbox.listview.scrollbar {
border: 0; border: 0;
padding: 0; padding: 1px ;
} }
#window.mainbox.sidebar.box { #element.normal.normal {
border: 2px 0px 0px ; background-color: @normal-background;
text-color: @normal-foreground;
} }
#window.mainbox.inputbar { #element.normal.urgent {
spacing: 0; background-color: @urgent-background;
text-color: @urgent-foreground;
} }
#window.mainbox.inputbar.box { #element.normal.active {
background-color: @active-background;
text-color: @active-foreground;
} }
#window.mainbox.inputbar.normal { #element.selected.normal {
foreground: #EBDBB2FF; background-color: @selected-normal-background;
background: #32302FFF; text-color: @selected-normal-foreground;
}
#element.selected.urgent {
background-color: @selected-urgent-background;
text-color: @selected-urgent-foreground;
}
#element.selected.active {
background-color: @selected-active-background;
text-color: @selected-active-foreground;
}
#element.alternate.normal {
background-color: @alternate-normal-background;
text-color: @alternate-normal-foreground;
}
#element.alternate.urgent {
background-color: @alternate-urgent-background;
text-color: @alternate-urgent-foreground;
}
#element.alternate.active {
background-color: @alternate-active-background;
text-color: @alternate-active-foreground;
}
#scrollbar {
width: 4px ;
border: 0;
handle-width: 8px ;
padding: 0;
}
#sidebar {
border: 2px dash 0px 0px ;
border-color: @separatorcolor;
}
#button.selected {
background-color: @selected-normal-background;
text-color: @selected-normal-foreground;
}
#inputbar {
spacing: 0;
text-color: @normal-foreground;
padding: 1px ;
}
#case-indicator {
spacing: 0;
text-color: @normal-foreground;
}
#entry {
spacing: 0;
text-color: @normal-foreground;
}
#prompt {
spacing: 0;
text-color: @normal-foreground;
} }

View file

@ -1,95 +1,127 @@
//!-------------------------------------------------------------------------------
//! Rofi color theme
//!
//! Based on the Gruvbox color scheme for Vim by morhetz
//! https://github.com/morhetz/gruvbox
//!
//! File: gruvbox-dark.theme
//! Desc: Gruvbox dark color theme for Rofi
//! Author: bardisty <b@bah.im>
//! Source: https://github.com/bardisty/gruvbox-rofi
//! Modified: Sat Oct 22 2016 03:11:40 PDT -0700
//!-------------------------------------------------------------------------------
* { * {
spacing: 2; selected-normal-foreground: rgba ( 251, 241, 199, 100 % );
background: #00000000; foreground: rgba ( 235, 219, 178, 100 % );
normal-foreground: @foreground;
alternate-normal-background: rgba ( 50, 48, 47, 100 % );
red: rgba ( 220, 50, 47, 100 % );
selected-urgent-foreground: rgba ( 40, 40, 40, 100 % );
blue: rgba ( 38, 139, 210, 100 % );
urgent-foreground: rgba ( 40, 40, 40, 100 % );
alternate-urgent-background: rgba ( 204, 36, 29, 100 % );
active-foreground: rgba ( 40, 40, 40, 100 % );
lightbg: rgba ( 238, 232, 213, 100 % );
selected-active-foreground: rgba ( 40, 40, 40, 100 % );
alternate-active-background: rgba ( 215, 153, 33, 100 % );
background: rgba ( 40, 40, 40, 100 % );
bordercolor: rgba ( 168, 153, 132, 100 % );
alternate-normal-foreground: @foreground;
normal-background: rgba ( 40, 40, 40, 100 % );
lightfg: rgba ( 88, 104, 117, 100 % );
selected-normal-background: rgba ( 102, 92, 84, 100 % );
border-color: @foreground;
spacing: 2;
separatorcolor: rgba ( 168, 153, 132, 100 % );
urgent-background: rgba ( 204, 36, 29, 100 % );
selected-urgent-background: rgba ( 251, 73, 52, 100 % );
alternate-urgent-foreground: @urgent-foreground;
background-color: rgba ( 0, 0, 0, 0 % );
alternate-active-foreground: @active-foreground;
active-background: rgba ( 215, 153, 33, 100 % );
selected-active-background: rgba ( 250, 189, 47, 100 % );
} }
#window { #window {
border: 2; background-color: @background;
foreground: #A89984FF; border: 1;
padding: 5; padding: 5;
background: #282828FF;
} }
#window.mainbox { #mainbox {
border: 0; border: 0;
padding: 0; padding: 0;
} }
#window.mainbox.message.box { #message {
border: 2px 0px 0px ; border: 1px dash 0px 0px ;
padding: 2px 0px 0px ; border-color: @separatorcolor;
padding: 1px ;
} }
#window.mainbox.message.normal { #textbox {
foreground: #EBDBB2FF; text-color: @foreground;
background: #282828FF;
} }
#window.mainbox.listview { #listview {
fixed-height: 1; fixed-height: 0;
border: 2px 0px 0px ; border: 2px dash 0px 0px ;
columns: 1; border-color: @separatorcolor;
spacing: 2px ;
scrollbar: true;
padding: 2px 0px 0px ; padding: 2px 0px 0px ;
} }
#window.mainbox.listview.element { #element {
border: 0;
}
#window.mainbox.listview.element.normal.normal {
foreground: #EBDBB2FF;
background: #282828FF;
}
#window.mainbox.listview.element.normal.urgent {
foreground: #282828FF;
background: #CC241DFF;
}
#window.mainbox.listview.element.normal.active {
foreground: #282828FF;
background: #D79921FF;
}
#window.mainbox.listview.element.selected.normal {
foreground: #FBF1C7FF;
background: #665C54FF;
}
#window.mainbox.listview.element.selected.urgent {
foreground: #282828FF;
background: #FB4934FF;
}
#window.mainbox.listview.element.selected.active {
foreground: #282828FF;
background: #FABD2FFF;
}
#window.mainbox.listview.element.alternate.normal {
foreground: #EBDBB2FF;
background: #32302FFF;
}
#window.mainbox.listview.element.alternate.urgent {
foreground: #282828FF;
background: #CC241DFF;
}
#window.mainbox.listview.element.alternate.active {
foreground: #282828FF;
background: #D79921FF;
}
#window.mainbox.listview.scrollbar {
border: 0; border: 0;
padding: 0; padding: 1px ;
} }
#window.mainbox.sidebar.box { #element.normal.normal {
border: 2px 0px 0px ; background-color: @normal-background;
text-color: @normal-foreground;
} }
#window.mainbox.inputbar { #element.normal.urgent {
spacing: 0; background-color: @urgent-background;
text-color: @urgent-foreground;
} }
#window.mainbox.inputbar.box { #element.normal.active {
background-color: @active-background;
text-color: @active-foreground;
} }
#window.mainbox.inputbar.normal { #element.selected.normal {
foreground: #EBDBB2FF; background-color: @selected-normal-background;
background: #282828FF; text-color: @selected-normal-foreground;
}
#element.selected.urgent {
background-color: @selected-urgent-background;
text-color: @selected-urgent-foreground;
}
#element.selected.active {
background-color: @selected-active-background;
text-color: @selected-active-foreground;
}
#element.alternate.normal {
background-color: @alternate-normal-background;
text-color: @alternate-normal-foreground;
}
#element.alternate.urgent {
background-color: @alternate-urgent-background;
text-color: @alternate-urgent-foreground;
}
#element.alternate.active {
background-color: @alternate-active-background;
text-color: @alternate-active-foreground;
}
#scrollbar {
width: 4px ;
border: 0;
handle-width: 8px ;
padding: 0;
}
#sidebar {
border: 2px dash 0px 0px ;
border-color: @separatorcolor;
}
#button.selected {
background-color: @selected-normal-background;
text-color: @selected-normal-foreground;
}
#inputbar {
spacing: 0;
text-color: @normal-foreground;
padding: 1px ;
}
#case-indicator {
spacing: 0;
text-color: @normal-foreground;
}
#entry {
spacing: 0;
text-color: @normal-foreground;
}
#prompt {
spacing: 0;
text-color: @normal-foreground;
} }

View file

@ -1,95 +1,127 @@
//!-------------------------------------------------------------------------------
//! Rofi color theme
//!
//! Based on the Gruvbox color scheme for Vim by morhetz
//! https://github.com/morhetz/gruvbox
//!
//! File: gruvbox-light-hard.theme
//! Desc: Gruvbox light (hard contrast) color theme for Rofi
//! Author: bardisty <b@bah.im>
//! Source: https://github.com/bardisty/gruvbox-rofi
//! Modified: Sat Oct 22 2016 03:11:32 PDT -0700
//!-------------------------------------------------------------------------------
* { * {
spacing: 2; selected-normal-foreground: rgba ( 40, 40, 40, 100 % );
background: #00000000; foreground: rgba ( 60, 56, 54, 100 % );
normal-foreground: @foreground;
alternate-normal-background: rgba ( 251, 241, 199, 100 % );
red: rgba ( 220, 50, 47, 100 % );
selected-urgent-foreground: rgba ( 253, 244, 193, 100 % );
blue: rgba ( 38, 139, 210, 100 % );
urgent-foreground: rgba ( 253, 244, 193, 100 % );
alternate-urgent-background: rgba ( 204, 36, 29, 100 % );
active-foreground: rgba ( 253, 244, 193, 100 % );
lightbg: rgba ( 238, 232, 213, 100 % );
selected-active-foreground: rgba ( 253, 244, 193, 100 % );
alternate-active-background: rgba ( 181, 118, 20, 100 % );
background: rgba ( 249, 245, 215, 100 % );
bordercolor: rgba ( 124, 111, 100, 100 % );
alternate-normal-foreground: @foreground;
normal-background: rgba ( 249, 245, 215, 100 % );
lightfg: rgba ( 88, 104, 117, 100 % );
selected-normal-background: rgba ( 235, 219, 178, 100 % );
border-color: @foreground;
spacing: 2;
separatorcolor: rgba ( 124, 111, 100, 100 % );
urgent-background: rgba ( 204, 36, 29, 100 % );
selected-urgent-background: rgba ( 251, 73, 52, 100 % );
alternate-urgent-foreground: @urgent-foreground;
background-color: rgba ( 0, 0, 0, 0 % );
alternate-active-foreground: @active-foreground;
active-background: rgba ( 181, 118, 20, 100 % );
selected-active-background: rgba ( 215, 153, 33, 100 % );
} }
#window { #window {
border: 2; background-color: @background;
foreground: #7C6F64FF; border: 1;
padding: 5; padding: 5;
background: #F9F5D7FF;
} }
#window.mainbox { #mainbox {
border: 0; border: 0;
padding: 0; padding: 0;
} }
#window.mainbox.message.box { #message {
border: 2px 0px 0px ; border: 1px dash 0px 0px ;
padding: 2px 0px 0px ; border-color: @separatorcolor;
padding: 1px ;
} }
#window.mainbox.message.normal { #textbox {
foreground: #3C3836FF; text-color: @foreground;
background: #F9F5D7FF;
} }
#window.mainbox.listview { #listview {
fixed-height: 1; fixed-height: 0;
border: 2px 0px 0px ; border: 2px dash 0px 0px ;
columns: 1; border-color: @separatorcolor;
spacing: 2px ;
scrollbar: true;
padding: 2px 0px 0px ; padding: 2px 0px 0px ;
} }
#window.mainbox.listview.element { #element {
border: 0;
}
#window.mainbox.listview.element.normal.normal {
foreground: #3C3836FF;
background: #F9F5D7FF;
}
#window.mainbox.listview.element.normal.urgent {
foreground: #FDF4C1FF;
background: #CC241DFF;
}
#window.mainbox.listview.element.normal.active {
foreground: #FDF4C1FF;
background: #B57614FF;
}
#window.mainbox.listview.element.selected.normal {
foreground: #282828FF;
background: #EBDBB2FF;
}
#window.mainbox.listview.element.selected.urgent {
foreground: #FDF4C1FF;
background: #FB4934FF;
}
#window.mainbox.listview.element.selected.active {
foreground: #FDF4C1FF;
background: #D79921FF;
}
#window.mainbox.listview.element.alternate.normal {
foreground: #3C3836FF;
background: #FBF1C7FF;
}
#window.mainbox.listview.element.alternate.urgent {
foreground: #FDF4C1FF;
background: #CC241DFF;
}
#window.mainbox.listview.element.alternate.active {
foreground: #FDF4C1FF;
background: #B57614FF;
}
#window.mainbox.listview.scrollbar {
border: 0; border: 0;
padding: 0; padding: 1px ;
} }
#window.mainbox.sidebar.box { #element.normal.normal {
border: 2px 0px 0px ; background-color: @normal-background;
text-color: @normal-foreground;
} }
#window.mainbox.inputbar { #element.normal.urgent {
spacing: 0; background-color: @urgent-background;
text-color: @urgent-foreground;
} }
#window.mainbox.inputbar.box { #element.normal.active {
background-color: @active-background;
text-color: @active-foreground;
} }
#window.mainbox.inputbar.normal { #element.selected.normal {
foreground: #3C3836FF; background-color: @selected-normal-background;
background: #F9F5D7FF; text-color: @selected-normal-foreground;
}
#element.selected.urgent {
background-color: @selected-urgent-background;
text-color: @selected-urgent-foreground;
}
#element.selected.active {
background-color: @selected-active-background;
text-color: @selected-active-foreground;
}
#element.alternate.normal {
background-color: @alternate-normal-background;
text-color: @alternate-normal-foreground;
}
#element.alternate.urgent {
background-color: @alternate-urgent-background;
text-color: @alternate-urgent-foreground;
}
#element.alternate.active {
background-color: @alternate-active-background;
text-color: @alternate-active-foreground;
}
#scrollbar {
width: 4px ;
border: 0;
handle-width: 8px ;
padding: 0;
}
#sidebar {
border: 2px dash 0px 0px ;
border-color: @separatorcolor;
}
#button.selected {
background-color: @selected-normal-background;
text-color: @selected-normal-foreground;
}
#inputbar {
spacing: 0;
text-color: @normal-foreground;
padding: 1px ;
}
#case-indicator {
spacing: 0;
text-color: @normal-foreground;
}
#entry {
spacing: 0;
text-color: @normal-foreground;
}
#prompt {
spacing: 0;
text-color: @normal-foreground;
} }

View file

@ -1,95 +1,127 @@
//!-------------------------------------------------------------------------------
//! 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; selected-normal-foreground: rgba ( 40, 40, 40, 100 % );
background: #00000000; foreground: rgba ( 60, 56, 54, 100 % );
normal-foreground: @foreground;
alternate-normal-background: rgba ( 235, 219, 178, 100 % );
red: rgba ( 220, 50, 47, 100 % );
selected-urgent-foreground: rgba ( 242, 229, 188, 100 % );
blue: rgba ( 38, 139, 210, 100 % );
urgent-foreground: rgba ( 242, 229, 188, 100 % );
alternate-urgent-background: rgba ( 204, 36, 29, 100 % );
active-foreground: rgba ( 242, 229, 188, 100 % );
lightbg: rgba ( 238, 232, 213, 100 % );
selected-active-foreground: rgba ( 242, 229, 188, 100 % );
alternate-active-background: rgba ( 181, 118, 20, 100 % );
background: rgba ( 242, 229, 188, 100 % );
bordercolor: rgba ( 124, 111, 100, 100 % );
alternate-normal-foreground: @foreground;
normal-background: rgba ( 242, 229, 188, 100 % );
lightfg: rgba ( 88, 104, 117, 100 % );
selected-normal-background: rgba ( 213, 196, 161, 100 % );
border-color: @foreground;
spacing: 2;
separatorcolor: rgba ( 124, 111, 100, 100 % );
urgent-background: rgba ( 204, 36, 29, 100 % );
selected-urgent-background: rgba ( 251, 73, 52, 100 % );
alternate-urgent-foreground: @urgent-foreground;
background-color: rgba ( 0, 0, 0, 0 % );
alternate-active-foreground: @active-foreground;
active-background: rgba ( 181, 118, 20, 100 % );
selected-active-background: rgba ( 215, 153, 33, 100 % );
} }
#window { #window {
border: 2; background-color: @background;
foreground: #7C6F64FF; border: 1;
padding: 5; padding: 5;
background: #F2E5BCFF;
} }
#window.mainbox { #mainbox {
border: 0; border: 0;
padding: 0; padding: 0;
} }
#window.mainbox.message.box { #message {
border: 2px 0px 0px ; border: 1px dash 0px 0px ;
padding: 2px 0px 0px ; border-color: @separatorcolor;
padding: 1px ;
} }
#window.mainbox.message.normal { #textbox {
foreground: #3C3836FF; text-color: @foreground;
background: #F2E5BCFF;
} }
#window.mainbox.listview { #listview {
fixed-height: 1; fixed-height: 0;
border: 2px 0px 0px ; border: 2px dash 0px 0px ;
columns: 1; border-color: @separatorcolor;
spacing: 2px ;
scrollbar: true;
padding: 2px 0px 0px ; padding: 2px 0px 0px ;
} }
#window.mainbox.listview.element { #element {
border: 0;
}
#window.mainbox.listview.element.normal.normal {
foreground: #3C3836FF;
background: #F2E5BCFF;
}
#window.mainbox.listview.element.normal.urgent {
foreground: #F2E5BCFF;
background: #CC241DFF;
}
#window.mainbox.listview.element.normal.active {
foreground: #F2E5BCFF;
background: #B57614FF;
}
#window.mainbox.listview.element.selected.normal {
foreground: #282828FF;
background: #D5C4A1FF;
}
#window.mainbox.listview.element.selected.urgent {
foreground: #F2E5BCFF;
background: #FB4934FF;
}
#window.mainbox.listview.element.selected.active {
foreground: #F2E5BCFF;
background: #D79921FF;
}
#window.mainbox.listview.element.alternate.normal {
foreground: #3C3836FF;
background: #EBDBB2FF;
}
#window.mainbox.listview.element.alternate.urgent {
foreground: #F2E5BCFF;
background: #CC241DFF;
}
#window.mainbox.listview.element.alternate.active {
foreground: #F2E5BCFF;
background: #B57614FF;
}
#window.mainbox.listview.scrollbar {
border: 0; border: 0;
padding: 0; padding: 1px ;
} }
#window.mainbox.sidebar.box { #element.normal.normal {
border: 2px 0px 0px ; background-color: @normal-background;
text-color: @normal-foreground;
} }
#window.mainbox.inputbar { #element.normal.urgent {
spacing: 0; background-color: @urgent-background;
text-color: @urgent-foreground;
} }
#window.mainbox.inputbar.box { #element.normal.active {
background-color: @active-background;
text-color: @active-foreground;
} }
#window.mainbox.inputbar.normal { #element.selected.normal {
foreground: #3C3836FF; background-color: @selected-normal-background;
background: #F2E5BCFF; text-color: @selected-normal-foreground;
}
#element.selected.urgent {
background-color: @selected-urgent-background;
text-color: @selected-urgent-foreground;
}
#element.selected.active {
background-color: @selected-active-background;
text-color: @selected-active-foreground;
}
#element.alternate.normal {
background-color: @alternate-normal-background;
text-color: @alternate-normal-foreground;
}
#element.alternate.urgent {
background-color: @alternate-urgent-background;
text-color: @alternate-urgent-foreground;
}
#element.alternate.active {
background-color: @alternate-active-background;
text-color: @alternate-active-foreground;
}
#scrollbar {
width: 4px ;
border: 0;
handle-width: 8px ;
padding: 0;
}
#sidebar {
border: 2px dash 0px 0px ;
border-color: @separatorcolor;
}
#button.selected {
background-color: @selected-normal-background;
text-color: @selected-normal-foreground;
}
#inputbar {
spacing: 0;
text-color: @normal-foreground;
padding: 1px ;
}
#case-indicator {
spacing: 0;
text-color: @normal-foreground;
}
#entry {
spacing: 0;
text-color: @normal-foreground;
}
#prompt {
spacing: 0;
text-color: @normal-foreground;
} }

View file

@ -1,95 +1,127 @@
//!-------------------------------------------------------------------------------
//! Rofi color theme
//!
//! Based on the Gruvbox color scheme for Vim by morhetz
//! https://github.com/morhetz/gruvbox
//!
//! File: gruvbox-light.theme
//! Desc: Gruvbox light color theme for rofi
//! Author: bardisty <b@bah.im>
//! Source: https://github.com/bardisty/gruvbox-rofi
//! Modified: Sat Oct 22 2016 03:11:11 PDT -0700
//!-------------------------------------------------------------------------------
* { * {
spacing: 2; selected-normal-foreground: rgba ( 40, 40, 40, 100 % );
background: #00000000; foreground: rgba ( 60, 56, 54, 100 % );
normal-foreground: @foreground;
alternate-normal-background: rgba ( 242, 229, 188, 100 % );
red: rgba ( 220, 50, 47, 100 % );
selected-urgent-foreground: rgba ( 251, 241, 199, 100 % );
blue: rgba ( 38, 139, 210, 100 % );
urgent-foreground: rgba ( 251, 241, 199, 100 % );
alternate-urgent-background: rgba ( 204, 36, 29, 100 % );
active-foreground: rgba ( 251, 241, 199, 100 % );
lightbg: rgba ( 238, 232, 213, 100 % );
selected-active-foreground: rgba ( 251, 241, 199, 100 % );
alternate-active-background: rgba ( 181, 118, 20, 100 % );
background: rgba ( 251, 241, 199, 100 % );
bordercolor: rgba ( 124, 111, 100, 100 % );
alternate-normal-foreground: @foreground;
normal-background: rgba ( 251, 241, 199, 100 % );
lightfg: rgba ( 88, 104, 117, 100 % );
selected-normal-background: rgba ( 213, 196, 161, 100 % );
border-color: @foreground;
spacing: 2;
separatorcolor: rgba ( 124, 111, 100, 100 % );
urgent-background: rgba ( 204, 36, 29, 100 % );
selected-urgent-background: rgba ( 251, 73, 52, 100 % );
alternate-urgent-foreground: @urgent-foreground;
background-color: rgba ( 0, 0, 0, 0 % );
alternate-active-foreground: @active-foreground;
active-background: rgba ( 181, 118, 20, 100 % );
selected-active-background: rgba ( 215, 153, 33, 100 % );
} }
#window { #window {
border: 2; background-color: @background;
foreground: #7C6F64FF; border: 1;
padding: 5; padding: 5;
background: #FBF1C7FF;
} }
#window.mainbox { #mainbox {
border: 0; border: 0;
padding: 0; padding: 0;
} }
#window.mainbox.message.box { #message {
border: 2px 0px 0px ; border: 1px dash 0px 0px ;
padding: 2px 0px 0px ; border-color: @separatorcolor;
padding: 1px ;
} }
#window.mainbox.message.normal { #textbox {
foreground: #3C3836FF; text-color: @foreground;
background: #FBF1C7FF;
} }
#window.mainbox.listview { #listview {
fixed-height: 1; fixed-height: 0;
border: 2px 0px 0px ; border: 2px dash 0px 0px ;
columns: 1; border-color: @separatorcolor;
spacing: 2px ;
scrollbar: true;
padding: 2px 0px 0px ; padding: 2px 0px 0px ;
} }
#window.mainbox.listview.element { #element {
border: 0;
}
#window.mainbox.listview.element.normal.normal {
foreground: #3C3836FF;
background: #FBF1C7FF;
}
#window.mainbox.listview.element.normal.urgent {
foreground: #FBF1C7FF;
background: #CC241DFF;
}
#window.mainbox.listview.element.normal.active {
foreground: #FBF1C7FF;
background: #B57614FF;
}
#window.mainbox.listview.element.selected.normal {
foreground: #282828FF;
background: #D5C4A1FF;
}
#window.mainbox.listview.element.selected.urgent {
foreground: #FBF1C7FF;
background: #FB4934FF;
}
#window.mainbox.listview.element.selected.active {
foreground: #FBF1C7FF;
background: #D79921FF;
}
#window.mainbox.listview.element.alternate.normal {
foreground: #3C3836FF;
background: #F2E5BCFF;
}
#window.mainbox.listview.element.alternate.urgent {
foreground: #FBF1C7FF;
background: #CC241DFF;
}
#window.mainbox.listview.element.alternate.active {
foreground: #FBF1C7FF;
background: #B57614FF;
}
#window.mainbox.listview.scrollbar {
border: 0; border: 0;
padding: 0; padding: 1px ;
} }
#window.mainbox.sidebar.box { #element.normal.normal {
border: 2px 0px 0px ; background-color: @normal-background;
text-color: @normal-foreground;
} }
#window.mainbox.inputbar { #element.normal.urgent {
spacing: 0; background-color: @urgent-background;
text-color: @urgent-foreground;
} }
#window.mainbox.inputbar.box { #element.normal.active {
background-color: @active-background;
text-color: @active-foreground;
} }
#window.mainbox.inputbar.normal { #element.selected.normal {
foreground: #3C3836FF; background-color: @selected-normal-background;
background: #FBF1C7FF; text-color: @selected-normal-foreground;
}
#element.selected.urgent {
background-color: @selected-urgent-background;
text-color: @selected-urgent-foreground;
}
#element.selected.active {
background-color: @selected-active-background;
text-color: @selected-active-foreground;
}
#element.alternate.normal {
background-color: @alternate-normal-background;
text-color: @alternate-normal-foreground;
}
#element.alternate.urgent {
background-color: @alternate-urgent-background;
text-color: @alternate-urgent-foreground;
}
#element.alternate.active {
background-color: @alternate-active-background;
text-color: @alternate-active-foreground;
}
#scrollbar {
width: 4px ;
border: 0;
handle-width: 8px ;
padding: 0;
}
#sidebar {
border: 2px dash 0px 0px ;
border-color: @separatorcolor;
}
#button.selected {
background-color: @selected-normal-background;
text-color: @selected-normal-foreground;
}
#inputbar {
spacing: 0;
text-color: @normal-foreground;
padding: 1px ;
}
#case-indicator {
spacing: 0;
text-color: @normal-foreground;
}
#entry {
spacing: 0;
text-color: @normal-foreground;
}
#prompt {
spacing: 0;
text-color: @normal-foreground;
} }

View file

@ -1,88 +1,127 @@
//! ------------------------------------------------------------------------------
//! ROFI Color theme
//! User: qball
//! Copyright: Dave Davenport
//! ------------------------------------------------------------------------------
* { * {
spacing: 2; selected-normal-foreground: rgba ( 51, 51, 51, 100 % );
background: #00000000; foreground: rgba ( 17, 170, 170, 100 % );
normal-foreground: @foreground;
alternate-normal-background: rgba ( 255, 255, 255, 7 % );
red: rgba ( 220, 50, 47, 100 % );
selected-urgent-foreground: rgba ( 51, 51, 51, 100 % );
blue: rgba ( 38, 139, 210, 100 % );
urgent-foreground: rgba ( 255, 153, 153, 100 % );
alternate-urgent-background: rgba ( 255, 255, 255, 7 % );
active-foreground: rgba ( 170, 170, 17, 100 % );
lightbg: rgba ( 238, 232, 213, 100 % );
selected-active-foreground: rgba ( 51, 51, 51, 100 % );
alternate-active-background: rgba ( 255, 255, 255, 7 % );
background: rgba ( 51, 51, 51, 93 % );
bordercolor: rgba ( 17, 170, 170, 100 % );
alternate-normal-foreground: @foreground;
normal-background: rgba ( 0, 0, 0, 0 % );
lightfg: rgba ( 88, 104, 117, 100 % );
selected-normal-background: rgba ( 17, 170, 170, 100 % );
border-color: @foreground;
spacing: 2;
separatorcolor: rgba ( 17, 170, 170, 100 % );
urgent-background: rgba ( 0, 0, 0, 0 % );
selected-urgent-background: rgba ( 255, 153, 153, 100 % );
alternate-urgent-foreground: @urgent-foreground;
background-color: rgba ( 0, 0, 0, 0 % );
alternate-active-foreground: @active-foreground;
active-background: rgba ( 0, 0, 0, 0 % );
selected-active-background: rgba ( 170, 170, 17, 100 % );
} }
#window { #window {
border: 2; background-color: @background;
foreground: #10A0A0FF; border: 1;
padding: 5; padding: 5;
background: #333333EE;
} }
#window.mainbox { #mainbox {
border: 0; border: 0;
padding: 0; padding: 0;
} }
#window.mainbox.message.box { #message {
border: 2px dash 0px 0px ; border: 1px dash 0px 0px ;
padding: 2px 0px 0px ; border-color: @separatorcolor;
padding: 1px ;
} }
#window.mainbox.message.normal { #textbox {
foreground: #10A0A0FF; text-color: @foreground;
background: #00000000;
} }
#window.mainbox.listview { #listview {
fixed-height: 1; fixed-height: 0;
border: 2px dash 0px 0px ; border: 2px dash 0px 0px ;
columns: 1; border-color: @separatorcolor;
spacing: 2px ;
scrollbar: true;
padding: 2px 0px 0px ; padding: 2px 0px 0px ;
} }
#window.mainbox.listview.element { #element {
border: 0;
}
#window.mainbox.listview.element.normal.normal {
foreground: #10A0A0FF;
background: #00000000;
}
#window.mainbox.listview.element.normal.urgent {
foreground: #F09090FF;
background: #00000000;
}
#window.mainbox.listview.element.normal.active {
foreground: #A0A010FF;
background: #00000000;
}
#window.mainbox.listview.element.selected.normal {
foreground: #303030FF;
background: #10A0A0FF;
}
#window.mainbox.listview.element.selected.urgent {
foreground: #303030FF;
background: #F09090FF;
}
#window.mainbox.listview.element.selected.active {
foreground: #303030FF;
background: #A0A010FF;
}
#window.mainbox.listview.element.alternate.normal {
foreground: #10A0A0FF;
background: #FFFFFF11;
}
#window.mainbox.listview.element.alternate.urgent {
foreground: #F09090FF;
background: #FFFFFF11;
}
#window.mainbox.listview.element.alternate.active {
foreground: #A0A010FF;
background: #FFFFFF11;
}
#window.mainbox.listview.scrollbar {
border: 0; border: 0;
padding: 0; padding: 1px ;
} }
#window.mainbox.sidebar.box { #element.normal.normal {
border: 2px dash 0px 0px ; background-color: @normal-background;
text-color: @normal-foreground;
} }
#window.mainbox.inputbar { #element.normal.urgent {
spacing: 0; background-color: @urgent-background;
text-color: @urgent-foreground;
} }
#window.mainbox.inputbar.box { #element.normal.active {
background-color: @active-background;
text-color: @active-foreground;
} }
#window.mainbox.inputbar.normal { #element.selected.normal {
foreground: #10A0A0FF; background-color: @selected-normal-background;
background: #00000000; text-color: @selected-normal-foreground;
}
#element.selected.urgent {
background-color: @selected-urgent-background;
text-color: @selected-urgent-foreground;
}
#element.selected.active {
background-color: @selected-active-background;
text-color: @selected-active-foreground;
}
#element.alternate.normal {
background-color: @alternate-normal-background;
text-color: @alternate-normal-foreground;
}
#element.alternate.urgent {
background-color: @alternate-urgent-background;
text-color: @alternate-urgent-foreground;
}
#element.alternate.active {
background-color: @alternate-active-background;
text-color: @alternate-active-foreground;
}
#scrollbar {
width: 4px ;
border: 0;
handle-width: 8px ;
padding: 0;
}
#sidebar {
border: 2px dash 0px 0px ;
border-color: @separatorcolor;
}
#button.selected {
background-color: @selected-normal-background;
text-color: @selected-normal-foreground;
}
#inputbar {
spacing: 0;
text-color: @normal-foreground;
padding: 1px ;
}
#case-indicator {
spacing: 0;
text-color: @normal-foreground;
}
#entry {
spacing: 0;
text-color: @normal-foreground;
}
#prompt {
spacing: 0;
text-color: @normal-foreground;
} }

View file

@ -11,111 +11,107 @@
grey: #eeeeee; grey: #eeeeee;
spacing: 2; spacing: 2;
background: #00000000; background-color: #00000000;
border-color: #444444FF;
anchor: north; anchor: north;
location: center; location: center;
} }
#window { #window {
transparency: "screenshot"; transparency: "screenshot";
background: #00000000; background-color: #00000000;
border: 0; border: 0;
padding: 0% 0% 1em 0%; padding: 0% 0% 1em 0%;
foreground: #444444FF;
x-offset: 0; x-offset: 0;
y-offset: -10%; y-offset: -10%;
} }
#window.mainbox { #mainbox {
padding: 0px; padding: 0px;
}
#window.mainbox.box {
border: 0; border: 0;
spacing: 1%; spacing: 1%;
} }
#window.mainbox.message.box { #message {
border: 2px; border: 2px;
padding: 1em; padding: 1em;
background: @white; background-color: @white;
foreground: @back; text-color: @back;
} }
#window.mainbox.message.normal { #textbox normal {
foreground: #002B36FF; text-color: #002B36FF;
padding: 0; padding: 0;
border: 0; border: 0;
} }
#window.mainbox.listview { #listview {
fixed-height: 1; fixed-height: 1;
border: 2px; border: 2px;
padding: 1em; padding: 1em;
reverse: false; reverse: false;
columns: 1; columns: 1;
background: @white; background-color: @white;
} }
#window.mainbox.listview.element { #element {
border: 0; border: 0;
padding: 2px; padding: 2px;
highlight: bold ; highlight: bold ;
} }
#window.mainbox.listview.element.normal.normal { #element normal.normal {
foreground: #002B36FF; text-color: #002B36FF;
background: #F5F5F500; background-color: #F5F5F500;
} }
#window.mainbox.listview.element.normal.urgent { #element normal.urgent {
foreground: #D75F00FF; text-color: #D75F00FF;
background: #F5F5F5FF; background-color: #F5F5F5FF;
} }
#window.mainbox.listview.element.normal.active { #element normal.active {
foreground: #005F87FF; text-color: #005F87FF;
background: #F5F5F5FF; background-color: #F5F5F5FF;
} }
#window.mainbox.listview.element.selected.normal { #element selected.normal {
foreground: #F5F5F5FF; text-color: #F5F5F5FF;
background: #4271AEFF; background-color: #4271AEFF;
} }
#window.mainbox.listview.element.selected.urgent { #element selected.urgent {
foreground: #F5F5F5FF; text-color: #F5F5F5FF;
background: #D75F00FF; background-color: #D75F00FF;
} }
#window.mainbox.listview.element.selected.active { #element selected.active {
foreground: #F5F5F5FF; text-color: #F5F5F5FF;
background: #005F87FF; background-color: #005F87FF;
} }
#window.mainbox.listview.element.alternate.normal { #element alternate.normal {
foreground: #002B36FF; text-color: #002B36FF;
background: #D0D0D0FF; background-color: #D0D0D0FF;
} }
#window.mainbox.listview.element.alternate.urgent { #element alternate.urgent {
foreground: #D75F00FF; text-color: #D75F00FF;
background: #D0D0D0FF; background-color: #D0D0D0FF;
} }
#window.mainbox.listview.element.alternate.active { #element alternate.active {
foreground: #005F87FF; text-color: #005F87FF;
background: #D0D0D0FF; background-color: #D0D0D0FF;
} }
#window.mainbox.listview.scrollbar { #scrollbar {
border: 0; border: 0;
padding: 0; padding: 0;
} }
#window.mainbox.inputbar { #inputbar {
spacing: 0; spacing: 0;
}
#window.mainbox.inputbar.box {
border: 2px; border: 2px;
padding: 0.5em 1em; padding: 0.5em 1em;
background: @grey; background-color: @grey;
index: 0; index: 0;
} }
#window.mainbox.inputbar.normal { #inputbar normal {
foreground: #002B36FF; foreground-color: #002B36FF;
background: #F5F5F500; background-color: #F5F5F500;
} }
#window.mainbox.sidebar.box { #sidebar {
border: 2px; border: 2px;
padding: 0.5em 1em; padding: 0.5em 1em;
background: @grey; background-color: @grey;
index: 10; index: 10;
} }
#window.mainbox.sidebar.button selected { #button selected {
text: #4271AEFF; text-color: #4271AEFF;
} }

View file

@ -1,89 +1,127 @@
//! ------------------------------------------------------------------------------
//! ROFI Color theme
//! User: Rasi
//! Copyright: Rasmus Steinke
//! ------------------------------------------------------------------------------
//! Use extended color scheme
* { * {
spacing: 2; selected-normal-foreground: rgba ( 255, 255, 255, 100 % );
background: #00000000; foreground: rgba ( 180, 180, 180, 100 % );
normal-foreground: @foreground;
alternate-normal-background: rgba ( 47, 30, 46, 63 % );
red: rgba ( 220, 50, 47, 100 % );
selected-urgent-foreground: rgba ( 239, 97, 85, 100 % );
blue: rgba ( 38, 139, 210, 100 % );
urgent-foreground: rgba ( 239, 97, 85, 100 % );
alternate-urgent-background: rgba ( 47, 30, 46, 18 % );
active-foreground: rgba ( 129, 91, 164, 100 % );
lightbg: rgba ( 238, 232, 213, 100 % );
selected-active-foreground: rgba ( 129, 91, 164, 100 % );
alternate-active-background: rgba ( 47, 30, 46, 18 % );
background: rgba ( 47, 30, 46, 100 % );
bordercolor: rgba ( 239, 97, 85, 21 % );
alternate-normal-foreground: @foreground;
normal-background: rgba ( 47, 30, 46, 63 % );
lightfg: rgba ( 88, 104, 117, 100 % );
selected-normal-background: rgba ( 129, 91, 164, 33 % );
border-color: @foreground;
spacing: 2;
separatorcolor: rgba ( 239, 97, 85, 18 % );
urgent-background: rgba ( 47, 30, 46, 15 % );
selected-urgent-background: rgba ( 129, 91, 164, 33 % );
alternate-urgent-foreground: @urgent-foreground;
background-color: rgba ( 0, 0, 0, 0 % );
alternate-active-foreground: @active-foreground;
active-background: rgba ( 47, 30, 46, 15 % );
selected-active-background: rgba ( 129, 91, 164, 33 % );
} }
#window { #window {
border: 2; background-color: @background;
foreground: #EF61552F; border: 1;
padding: 5; padding: 5;
background: #2F1E2EFF;
} }
#window.mainbox { #mainbox {
border: 0; border: 0;
padding: 0; padding: 0;
} }
#window.mainbox.message.box { #message {
border: 2px dash 0px 0px ; border: 1px dash 0px 0px ;
padding: 2px 0px 0px ; border-color: @separatorcolor;
padding: 1px ;
} }
#window.mainbox.message.normal { #textbox {
foreground: #B4B4B4FF; text-color: @foreground;
background: #2F1E2EA0;
} }
#window.mainbox.listview { #listview {
fixed-height: 1; fixed-height: 0;
border: 2px dash 0px 0px ; border: 2px dash 0px 0px ;
columns: 1; border-color: @separatorcolor;
spacing: 2px ;
scrollbar: true;
padding: 2px 0px 0px ; padding: 2px 0px 0px ;
} }
#window.mainbox.listview.element { #element {
border: 0;
}
#window.mainbox.listview.element.normal.normal {
foreground: #B4B4B4FF;
background: #2F1E2EA0;
}
#window.mainbox.listview.element.normal.urgent {
foreground: #EF6155FF;
background: #2F1E2E27;
}
#window.mainbox.listview.element.normal.active {
foreground: #815BA4FF;
background: #2F1E2E27;
}
#window.mainbox.listview.element.selected.normal {
foreground: #FFFFFFFF;
background: #815BA454;
}
#window.mainbox.listview.element.selected.urgent {
foreground: #EF6155FF;
background: #815BA454;
}
#window.mainbox.listview.element.selected.active {
foreground: #815BA4FF;
background: #815BA454;
}
#window.mainbox.listview.element.alternate.normal {
foreground: #B4B4B4FF;
background: #2F1E2EA0;
}
#window.mainbox.listview.element.alternate.urgent {
foreground: #EF6155FF;
background: #2F1E2E2F;
}
#window.mainbox.listview.element.alternate.active {
foreground: #815BA4FF;
background: #2F1E2E2F;
}
#window.mainbox.listview.scrollbar {
border: 0; border: 0;
padding: 0; padding: 1px ;
} }
#window.mainbox.sidebar.box { #element.normal.normal {
border: 2px dash 0px 0px ; background-color: @normal-background;
text-color: @normal-foreground;
} }
#window.mainbox.inputbar { #element.normal.urgent {
spacing: 0; background-color: @urgent-background;
text-color: @urgent-foreground;
} }
#window.mainbox.inputbar.box { #element.normal.active {
background-color: @active-background;
text-color: @active-foreground;
} }
#window.mainbox.inputbar.normal { #element.selected.normal {
foreground: #B4B4B4FF; background-color: @selected-normal-background;
background: #2F1E2EA0; text-color: @selected-normal-foreground;
}
#element.selected.urgent {
background-color: @selected-urgent-background;
text-color: @selected-urgent-foreground;
}
#element.selected.active {
background-color: @selected-active-background;
text-color: @selected-active-foreground;
}
#element.alternate.normal {
background-color: @alternate-normal-background;
text-color: @alternate-normal-foreground;
}
#element.alternate.urgent {
background-color: @alternate-urgent-background;
text-color: @alternate-urgent-foreground;
}
#element.alternate.active {
background-color: @alternate-active-background;
text-color: @alternate-active-foreground;
}
#scrollbar {
width: 4px ;
border: 0;
handle-width: 8px ;
padding: 0;
}
#sidebar {
border: 2px dash 0px 0px ;
border-color: @separatorcolor;
}
#button.selected {
background-color: @selected-normal-background;
text-color: @selected-normal-foreground;
}
#inputbar {
spacing: 0;
text-color: @normal-foreground;
padding: 1px ;
}
#case-indicator {
spacing: 0;
text-color: @normal-foreground;
}
#entry {
spacing: 0;
text-color: @normal-foreground;
}
#prompt {
spacing: 0;
text-color: @normal-foreground;
} }

View file

@ -3,8 +3,8 @@
* Copyright: Dave Davenport * Copyright: Dave Davenport
*/ */
* { * {
foreground: #ffeedd; text-color: #ffeedd;
background: rgba(0,0,0,0); background-color: rgba(0,0,0,0);
dark: #1c1c1c; dark: #1c1c1c;
// Black // Black
black: #3d352a; black: #3d352a;
@ -42,68 +42,70 @@
highlight: bold #ffffff; highlight: bold #ffffff;
} }
#window { #window {
width: 30em; fullscreen: true;
location: west; location: west;
anchor: west; anchor: west;
}
#window box {
border: 0px 2px 0px 0px; border: 0px 2px 0px 0px;
foreground: @lightwhite; text-color: @lightwhite;
background: #1c1c1cee;
orientation: horizontal;
children: [mainbox, dummy];
} }
#window mainbox sidebar box { #dummy {
expand: true;
}
#sidebar {
border: 2px 0px 0px 0px; border: 2px 0px 0px 0px;
background: @lightblack; background-color: @lightblack;
padding: 10px; padding: 10px;
} }
#window mainbox sidebar selected { #button selected {
foreground: @lightgreen; border-color: @lightgreen;
text: @lightgreen; text-color: @lightgreen;
} }
#window mainbox inputbar { #entry {
background: @lightblack; width: 20em;
text: @lightgreen; }
#inputbar {
background-color: @lightblack;
text-color: @lightgreen;
padding: 4px; padding: 4px;
}
#window mainbox inputbar box {
border: 0px 0px 2px 0px; border: 0px 0px 2px 0px;
} }
#window mainbox box { #mainbox {
expand: false;
background-color: #1c1c1cee;
spacing: 1em; spacing: 1em;
} }
#window mainbox listview box { #listview {
padding: 0em 0.4em 0em 1em; padding: 0em 0.4em 0em 1em;
}
#window mainbox listview {
dynamic: false; dynamic: false;
lines: 0; lines: 0;
} }
#window mainbox listview element selected normal { #element selected normal {
background: @blue; background-color: @blue;
} }
#window mainbox listview element normal active { #element normal active {
foreground: @lightblue; text-color: @lightblue;
} }
#window mainbox listview element normal urgent { #element normal urgent {
foreground: @lightred; text-color: @lightred;
} }
#window mainbox listview element alternate normal { #element alternate normal {
} }
#window mainbox listview element alternate active { #element alternate active {
foreground: @lightblue; text-color: @lightblue;
} }
#window mainbox listview element alternate urgent { #element alternate urgent {
foreground: @lightred; text-color: @lightred;
} }
#window mainbox listview element selected active { #element selected active {
background: @lightblue; background-color: @lightblue;
foreground: @dark; text-color: @dark;
} }
#window mainbox listview element selected urgent { #element selected urgent {
background: @lightred; background-color: @lightred;
foreground: @dark; text-color: @dark;
}
#window mainbox listview element normal normal {
} }

View file

@ -1,88 +1,127 @@
//! ------------------------------------------------------------------------------
//! ROFI Color theme
//! User: Rasi
//! Copyright: Rasmus Steinke
//! ------------------------------------------------------------------------------
* { * {
spacing: 2; selected-normal-foreground: rgba ( 129, 147, 150, 100 % );
background: #00000000; foreground: rgba ( 129, 147, 150, 100 % );
normal-foreground: @foreground;
alternate-normal-background: rgba ( 0, 43, 55, 100 % );
red: rgba ( 220, 50, 47, 100 % );
selected-urgent-foreground: rgba ( 218, 66, 129, 100 % );
blue: rgba ( 38, 139, 210, 100 % );
urgent-foreground: rgba ( 218, 66, 129, 100 % );
alternate-urgent-background: rgba ( 0, 43, 55, 100 % );
active-foreground: rgba ( 0, 142, 212, 100 % );
lightbg: rgba ( 238, 232, 213, 100 % );
selected-active-foreground: rgba ( 0, 142, 212, 100 % );
alternate-active-background: rgba ( 0, 43, 55, 100 % );
background: rgba ( 0, 43, 55, 100 % );
bordercolor: rgba ( 0, 43, 55, 100 % );
alternate-normal-foreground: @foreground;
normal-background: rgba ( 0, 43, 55, 100 % );
lightfg: rgba ( 88, 104, 117, 100 % );
selected-normal-background: rgba ( 0, 54, 66, 100 % );
border-color: @foreground;
spacing: 2;
separatorcolor: rgba ( 0, 54, 66, 100 % );
urgent-background: rgba ( 0, 43, 55, 100 % );
selected-urgent-background: rgba ( 0, 54, 66, 100 % );
alternate-urgent-foreground: @urgent-foreground;
background-color: rgba ( 0, 0, 0, 0 % );
alternate-active-foreground: @active-foreground;
active-background: rgba ( 0, 43, 55, 100 % );
selected-active-background: rgba ( 0, 54, 66, 100 % );
} }
#window { #window {
border: 2; background-color: @background;
foreground: #003642FF; border: 1;
padding: 5; padding: 5;
background: #002B37FF;
} }
#window.mainbox { #mainbox {
border: 0; border: 0;
padding: 0; padding: 0;
} }
#window.mainbox.message.box { #message {
border: 2px 0px 0px ; border: 1px dash 0px 0px ;
padding: 2px 0px 0px ; border-color: @separatorcolor;
padding: 1px ;
} }
#window.mainbox.message.normal { #textbox {
foreground: #819396FF; text-color: @foreground;
background: #002B37FF;
} }
#window.mainbox.listview { #listview {
fixed-height: 1; fixed-height: 0;
border: 2px 0px 0px ; border: 2px dash 0px 0px ;
columns: 1; border-color: @separatorcolor;
spacing: 2px ;
scrollbar: true;
padding: 2px 0px 0px ; padding: 2px 0px 0px ;
} }
#window.mainbox.listview.element { #element {
border: 0;
}
#window.mainbox.listview.element.normal.normal {
foreground: #819396FF;
background: #002B37FF;
}
#window.mainbox.listview.element.normal.urgent {
foreground: #DA4281FF;
background: #002B37FF;
}
#window.mainbox.listview.element.normal.active {
foreground: #008ED4FF;
background: #002B37FF;
}
#window.mainbox.listview.element.selected.normal {
foreground: #819396FF;
background: #003642FF;
}
#window.mainbox.listview.element.selected.urgent {
foreground: #DA4281FF;
background: #003642FF;
}
#window.mainbox.listview.element.selected.active {
foreground: #008ED4FF;
background: #003642FF;
}
#window.mainbox.listview.element.alternate.normal {
foreground: #819396FF;
background: #002B37FF;
}
#window.mainbox.listview.element.alternate.urgent {
foreground: #DA4281FF;
background: #002B37FF;
}
#window.mainbox.listview.element.alternate.active {
foreground: #008ED4FF;
background: #002B37FF;
}
#window.mainbox.listview.scrollbar {
border: 0; border: 0;
padding: 0; padding: 1px ;
} }
#window.mainbox.sidebar.box { #element.normal.normal {
border: 2px 0px 0px ; background-color: @normal-background;
text-color: @normal-foreground;
} }
#window.mainbox.inputbar { #element.normal.urgent {
spacing: 0; background-color: @urgent-background;
text-color: @urgent-foreground;
} }
#window.mainbox.inputbar.box { #element.normal.active {
background-color: @active-background;
text-color: @active-foreground;
} }
#window.mainbox.inputbar.normal { #element.selected.normal {
foreground: #819396FF; background-color: @selected-normal-background;
background: #002B37FF; text-color: @selected-normal-foreground;
}
#element.selected.urgent {
background-color: @selected-urgent-background;
text-color: @selected-urgent-foreground;
}
#element.selected.active {
background-color: @selected-active-background;
text-color: @selected-active-foreground;
}
#element.alternate.normal {
background-color: @alternate-normal-background;
text-color: @alternate-normal-foreground;
}
#element.alternate.urgent {
background-color: @alternate-urgent-background;
text-color: @alternate-urgent-foreground;
}
#element.alternate.active {
background-color: @alternate-active-background;
text-color: @alternate-active-foreground;
}
#scrollbar {
width: 4px ;
border: 0;
handle-width: 8px ;
padding: 0;
}
#sidebar {
border: 2px dash 0px 0px ;
border-color: @separatorcolor;
}
#button.selected {
background-color: @selected-normal-background;
text-color: @selected-normal-foreground;
}
#inputbar {
spacing: 0;
text-color: @normal-foreground;
padding: 1px ;
}
#case-indicator {
spacing: 0;
text-color: @normal-foreground;
}
#entry {
spacing: 0;
text-color: @normal-foreground;
}
#prompt {
spacing: 0;
text-color: @normal-foreground;
} }

View file

@ -1,88 +1,127 @@
//! ------------------------------------------------------------------------------
//! ROFI Color theme
//! User: Rasi
//! Copyright: Rasmus Steinke
//! ------------------------------------------------------------------------------
* { * {
spacing: 2; selected-normal-foreground: rgba ( 255, 255, 255, 100 % );
background: #00000000; foreground: rgba ( 129, 147, 150, 100 % );
normal-foreground: @foreground;
alternate-normal-background: rgba ( 0, 54, 67, 100 % );
red: rgba ( 220, 50, 47, 100 % );
selected-urgent-foreground: rgba ( 137, 6, 97, 100 % );
blue: rgba ( 38, 139, 210, 100 % );
urgent-foreground: rgba ( 218, 66, 129, 100 % );
alternate-urgent-background: rgba ( 0, 54, 67, 100 % );
active-foreground: rgba ( 0, 142, 212, 100 % );
lightbg: rgba ( 238, 232, 213, 100 % );
selected-active-foreground: rgba ( 102, 198, 255, 100 % );
alternate-active-background: rgba ( 0, 54, 67, 100 % );
background: rgba ( 0, 43, 55, 100 % );
bordercolor: rgba ( 0, 43, 55, 100 % );
alternate-normal-foreground: @foreground;
normal-background: rgba ( 0, 43, 55, 100 % );
lightfg: rgba ( 88, 104, 117, 100 % );
selected-normal-background: rgba ( 0, 142, 212, 100 % );
border-color: @foreground;
spacing: 2;
separatorcolor: rgba ( 0, 54, 66, 100 % );
urgent-background: rgba ( 0, 43, 55, 100 % );
selected-urgent-background: rgba ( 0, 142, 212, 100 % );
alternate-urgent-foreground: @urgent-foreground;
background-color: rgba ( 0, 0, 0, 0 % );
alternate-active-foreground: @active-foreground;
active-background: rgba ( 0, 43, 55, 100 % );
selected-active-background: rgba ( 0, 142, 212, 100 % );
} }
#window { #window {
border: 2; background-color: @background;
foreground: #003642FF; border: 1;
padding: 5; padding: 5;
background: #002B37FF;
} }
#window.mainbox { #mainbox {
border: 0; border: 0;
padding: 0; padding: 0;
} }
#window.mainbox.message.box { #message {
border: 2px 0px 0px ; border: 1px dash 0px 0px ;
padding: 2px 0px 0px ; border-color: @separatorcolor;
padding: 1px ;
} }
#window.mainbox.message.normal { #textbox {
foreground: #819396FF; text-color: @foreground;
background: #002B37FF;
} }
#window.mainbox.listview { #listview {
fixed-height: 1; fixed-height: 0;
border: 2px 0px 0px ; border: 2px dash 0px 0px ;
columns: 1; border-color: @separatorcolor;
spacing: 2px ;
scrollbar: true;
padding: 2px 0px 0px ; padding: 2px 0px 0px ;
} }
#window.mainbox.listview.element { #element {
border: 0;
}
#window.mainbox.listview.element.normal.normal {
foreground: #819396FF;
background: #002B37FF;
}
#window.mainbox.listview.element.normal.urgent {
foreground: #DA4281FF;
background: #002B37FF;
}
#window.mainbox.listview.element.normal.active {
foreground: #008ED4FF;
background: #002B37FF;
}
#window.mainbox.listview.element.selected.normal {
foreground: #FFFFFFFF;
background: #008ED4FF;
}
#window.mainbox.listview.element.selected.urgent {
foreground: #890661FF;
background: #008ED4FF;
}
#window.mainbox.listview.element.selected.active {
foreground: #66C6FFFF;
background: #008ED4FF;
}
#window.mainbox.listview.element.alternate.normal {
foreground: #819396FF;
background: #003643FF;
}
#window.mainbox.listview.element.alternate.urgent {
foreground: #DA4281FF;
background: #003643FF;
}
#window.mainbox.listview.element.alternate.active {
foreground: #008ED4FF;
background: #003643FF;
}
#window.mainbox.listview.scrollbar {
border: 0; border: 0;
padding: 0; padding: 1px ;
} }
#window.mainbox.sidebar.box { #element.normal.normal {
border: 2px 0px 0px ; background-color: @normal-background;
text-color: @normal-foreground;
} }
#window.mainbox.inputbar { #element.normal.urgent {
spacing: 0; background-color: @urgent-background;
text-color: @urgent-foreground;
} }
#window.mainbox.inputbar.box { #element.normal.active {
background-color: @active-background;
text-color: @active-foreground;
} }
#window.mainbox.inputbar.normal { #element.selected.normal {
foreground: #819396FF; background-color: @selected-normal-background;
background: #002B37FF; text-color: @selected-normal-foreground;
}
#element.selected.urgent {
background-color: @selected-urgent-background;
text-color: @selected-urgent-foreground;
}
#element.selected.active {
background-color: @selected-active-background;
text-color: @selected-active-foreground;
}
#element.alternate.normal {
background-color: @alternate-normal-background;
text-color: @alternate-normal-foreground;
}
#element.alternate.urgent {
background-color: @alternate-urgent-background;
text-color: @alternate-urgent-foreground;
}
#element.alternate.active {
background-color: @alternate-active-background;
text-color: @alternate-active-foreground;
}
#scrollbar {
width: 4px ;
border: 0;
handle-width: 8px ;
padding: 0;
}
#sidebar {
border: 2px dash 0px 0px ;
border-color: @separatorcolor;
}
#button.selected {
background-color: @selected-normal-background;
text-color: @selected-normal-foreground;
}
#inputbar {
spacing: 0;
text-color: @normal-foreground;
padding: 1px ;
}
#case-indicator {
spacing: 0;
text-color: @normal-foreground;
}
#entry {
spacing: 0;
text-color: @normal-foreground;
}
#prompt {
spacing: 0;
text-color: @normal-foreground;
} }