-
Notifications
You must be signed in to change notification settings - Fork 0
/
rofi-theme.rasi
120 lines (99 loc) · 2 KB
/
rofi-theme.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
/**
* Nordic rofi theme
* Adapted by undiabler <[email protected]>
*
* Nord Color palette imported from https://www.nordtheme.com/
*
*/
/*
* Modified by gavinhungry
*/
configuration {
font: "JetBrains Mono 9";
width: 30;
line-margin: 10;
display-ssh: "";
display-run: "";
display-drun: "";
display-window: "";
display-combi: "";
show-icons: false;
}
* {
input-bg-color: rgba(20, 22, 28, 0.85);
input-text-color: #F0F0F0;
listview-bg-color: rgba(38, 40, 48, 0.65);
listview-text-color: #EAEAEA;
selected-bg-color: #7A8390;
selected-text-color: #040404;
transparent: rgba(0, 0, 0, 0);
background-color: @transparent;
}
window {
location: northeast;
anchor: northeast;
padding: 10px;
border: 0px;
border-radius: 20px;
width: 400px;
background-color: @transparent;
spacing: 0;
children: [mainbox];
orientation: horizontal;
}
mainbox {
spacing: 0;
children: [ inputbar, message, listview ];
}
message {
color: @selected-text-color;
padding: 5;
border: 0px 2px 2px 2px;
background-color: @selected-bg-color;
}
inputbar {
color: @input-text-color;
padding: 11px;
background-color: @input-bg-color;
border-radius: 3px 3px 0px 0px;
}
entry, prompt, case-indicator {
text-font: inherit;
text-color: inherit;
}
prompt {
margin: 0px 0.3em 0em 0em ;
}
listview {
padding: 12px;
border-radius: 0px 0px 3px 3px;
background-color: @listview-bg-color;
lines: 6;
}
element {
padding: 5px 2px;
vertical-align: 0.5;
border-radius: 2px;
background-color: transparent;
text-color: @listview-text-color;
}
element selected.normal {
background-color: @selected-bg-color;
text-color: @selected-text-color;
}
element-text, element-icon {
background-color: inherit;
text-color: inherit;
}
element-text.generic {
text-color: red;
}
button {
padding: 6px;
horizontal-align: 0.5;
border: 2px 0px 2px 2px;
border-radius: 4px 0px 0px 4px;
}
button selected normal {
border: 2px 0px 2px 2px;
}