summaryrefslogtreecommitdiffstats
path: root/include/default-theme.h
blob: ce77e43a615f2d188b4324b1f10f78f60e9a1ec9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
#ifndef ROFI_DEFAULT_THEME
#define ROFI_DEFAULT_THEME

const char *default_theme =
    "* {"
    "    spacing:    2;"
    "    background:                  #FFFDF6E3;"
    "    foreground:                  #FF002B36;"
    "    bordercolor:                 @foreground;"
    "    separatorcolor:              @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;"
    "    background: #00000000;"
    "    padding:    5;"
    "}"
    "#window.box {"
    "    background: @background;"
    "    foreground: @bordercolor;"
    "}"
    "#window.mainbox {"
    "    border:  0;"
    "    padding: 0;"
    "}"
    "#window.mainbox.message.box {"
    "    border:  1px dash 0px 0px ;"
    "    padding: 2px 0px 0px ;"
    "    foreground: @separatorcolor;"
    "}"
    "#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 {"
    "     border: 0px 0px 0px 0px;"
    "     "
    "}"
    "#window.mainbox.inputbar.normal {"
    "    foreground: @foreground;"
    "}";
#endif