This repository has been archived by the owner on Mar 11, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathbreeze-dracula.rasi
152 lines (125 loc) · 2.77 KB
/
breeze-dracula.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
151
152
/*
* breeze-dracula.rasi
* rofi theme inspired by plasma breeze
* MonsieurBedard
* Dracula colors by Trollwut <[email protected]>
*/
configuration {
columns: 1;
font: "Noto Sans 12";
sidebar-mode: true;
show-icons: true;
terminal: "kitty";
drun-match-fields: "name,generic,exec,categories";
levenshtein-sort: true;
matching: "fuzzy";
}
* {
/* Base */
default-background: rgba(40, 42, 54, 80%); // <- change this for transparency
default-foreground: rgba(248, 248, 242, 100%);
default-border: rgba(189, 147, 249, 100%);
alternative-background: rgba(40, 42, 54, 100%);
invisible: rgba(0, 0, 0, 0%);
/* Colors */
hard-blue: rgba(154, 237, 254, 100%);
light-blue: rgba(139, 233, 253, 100%);
hard-red: rgba(255, 110, 103, 100%);
light-red: rgba(255, 85, 85, 100%);
hard-green: rgba(90, 247, 142, 100%);
light-green: rgba(80, 250, 123, 100%);
pink: rgba(255, 121, 198, 100%);
/* Universal */
background-color: @invisible;
border-color: @default-border;
/*font: "Noto Sans 10";*/
text-color: @default-foreground;
}
#window {
background-color: @default-background;
border: 1;
border-radius: 3;
border-color: @default-border;
padding: 7;
}
#mainbox {
border: 0;
padding: 0;
}
#message {
border: 1;
border-radius: 3;
padding: 5;
background-color: @alternative-background;
}
#textbox {
background-color: @entry-background;
}
#listview {
fixed-height: 0;
spacing: 2;
scrollbar: false;
padding: 2 0 0;
}
#element {
padding: 5;
border: 1;
border-radius: 3;
border-color: @invisible;
}
#element.normal.normal {
background-color: @invisible;
}
#element.normal.urgent {
background-color: @light-red;
}
#element.normal.active {
/*background-color: @light-green;*/
border-color: @hard-green;
}
#element.selected.normal {
background-color: @light-blue;
border-color: @hard-blue;
color: @alternative-background;
}
#element.selected.urgent {
background-color: @light-red;
border-color: @hard-red;
}
#element.selected.active {
background-color: @light-green;
border-color: @hard-green;
color: @alternative-background;
}
#mode-switcher {
spacing: 0;
}
#button {
border: 0 0 3 0;
border-color: @invisible;
padding: 3;
}
#button.selected {
border-color: @pink;
}
#inputbar {
spacing: 0;
padding: 1;
}
#case-indicator {
spacing: 0;
padding: 3px;
background-color: @alternative-background;
border: 1 1 1 0;
border-radius: 0 2 2 0;
}
#entry {
background-color: @alternative-background;
padding: 3px;
border: 1 0 1 1;
border-radius: 2 0 0 2;
}
#prompt {
padding: 3 7 3 0;
}
/* vim:ft=css