forked from undiabler/nord-rofi-theme
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathgruvbox-material.rasi
115 lines (92 loc) · 1.81 KB
/
gruvbox-material.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
/**
* Gruvbox Material (Medium) theme
* Taken from: https://user-images.githubusercontent.com/58662350/213884019-cbcd5f00-5bef-4a37-9139-0570770330b6.png
* Repository: https://github.com/hiimsergey/rofi-gruvbox-material
*/
* {
bg0: #282828;
bg1: #32302f;
grey0: #7c6f64;
fg0: #d4be98;
blue: #7daea3;
red: #ea6962;
orange: #e78a4e;
green: #a9b665;
bgStatusline3: #504945;
background-color: @bg0;
}
window {
height: 600;
width: 600;
border: 1;
border-radius: 10;
border-color: @bgStatusline3;
}
mainbox {
spacing: 0;
children: [inputbar, message, listview];
}
inputbar {
color: @fg0;
padding: 14;
background-color: @bg0;
}
message {
padding: 10;
background-color: @grey0;
}
listview {
padding: 8;
border-radius: 0 0 10 10;
border: 2 2 2 2;
border-color: @bg0;
background-color: @bg0;
dynamic: false;
}
textbox {
text-color: @fg0;
background-color: inherit;
}
error-message {
border: 20 20 20 20;
}
entry, prompt, case-indicator {
text-color: inherit;
}
prompt {
margin: 0 10 0 0;
}
element {
padding: 5;
vertical-align: 0.5;
border-radius: 10;
background-color: @bg1;
}
element.selected.normal {
background-color: @grey0;
}
element.alternate.normal {
background-color: inherit;
}
element.normal.active, element.alternate.active {
background-color: @orange;
}
element.selected.active {
background-color: @green;
}
element.normal.urgent, element.alternate.urgent {
background-color: @red;
}
element.selected.urgent {
background-color: @blue;
}
element-text, element-icon {
size: 40;
margin: 0 10 0 0;
vertical-align: 0.5;
background-color: inherit;
text-color: @fg0;
}
element-text .active, element-text .urgent {
text-color: @bg0;
}