1
0
Fork 0
mirror of https://github.com/davatorium/rofi.git synced 2025-01-27 15:25:24 -05:00

Update default theme.

* For  use in theme generation.
This commit is contained in:
Dave Davenport 2017-04-02 10:50:55 +02:00
parent 3e73cbd0ef
commit c28dd35f3d

View file

@ -5,13 +5,40 @@ const char *default_theme =
"* {" "* {"
" spacing: 2;" " spacing: 2;"
" background: #FFFDF6E3;" " 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 {" "#window {"
" border: 1;" " border: 1;"
" foreground: #FF002B36;" " foreground: @foreground;"
" padding: 5;" " padding: 5;"
" background: @background;" " background: @background;"
"}" "}"
"#window.box {"
" foreground: @bordercolor;"
"}"
"#window.mainbox {" "#window.mainbox {"
" border: 0;" " border: 0;"
" padding: 0;" " padding: 0;"
@ -21,7 +48,7 @@ const char *default_theme =
" padding: 2px 0px 0px ;" " padding: 2px 0px 0px ;"
"}" "}"
"#window.mainbox.message.normal {" "#window.mainbox.message.normal {"
" foreground: #FF002B36;" " foreground: @foreground;"
"}" "}"
"#window.mainbox.listview {" "#window.mainbox.listview {"
" fixed-height: 0;" " fixed-height: 0;"
@ -33,40 +60,40 @@ const char *default_theme =
" border: 0;" " border: 0;"
"}" "}"
"#window.mainbox.listview.element.normal.normal {" "#window.mainbox.listview.element.normal.normal {"
" foreground: #FF002B36;" " foreground: @normal-foreground;"
" background: #FFFDF6E3;" " background: @normal-background;"
"}" "}"
"#window.mainbox.listview.element.normal.urgent {" "#window.mainbox.listview.element.normal.urgent {"
" foreground: #FFDC322F;" " foreground: @urgent-foreground;"
" background: #FFFDF6E3;" " background: @urgent-background;"
"}" "}"
"#window.mainbox.listview.element.normal.active {" "#window.mainbox.listview.element.normal.active {"
" foreground: #FF268BD2;" " foreground: @active-foreground;"
" background: #FFFDF6E3;" " background: @active-background;"
"}" "}"
"#window.mainbox.listview.element.selected.normal {" "#window.mainbox.listview.element.selected.normal {"
" foreground: #FFEEE8D5;" " foreground: @selected-normal-foreground;"
" background: #FF586E75;" " background: @selected-normal-background;"
"}" "}"
"#window.mainbox.listview.element.selected.urgent {" "#window.mainbox.listview.element.selected.urgent {"
" foreground: #FFFDF6E3;" " foreground: @selected-urgent-foreground;"
" background: #FFDC322F;" " background: @selected-urgent-background;"
"}" "}"
"#window.mainbox.listview.element.selected.active {" "#window.mainbox.listview.element.selected.active {"
" foreground: #FFFDF6E3;" " foreground: @selected-active-foreground;"
" background: #FF268BD2;" " background: @selected-active-background;"
"}" "}"
"#window.mainbox.listview.element.alternate.normal {" "#window.mainbox.listview.element.alternate.normal {"
" foreground: #FF002B36;" " foreground: @alternate-normal-foreground;"
" background: #FFEEE8D5;" " background: @alternate-normal-background;"
"}" "}"
"#window.mainbox.listview.element.alternate.urgent {" "#window.mainbox.listview.element.alternate.urgent {"
" foreground: #FFDC322F;" " foreground: @alternate-urgent-foreground;"
" background: #FFEEE8D5;" " background: @alternate-urgent-background;"
"}" "}"
"#window.mainbox.listview.element.alternate.active {" "#window.mainbox.listview.element.alternate.active {"
" foreground: #FF268BD2;" " foreground: @alternate-active-foreground;"
" background: #FFEEE8D5;" " background: @alternate-active-background;"
"}" "}"
"#window.mainbox.listview.scrollbar {" "#window.mainbox.listview.scrollbar {"
" border: 0;" " border: 0;"
@ -81,7 +108,7 @@ const char *default_theme =
"#window.mainbox.inputbar.box {" "#window.mainbox.inputbar.box {"
"}" "}"
"#window.mainbox.inputbar.normal {" "#window.mainbox.inputbar.normal {"
" foreground: #FF002B36;" " foreground: @foreground;"
" background: @background;" " background: @background;"
"}"; "}";
#endif #endif