diff --git a/config.rasi b/config.rasi index 442b077..5464f68 100644 --- a/config.rasi +++ b/config.rasi @@ -9,11 +9,14 @@ configuration { } * { - bg: #142D4C; - bg-alt: #000; - fg: #D8DEE9; - fg-alt: #FFF; - background-color: #142D4C55; + transparent: #00000000; + default-background-color: #24242480; + selection-background-color: #12121280; + prompt-background-color: #42424280; + default-font-color: #52b3eb; + selection-font-color: #ffd1fe; + prompt-font-color: #cce1ff; + background-color: @default-background-color; border: 0; padding: 0; margin: 0; @@ -21,11 +24,11 @@ configuration { } window { - height: 601px; - width: 400px; - location: southwest; - anchor: southwest; - y-offset: -28; + height: 25%; + width: 35%; + location: north; + anchor: north; + y-offset: 0; transparency: "real"; } @@ -41,27 +44,31 @@ listview { element { orientation: vertical; padding: 12 12 12 8; - text-color: @fg; + text-color: @default-font-color; + background-color: @transparent; } element selected { - background-color: @bg; - text-color: @fg-alt; + background-color: @selection-background-color; + text-color: @selection-font-color; } inputbar { - background-color: @background; + background-color: @prompt-background-color; + text-color: @prompt-font-color; children: [prompt, entry]; } prompt { enabled: true; - text-color: @fg; + background-color: @transparent; + text-color: @prompt-font-color; padding: 12 0 0 8; font: "DejaVu Sans Mono for Powerline 11"; } entry { - text-color: @fg; + background-color: @transparent; + text-color: @prompt-font-color; padding: 12; }