blob: e6437b29425be7d6d0fb6de2e72286241a5a0e59 (
plain) (
blame)
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
|
/* ---- 💫 https://github.com/JaKooLit 💫 ---- */
/* KooL Hyprland Rofi Style 11 - Windows 11 List Light */
/* source: https://github.com/newmanls */
/* Integrating Wallust and More tweaks */
/* ---- Configuration ---- */
configuration {
dpi: 1;
show-icons: true;
hover-select: true;
me-select-entry: "MouseSecondary";
me-accept-entry: "MousePrimary";
}
/*****----- Global Properties -----*****/
* {
bg0 : #ffffff80;
bg1 : #f9f9f9bf;
bg2 : #f7f7f7;
bg3 : #fefefebf;
fg0 : #1a1a1a;
fg1 : #5f5f5f;
accent : #005fb8;
urgent : @accent;
background-color : transparent;
text-color : @fg0;
margin : 0;
padding : 0;
spacing : 0;
}
/*****-- Elements Font Size -----*****/
element-text {
font: "JetBrainsMono Nerd Font SemiBold 12";
}
element-icon, element-text, scrollbar {
cursor: pointer;
}
window {
location : south;
width : 40%;
height : 50%;
y-offset : -10px;
background-color : @bg1;
border-radius : 8px;
}
mainbox {
padding : 24px;
spacing : 24px;
}
inputbar {
padding : 8px;
spacing : 4px;
children : [ icon-search, entry ];
border : 0 0 2px 0 solid;
border-color : @accent;
border-radius : 2px;
background-color : @bg0;
}
icon-search, entry, element-icon, element-text {
vertical-align: 0.5;
}
icon-search {
expand : false;
filename : "search-symbolic";
size : 24px;
}
entry {
placeholder : "Type here to search";
placeholder-color : @fg1;
}
listview {
columns : 2;
spacing : 8px;
fixed-height : true;
fixed-columns : true;
}
element {
spacing : 1em;
padding : 8px;
border-radius : 2px;
}
element normal urgent {
text-color: @urgent;
}
element normal active {
text-color: @accent;
}
element alternate active {
text-color: @accent;
}
element selected active {
text-color: @accent;
}
element selected {
background-color: @bg3;
}
element selected urgent {
background-color: @urgent;
}
element-icon {
size: 1.5em;
}
element-text {
text-color: inherit;
}
/*****----- Message -----*****/
error-message {
padding: 20px;
}
textbox {
padding : 10px;
background-color : @bg0;
text-color : @fg0;
vertical-align : 0.5;
horizontal-align : 0.5;
}
|