blob: 7e2da9ba6dd84f18c9ee229aca85d66afbfccb62 (
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
119
120
121
122
123
124
125
126
127
|
configuration {
show-icons: false;
sidebar-mode: false;
hover-select: true;
me-select-entry: "";
me-accept-entry: [MousePrimary];
}
*{
font: "DejaVu Sans Mono 9"; //Font
//Colors
foreground:#f8f8f2; //Text
background:#0A1229; //Background
accent:#00BCD4; //Highlight
foreground-selection:@foreground; //Selection_fg
background-selection:#e34039; //Selection_bg
transparent: #ffffff00;
background-color: @transparent;
text-color: @foreground;
selected-normal-foreground: @foreground-selection;
normal-foreground: @foreground;
alternate-normal-background: @transparent;
selected-urgent-foreground: @foreground;
urgent-foreground: @foreground;
alternate-urgent-background: @background;
active-foreground: @accent;
selected-active-foreground: @background-selection;
alternate-normal-foreground: @foreground;
alternate-active-background: @background;
bordercolor: @background;
normal-background: @transparent;
selected-normal-background: @background-selection;
separatorcolor: @accent;
urgent-background: @accent;
alternate-urgent-foreground: @foreground;
selected-urgent-background: @accent;
alternate-active-foreground: @foreground;
selected-active-background: @transparent;
active-background: @transparent;
}
window {
text-color: @foreground;
background-color: @background;
border-radius: 6px;
padding: 10;
}
mainbox {
border: 0;
padding: 0;
}
textbox {
text-color: @foreground;
}
listview {
spacing: 4px;
dynamic: true;
fixed-height: false;
border: 0;
scrollbar: false;
text-color: @separatorcolor;
}
element {
border: 0;
padding: 0;
border-radius: 4px;
}
element-text {
background-color: inherit;
text-color: inherit;
}
element.normal.normal {
text-color: @normal-foreground;
background-color: @normal-background;
}
element.normal.urgent {
text-color: @urgent-foreground;
background-color: @urgent-background;
}
element.normal.active {
text-color: @active-foreground;
background-color: @active-background;
}
element.selected.normal {
text-color: @selected-normal-foreground;
background-color: @selected-normal-background;
}
element.selected.urgent {
text-color: @selected-urgent-foreground;
background-color: @selected-urgent-background;
}
element.selected.active {
text-color: @selected-active-foreground;
background-color: @selected-active-background;
}
element.alternate.normal {
text-color: @alternate-normal-foreground;
background-color: @alternate-normal-background;
}
element.alternate.urgent {
text-color: @alternate-urgent-foreground;
background-color: @alternate-urgent-background;
}
element.alternate.active {
text-color: @alternate-active-foreground;
background-color: @alternate-active-background;
}
mode-switcher {
border: 0;
}
button selected {
text-color: @selected-normal-foreground;
background-color: @selected-normal-background;
}
button normal {
text-color: @foreground;
}
inputbar {
children: [textbox-prompt-colon,entry];
}
textbox-prompt-colon{
expand: false;
margin: 0;
str: ":";
}
entry {
placeholder: "";
}
|