rofi/include/default-theme.h

145 lines
5.1 KiB
C
Raw Normal View History

/*
* rofi
*
* MIT/X11 License
* Copyright © 2013-2017 Qball Cow <qball@gmpclient.org>
*
* Permission is hereby granted, free of charge, to any person obtaining
* a copy of this software and associated documentation files (the
* "Software"), to deal in the Software without restriction, including
* without limitation the rights to use, copy, modify, merge, publish,
* distribute, sublicense, and/or sell copies of the Software, and to
* permit persons to whom the Software is furnished to do so, subject to
* the following conditions:
*
* The above copyright notice and this permission notice shall be
* included in all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
* OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*
*/
2017-03-29 18:18:41 +00:00
#ifndef ROFI_DEFAULT_THEME
#define ROFI_DEFAULT_THEME
2017-03-29 18:18:41 +00:00
const char *default_theme =
"* {"
" spacing: 2;"
" background: #FDF6E3FF;"
" foreground: #002B36FF;"
" bordercolor: @foreground;"
2017-04-02 10:47:53 +00:00
" separatorcolor: @foreground;"
" red: #DC322FFF;"
" blue: #268BD2FF;"
" lightbg: #EEE8D5FF;"
" lightfg: #586875FF;"
" 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;"
2017-04-02 10:47:53 +00:00
" background: #00000000;"
" padding: 5;"
"}"
"#window.box {"
2017-04-02 10:47:53 +00:00
" background: @background;"
" foreground: @bordercolor;"
"}"
"#window.mainbox {"
" border: 0;"
" padding: 0;"
"}"
"#window.mainbox.message.box {"
" border: 1px dash 0px 0px ;"
" padding: 2px 0px 0px ;"
2017-04-02 10:47:53 +00:00
" foreground: @separatorcolor;"
"}"
"#window.mainbox.message.normal {"
" foreground: @foreground;"
"}"
"#window.mainbox.listview {"
" fixed-height: 0;"
" border: 1px dash 0px 0px ;"
" 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 {"
2017-04-02 10:47:53 +00:00
" border: 0px 0px 0px 0px;"
" "
"}"
"#window.mainbox.inputbar.normal {"
" foreground: @foreground;"
"}";
2017-03-29 18:18:41 +00:00
#endif