summaryrefslogtreecommitdiffstats
path: root/desktop/dwm/dwm.rasi.new
blob: ba59ad3c29014aa93b7dfb79d65dc54e5b5b3c38 (plain)
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
/**
 * ROFI Color theme based on dwm colours
 * User: dive
 * License: WTF
 */
* {
    background-color:      #222222;
    border-color:          #222222;
    text-color:            #bbbbbb;
    /* slightly larger than dwm/dmenu font because it looks too small,
    on my system at least. */
    font: "monospace 13";
 }

#window {
    anchor:     north;
    location:   north;
    width:      100%;
    children:   [ horibox ];
}

#horibox {
    orientation: horizontal;
    children:   [ prompt, entry, listview ];
}

#listview {
    layout:     horizontal;
    spacing:    0.5em;
}

#entry {
    expand:     false;
    width:      18em;
}

#element {
    padding: 1px 5px;
}
#element selected {
    background-color:      #005577;
    text-color:            #eeeeee;
}
/* vim: syn=css expandtab