/** * User: deadguy * Copyright: deadguy */ * { background-color: #121212; foreground: #e0d0c3; selbg: #039be5; actbg: #505050; urgbg: #e53935; selected-normal-foreground: @background-color; normal-foreground: @foreground; selected-normal-background: @selbg; normal-background: @background-color; selected-urgent-foreground: @background-color; urgent-foreground: @foreground; selected-urgent-background: @urgbg; urgent-background: @background-color; selected-active-foreground: @background-color; active-foreground: @foreground; selected-active-background: @actbg; active-background: @background-color; font: "SF Pro Text 10"; } window { anchor: northwest; width: 100%; location: northwest; margin: 0; padding: 0; children: [ horibox ]; } horibox { orientation: horizontal; children: [ prompt,entry,listview ]; } listview { spacing: 5px 10px; padding: 0px 10px; layout: horizontal; lines: 100; } entry { expand: false; width: 20em; text-color: @normal-foreground; vertical-align: 1; padding: 5px; } element { padding: 5px; } element.normal.normal { background-color: @normal-background; text-color: @normal-foreground; } 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: @selected-normal-background; text-color: @selected-normal-foreground; } 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: @anormal-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; } prompt { padding: 5px 7px; margin: 0; text-color: @background-color; background-color: @selected-normal-background; }