master config.rasi
 1* {
 2    bg:       #282828;
 3    bg-alt:   @bg;
 4    fg:       #aaa;
 5    fg-alt:   #ebdbb2;
 6    mg:       @fg;
 7
 8    background-color: @bg;
 9    text-color:       @fg;
10}
11
12configuration {
13    font: 'PxPlus IBM VGA 8x16 12';
14}
15
16window {
17    width: 35%;
18    height: 20%;
19    border: 1px;
20    border-radius: 0px;
21    border-color: @fg-alt;
22    background-color: @bg;
23}
24
25mainbox {
26    border: 1px;
27    border-radius: 0px;
28    border-color: @fg;
29    padding: 0px;
30    background-color: @bg;
31}
32
33inputbar {
34    background-color: @bg-alt;
35    padding: 6px;
36    children: [ entry ];
37}
38
39prompt {
40    text-color: @fg;
41    padding: 0 6px 0 0;
42}
43
44entry {
45    text-color: @mg;
46    cursor-color: transparent;
47    cursor-width: 0px;
48}
49
50listview {
51    margin: 0px 0 0;
52    scrollbar: false;
53    background-color: @bg;
54}
55
56element {
57    padding: 0px;
58    border-radius: 0px;
59    background-color: @bg;
60    text-color: @fg;
61}
62
63element normal.normal {
64    background-color: @bg;
65    text-color: @fg;
66}
67
68element selected.normal {
69    background-color: @bg-alt;
70    text-color: @fg-alt;
71}
72
73element active.normal,
74element urgent.normal {
75    background-color: @bg-alt;
76    text-color: @fg;
77}
78
79element-text {
80    text-color: inherit;
81    highlight: none;
82    horizontal-align: 0.5;
83}
84