Configuration files
at dev 3.3 kB view raw
1* { 2 active-background: #9F576F; 3 active-foreground: @foreground; 4 normal-background: @background; 5 normal-foreground: @foreground; 6 urgent-background: #DF3655; 7 urgent-foreground: @foreground; 8 9 alternate-active-background: @background; 10 alternate-active-foreground: @foreground; 11 alternate-normal-background: @background; 12 alternate-normal-foreground: @foreground; 13 alternate-urgent-background: @background; 14 alternate-urgent-foreground: @foreground; 15 16 selected-active-background: #DF3655; 17 selected-active-foreground: @foreground; 18 selected-normal-background: #9F576F; 19 selected-normal-foreground: @foreground; 20 selected-urgent-background: #A76D7C; 21 selected-urgent-foreground: @foreground; 22 23 background-color: @background; 24 background: #0d0615; 25 foreground: #f4c1c0; 26 border-color: @background; 27 spacing: 2; 28 ac: @active-background; 29 fg: @foreground; 30 bg: @background; 31} 32 33#window { 34 background-color: @background; 35 border: 0; 36 padding: 2.5ch; 37} 38 39#mainbox { 40 border: 0; 41 padding: 0; 42} 43 44#message { 45 border: 2px 0px 0px; 46 border-color: @border-color; 47 padding: 1px; 48} 49 50#textbox { 51 text-color: @foreground; 52} 53 54#inputbar { 55 children: [ prompt,textbox-prompt-colon,entry,case-indicator ]; 56} 57 58#textbox-prompt-colon { 59 expand: false; 60 str: ":"; 61 margin: 0px 0.3em 0em 0em; 62 text-color: @normal-foreground; 63} 64 65#listview { 66 fixed-height: 0; 67 border: 2px 0px 0px; 68 border-color: @border-color; 69 spacing: 2px; 70 scrollbar: true; 71 padding: 2px 0px 0px; 72} 73 74#element { 75 border: 0; 76 padding: 1px; 77} 78 79#element.normal.normal { 80 background-color: @normal-background; 81 text-color: @normal-foreground; 82} 83 84#element.normal.urgent { 85 background-color: @urgent-background; 86 text-color: @urgent-foreground; 87} 88 89#element.normal.active { 90 background-color: @active-background; 91 text-color: @active-foreground; 92} 93 94#element.selected.normal { 95 background-color: @selected-normal-background; 96 text-color: @selected-normal-foreground; 97} 98 99#element.selected.urgent { 100 background-color: @selected-urgent-background; 101 text-color: @selected-urgent-foreground; 102} 103 104#element.selected.active { 105 background-color: @selected-active-background; 106 text-color: @selected-active-foreground; 107} 108 109#element.alternate.normal { 110 background-color: @alternate-normal-background; 111 text-color: @alternate-normal-foreground; 112} 113 114#element.alternate.urgent { 115 background-color: @alternate-urgent-background; 116 text-color: @alternate-urgent-foreground; 117} 118 119#element.alternate.active { 120 background-color: @alternate-active-background; 121 text-color: @alternate-active-foreground; 122} 123 124#scrollbar { 125 width: 4px; 126 border: 0; 127 handle-width: 8px; 128 padding: 0; 129} 130 131#sidebar { 132 border: 2px 0px 0px; 133 border-color: @border-color; 134} 135 136#button { 137 text-color: @normal-foreground; 138} 139 140#button.selected { 141 background-color: @selected-normal-background; 142 text-color: @selected-normal-foreground; 143} 144 145#inputbar { 146 spacing: 0; 147 text-color: @normal-foreground; 148 padding: 1px; 149} 150 151#case-indicator { 152 spacing: 0; 153 text-color: @normal-foreground; 154} 155 156#entry { 157 spacing: 0; 158 text-color: @normal-foreground; 159} 160 161#prompt { 162 spacing: 0; 163 text-color: @normal-foreground; 164}