-
Notifications
You must be signed in to change notification settings - Fork 0
/
adamekka-dracula.rasi
86 lines (72 loc) · 1.11 KB
/
adamekka-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
@import "colors"
* {
font: "UbuntuMono Nerd Font 14";
foreground: @foreground;
background-color: @background-darker;
border: 1px;
transparent: rgba(46, 52, 64, 0);
}
window {
width: 1200;
height: 570;
orientation: horizontal;
location: center;
anchor: center;
border-radius: 20px;
spacing: 0;
children: [ mainbox ];
}
mainbox {
spacing: 0;
children: [ inputbar, message, listview ];
}
inputbar {
color: @selection;
margin: 10px;
padding: 10px;
border: 3px;
border-color: @purple;
border-radius: 50px;
}
message {
border: 0;
padding: 0;
}
entry,
prompt,
case-indicator {
text-font: inherit;
text-color: inherit;
}
entry {
cursor: pointer;
}
listview {
layout: vertical;
padding: 10px;
lines: 12;
columns: 7;
border: 0;
}
element {
color: @cyan;
orientation: vertical;
}
element-text,
element-icon {
background-color: inherit;
text-color: inherit;
horizontal-align: 0.5;
}
element-icon {
size: 64;
}
element selected.normal {
background-color: @comment;
border: 2px;
border-color: @cyan;
border-radius: 20px;
}
scrollbar {
enabled: true;
}