1* {
2 background-color: #1d1d1d;
3 text-color: #d3d7cf;
4 selbg: #e3e3e3;
5 actbg: #e3e3e3;
6 urgbg: #e53935;
7 winbg: #ffffff;
8
9 selected-normal-foreground: @background-color;
10 normal-foreground: @text-color;
11 selected-normal-background: @actbg;
12 normal-background: @background-color;
13
14 selected-urgent-foreground: @background-color;
15 urgent-foreground: @text-color;
16 selected-urgent-background: @urgbg;
17 urgent-background: @background-color;
18
19 selected-active-foreground: @background-color;
20 active-foreground: @background-color;
21 selected-active-background: @actbg;
22 active-background: @selbg;
23 separator-style: "none";
24 margin: 0;
25}
26
27#window {
28 width: 600px;
29 border-radius: 6px;
30 children: [mainbox];
31}
32
33#mainbox {
34 border: 2px;
35 border-color: @winbg;
36 border-radius: 5px;
37 orientation: vertical;
38 children: [ entry,message,listview];
39}
40
41#entry {
42 expand: false;
43 text-color: @normal-foreground;
44 padding: 0px 0px 10px 0px;
45 border: 0 0 1px;
46 border-color: #e3e3e3;
47 margin: 15px 10px 0px 10px;
48}
49
50#sidebar {
51 expand: false;
52}
53
54#textbox {
55 horizontal-align: 0;
56 background-color: silver;
57 padding: 10px 20px 10px 20px ;
58 text-color: #000;
59}
60
61#listview {
62 border: 0px 0px 0px ;
63 border-color: white;
64 padding: 05 10 0 10;
65}
66
67
68#mode-switcher {
69 /* border: 1px 0px 0px 0px; */
70 /* border-color: grey; */
71 /* padding: 0 30 10 30; */
72 margin: 0px 0px 0px 0px;
73}
74
75button {
76 padding: 8px;
77}
78
79#button.selected {
80 background-color: @selected-normal-background;
81 text-color: @selected-normal-foreground;
82}
83
84#element {
85 border-radius: 5px;
86 border: 0;
87 padding: 10px 10px 10px 10px ;
88}
89
90#element-icon {
91 size: 2ch;
92 }
93
94#element.normal.normal {
95 background-color: @normal-background;
96 text-color: @normal-foreground;
97}
98
99#element.normal.urgent {
100 background-color: @urgent-background;
101 text-color: @urgent-foreground;
102}
103
104#element.normal.active {
105 background-color: @active-background;
106 text-color: @active-foreground;
107}
108
109#element.selected.normal {
110 background-color: @selected-normal-background;
111 text-color: @selected-normal-foreground;
112}
113
114#element.selected.urgent {
115 background-color: @selected-urgent-background;
116 text-color: @selected-urgent-foreground;
117}
118
119#element.selected.active {
120 background-color: @selected-active-background;
121 text-color: @selected-active-foreground;
122}
123
124#element.alternate.normal {
125 background-color: @alternate-normal-background;
126 text-color: @alternate-normal-foreground;
127}
128
129#element.alternate.urgent {
130 background-color: @alternate-urgent-background;
131 text-color: @alternate-urgent-foreground;
132}
133
134#element.alternate.active {
135 background-color: @alternate-active-background;
136 text-color: @alternate-active-foreground;
137}
138