-
Notifications
You must be signed in to change notification settings - Fork 1
/
lighthaus.rasi
109 lines (89 loc) · 2.45 KB
/
lighthaus.rasi
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
/* Lighthaus Color theme for Rofi
GIT: https://github.com/lighthaus-theme/rofi
Author: Adhiraj Sirohi (https://github.com/brutuski)
Vasundhara Sharma (https://github.com/vasundhasauras)
Copyright © 2020-Present Lighthaus Theme
Copyright © 2020-Present Adhiraj Sirohi
Copyright © 2020-Present Vasundhara Sharma
*/
configuration {
#font: "Source Code Pro Medium 12";
margin: 0;
margin-bottom: 0;
margin-top: 0;
spacing: 0;
show-icons: true;
hide-scrollbar: false;
drun-display-format: "{icon} {name}";
modi: "drun";
display-drun: "🔍";
display-run: "";
display-ssh: "🖧";
display-window: "";
}
* {
background-color: #18191E;
bg: #18191E;
bg-alternate: #21252D;
fg: #FFEE79;
fg-highlight: #FF4D00;
fg-input: #FFFF00;
border-color: #44B273;
}
#listview {
spacing: 10px;
columns: 1;
margin: 0;
dynamic: true;
padding: 0;
lines: 12;
}
#window {
background-color: @bg;
border-color: @border-color;
border: 3;
border-radius: 5;
width: 25%;
}
#mainbox {
border: 0;
padding: 0;
background-color: @bg;
}
#element {
padding: 5;
text-color: @fg;
background-color: @bg;
}
#element-text, element-icon {
background-color: inherit;
text-color: inherit;
}
#element.selected.normal {
background-color: @bg-alternate;
text-color: @fg-highlight;
}
#element.normal.active {
background-color: @bg;
}
#element.normal.urgent {
background-color: @bg-alternate;
text-color: @fg-urgent;
}
#inputbar {
background-color: @bg;
border: 0 0 3 0;
border-color: @border-color;
children: [prompt, entry];
}
#prompt {
enabled: true;
padding: 10;
text-color: @fg-input;
#font: "Source Code Pro Regular 13" ;
}
#entry {
padding: 10 10 10 5;
text-color: @fg-input;
#font: "Source Code Pro Medium 13";
}