/** * User: deadguy * Copyright: deadguy */ configuration { display-drun: "Activate"; display-run: "Execute"; display-window: "Switch"; sidebar-mode: true; show-icons: true; } /* global settings and color variables */ * { background-color: #00000065; text-color: #EFEFEF; clearbg: #00000000; fullbg: #080808; selbg: #00a0e6; actbg: #222222; urgbg: #e53935; winbg: #00364e; selected-normal-foreground: @winbg; normal-foreground: @text-color; selected-normal-background: @actbg; normal-background: @fullbg; selected-urgent-foreground: @fullbg; urgent-foreground: @text-color; selected-urgent-background: @urgbg; urgent-background: @urgbg; selected-active-foreground: @fullbg; active-foreground: @text-color; selected-active-background: @text-color; active-background: @winbg; columns: 1; line-margin: 2; line-padding: 2; margin: 0; padding: 0; separator-style: "none"; hide-scrollbar: "true"; font: "SF Pro Text 12"; } window { padding: 5px; width: 30%; height: 70%; margin: 0 0 0 0; children: [mainbox]; } mainbox { background-color: @fullbg; children: [inputbar, listview, mode-switcher]; spacing: 10px; padding: 30px 0 0 0; border: 1px; border-color: @clearbg; } listview { background-color: @clearbg; fixed-height: 0; border: 0; spacing: 5px; scrollbar: false; padding: 10px; } inputbar { children: [ entry ]; background-color: @clearbg; padding: 0 15px; } entry { background-color: @clearbg; spacing: 0; } button { padding: 5px; } button selected { background-color: @selbg; text-color: @fullbg; } element { background-color: @clearbg; border-radius: 15px; border: 0; padding: 4px; } element.normal.urgent { background-color: @urgent-background; text-color: @urgent-foreground; } element.normal.active { background-color: @active-background; text-color: @active-foreground; } element.selected.normal { background-color: @selbg; text-color: @fullbg; } element.selected.urgent { background-color: @selected-urgent-background; text-color: @selected-urgent-foreground; } element.selected.active { background-color: @selected-active-background; text-color: @selected-active-foreground; } element.alternate.normal { background-color: @normal-background; text-color: @normal-foreground; } element.alternate.urgent { background-color: @urgent-background; text-color: @urgent-foreground; } element.alternate.active { background-color: @active-background; text-color: @active-foreground; }