1* {
2 font: "Hack Nerd Font Propo Regular 13";
3
4 background-color: transparent;
5 text-color: @secondary;
6
7 margin: 0px;
8 padding: 0px;
9 spacing: 0px;
10}
11
12window {
13 location: north;
14 y-offset: calc(50% - 176px);
15 width: 480;
16 border-radius: 7px;
17
18 background-color: @surface;
19}
20
21mainbox {
22 padding: 12px;
23}
24
25inputbar {
26 background-color: @surface;
27 border-color: @primary;
28
29 border: 1px;
30 border-radius: 7px;
31
32 padding: 8px 16px;
33 spacing: 8px;
34 children: [ prompt, entry ];
35}
36
37prompt {
38 text-color: @on-surface;
39}
40
41entry {
42// placeholder: "Search";
43// placeholder-color: @fg3;
44}
45
46message {
47 margin: 12px 0 0;
48 border-radius: 5px;
49 border-color: @bg2;
50 background-color: @bg2;
51}
52
53textbox {
54 padding: 8px 24px;
55}
56
57listview {
58 background-color: transparent;
59
60 margin: 12px 0 0;
61 lines: 7;
62 columns: 1;
63
64 fixed-height: true;
65}
66
67element {
68 padding: 8px 16px;
69 spacing: 8px;
70 border-radius: 7px;
71}
72
73element selected normal, element selected active {
74 background-color: @primary-fixed-dim;
75 text-color: @surface;
76}
77
78element-icon {
79 size: 1em;
80 vertical-align: 0.5;
81}
82
83element-text {
84 text-color: inherit;
85}