-
Notifications
You must be signed in to change notification settings - Fork 0
/
tungcena.rasi
150 lines (145 loc) · 4.37 KB
/
tungcena.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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
/*******************************************************************************
* ROFI Color theme
* User: Tung Cena
* Copyright: Tung Cena
Format Specification: (something is old)
https://github.com/davatorium/rofi/blob/1ab3e571eca1768d437246ca6ec09f44432b0e20/doc/rofi-theme.5.markdown
*******************************************************************************/
* {
active-background: rgba ( 39, 50, 56, 100 % );
active-foreground: rgba ( 128, 203, 196, 100 % );
alternate-active-background: rgba ( 39, 50, 56, 100 % );
alternate-active-foreground: @active-foreground;
alternate-normal-background: rgba ( 39, 50, 56, 100 % );
alternate-normal-foreground: @foreground;
alternate-urgent-background: rgba ( 39, 50, 56, 100 % );
alternate-urgent-foreground: @urgent-foreground;
background-color: rgba ( 0, 0, 0, 0 % );
background: rgba (0, 0, 0, 0.9);
border-color: @foreground;
bordercolor: rgba ( 39, 50, 56, 100 % );
font: "Raleway SemiBold 14";
foreground: rgba ( 193, 193, 193, 100 % );
lightbg: rgba ( 238, 232, 213, 100 % );
lightfg: rgba ( 88, 104, 117, 100 % );
normal-background: rgba ( 39, 50, 56, 100 % );
normal-foreground: @foreground;
selected-active-background: rgba ( 57, 66, 73, 100 % );
selected-active-foreground: rgba ( 128, 203, 196, 100 % );
selected-normal-background: rgba ( 57, 66, 73, 100 % );
selected-normal-foreground: rgba ( 40, 85, 119, 1);
selected-urgent-background: rgba ( 57, 66, 73, 100 % );
selected-urgent-foreground: rgba ( 255, 24, 68, 100 % );
separatorcolor: rgba ( 30, 37, 41, 100 % );
spacing: 1;
urgent-background: rgba ( 39, 50, 56, 100 % );
urgent-foreground: rgba ( 255, 24, 68, 100 % );
transparent: rgba (0, 0, 0, 0);
}
#window {
fullscreen: true;
padding: 300px 550px;
border: 0;
background-color: @background;
}
#mainbox {
padding: 0;
border: 0;
}
#message {
padding: 0;
border: 0;
}
#textbox {
text-color: @foreground;
}
// Result block
#listview {
fixed-height: 0;
padding: 0;
border: 0;
border-color: @separatorcolor;
spacing: 15px;
scrollbar: false;
}
// Result
#element {
padding: 0;
border: 0;
}
#element.normal.normal {
background-color: @transparent;
text-color: @normal-foreground;
}
#element.normal.urgent {
background-color: @urgent-background;
text-color: @urgent-foreground;
}
#element.normal.active {
background-color: @active-background;
text-color: @active-foreground;
}
#element.selected.normal {
background-color: @transparent;
text-color: @selected-normal-foreground;
}
#element.selected.urgent {
background-color: @selected-urgent-background;
text-color: @selected-urgent-foreground;
}
#element.selected.active {
background-color: @selected-active-background;
text-color: @selected-active-foreground;
}
#element.alternate.normal {
background-color: @transparent;
text-color: @alternate-normal-foreground;
}
#element.alternate.urgent {
background-color: @alternate-urgent-background;
text-color: @alternate-urgent-foreground;
}
#element.alternate.active {
background-color: @alternate-active-background;
text-color: @alternate-active-foreground;
}
#scrollbar {
width: 0;
padding: 0;
border: 0;
handle-width: 0;
}
#sidebar {
border: 0;
border-color: @separatorcolor;
}
#button.selected {
background-color: @selected-normal-background;
text-color: @selected-normal-foreground;
}
#inputbar {
spacing: 0;
text-color: @normal-foreground;
padding: 0 0 10px;
}
#case-indicator {
spacing: 0;
text-color: @normal-foreground;
}
#entry {
spacing: 0;
text-color: @normal-foreground;
}
#prompt {
spacing: 0;
text-color: @normal-foreground;
}
#inputbar {
children: [prompt, textbox-prompt-colon, entry, case-indicator];
}
#textbox-prompt-colon {
expand: false;
str: ":";
margin: 0 0.3em 0 0;
text-color: @normal-foreground;
}