summaryrefslogtreecommitdiffstats
path: root/include/default-theme.h
blob: d913828b4a451d7fee894a816e096ab3224a168a (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
#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