rofi/include/default-theme.h

115 lines
3.7 KiB
C

#ifndef ROFI_DEFAULT_THEME
#define ROFI_DEFAULT_THEME
const char *default_theme =
"* {"
" spacing: 2;"
" background: #FFFDF6E3;"
" foreground: #FF002B36;"
" bordercolor: @foreground;"
" red: #FFDC322F;"
" blue: #FF268BD2;"
" lightbg: #FFEEE8D5;"
" lightfg: #FF586875;"
" normal-foreground: @foreground;"
" normal-background: @background;"
" urgent-foreground: @red;"
" urgent-background: @background;"
" active-foreground: @blue;"
" active-background: @background;"
" selected-normal-foreground: @lightbg;"
" selected-normal-background: @lightfg;"
" selected-urgent-foreground: @background;"
" selected-urgent-background: @red;"
" selected-active-foreground: @background;"
" selected-active-background: @blue;"
" alternate-normal-foreground: @foreground;"
" alternate-normal-background: @lightbg;"
" alternate-urgent-foreground: @red;"
" alternate-urgent-background: @lightbg;"
" alternate-active-foreground: @blue;"
" alternate-active-background: @lightbg;"
"}"
"#window {"
" border: 1;"
" foreground: @foreground;"
" padding: 5;"
" background: @background;"
"}"
"#window.box {"
" foreground: @bordercolor;"
"}"
"#window.mainbox {"
" border: 0;"
" padding: 0;"
"}"
"#window.mainbox.message.box {"
" border: 1px dash 0px 0px ;"
" padding: 2px 0px 0px ;"
"}"
"#window.mainbox.message.normal {"
" foreground: @foreground;"
"}"
"#window.mainbox.listview {"
" fixed-height: 0;"
" border: 1px dash 0px 0px ;"
" columns: 1;"
" padding: 2px 0px 0px ;"
"}"
"#window.mainbox.listview.element {"
" border: 0;"
"}"
"#window.mainbox.listview.element.normal.normal {"
" foreground: @normal-foreground;"
" background: @normal-background;"
"}"
"#window.mainbox.listview.element.normal.urgent {"
" foreground: @urgent-foreground;"
" background: @urgent-background;"
"}"
"#window.mainbox.listview.element.normal.active {"
" foreground: @active-foreground;"
" background: @active-background;"
"}"
"#window.mainbox.listview.element.selected.normal {"
" foreground: @selected-normal-foreground;"
" background: @selected-normal-background;"
"}"
"#window.mainbox.listview.element.selected.urgent {"
" foreground: @selected-urgent-foreground;"
" background: @selected-urgent-background;"
"}"
"#window.mainbox.listview.element.selected.active {"
" foreground: @selected-active-foreground;"
" background: @selected-active-background;"
"}"
"#window.mainbox.listview.element.alternate.normal {"
" foreground: @alternate-normal-foreground;"
" background: @alternate-normal-background;"
"}"
"#window.mainbox.listview.element.alternate.urgent {"
" foreground: @alternate-urgent-foreground;"
" background: @alternate-urgent-background;"
"}"
"#window.mainbox.listview.element.alternate.active {"
" foreground: @alternate-active-foreground;"
" background: @alternate-active-background;"
"}"
"#window.mainbox.listview.scrollbar {"
" border: 0;"
" padding: 0;"
"}"
"#window.mainbox.sidebar.box {"
" border: 1px dash 0px 0px ;"
"}"
"#window.mainbox.inputbar {"
" spacing: 0;"
"}"
"#window.mainbox.inputbar.box {"
"}"
"#window.mainbox.inputbar.normal {"
" foreground: @foreground;"
" background: @background;"
"}";
#endif