|
| 1 | +/******************************************************* |
| 2 | + * ROFI deep purple colors for EndeavourOS |
| 3 | + * Maintainer: joekamprad <joekamprad@endeavouros.com> |
| 4 | + *******************************************************/ |
| 5 | +* { |
| 6 | + selected-normal-foreground: rgba ( 255, 127, 127, 100 % ); |
| 7 | + foreground: rgba ( 196, 203, 212, 100 % ); |
| 8 | + normal-foreground: @foreground; |
| 9 | + alternate-normal-background: rgba ( 45, 48, 59, 1 % ); |
| 10 | + red: rgba ( 220, 50, 47, 100 % ); |
| 11 | + selected-urgent-foreground: rgba ( 249, 249, 249, 100 % ); |
| 12 | + blue: rgba ( 38, 139, 210, 100 % ); |
| 13 | + urgent-foreground: rgba ( 204, 102, 102, 100 % ); |
| 14 | + alternate-urgent-background: rgba ( 75, 81, 96, 90 % ); |
| 15 | + active-foreground: rgba ( 101, 172, 255, 100 % ); |
| 16 | + lightbg: rgba ( 238, 232, 213, 100 % ); |
| 17 | + selected-active-foreground: rgba ( 249, 249, 249, 100 % ); |
| 18 | + alternate-active-background: rgba ( 45, 48, 59, 88 % ); |
| 19 | + background: rgba ( 26, 24, 44, 88 % ); |
| 20 | + alternate-normal-foreground: @foreground; |
| 21 | + normal-background: rgba ( 45, 48, 59, 1 % ); |
| 22 | + lightfg: rgba ( 88, 104, 117, 100 % ); |
| 23 | + selected-normal-background: rgba ( 24, 26, 32, 100 % ); |
| 24 | + border-color: rgba ( 124, 131, 137, 100 % ); |
| 25 | + spacing: 2; |
| 26 | + separatorcolor: rgba ( 45, 48, 59, 1 % ); |
| 27 | + urgent-background: rgba ( 45, 48, 59, 15 % ); |
| 28 | + selected-urgent-background: rgba ( 165, 66, 66, 100 % ); |
| 29 | + alternate-urgent-foreground: @urgent-foreground; |
| 30 | + background-color: rgba ( 0, 0, 0, 0 % ); |
| 31 | + alternate-active-foreground: @active-foreground; |
| 32 | + active-background: rgba ( 26, 24, 44, 17 % ); |
| 33 | + selected-active-background: rgba ( 26, 28, 35, 100 % ); |
| 34 | +} |
| 35 | +window { |
| 36 | + background-color: @background; |
| 37 | + border: 1; |
| 38 | + padding: 5; |
| 39 | +/* This is the line for rounded corners 👇 */ |
| 40 | + border-radius: 15px; |
| 41 | +} |
| 42 | + |
| 43 | +mainbox { |
| 44 | + border: 0; |
| 45 | + padding: 0; |
| 46 | +} |
| 47 | +message { |
| 48 | + border: 2px 0px 0px ; |
| 49 | + border-color: @separatorcolor; |
| 50 | + padding: 1px ; |
| 51 | +} |
| 52 | +textbox { |
| 53 | + text-color: @foreground; |
| 54 | +} |
| 55 | +listview { |
| 56 | + fixed-height: 0; |
| 57 | + border: 2px 0px 0px ; |
| 58 | + border-color: @separatorcolor; |
| 59 | + spacing: 2px ; |
| 60 | + scrollbar: true; |
| 61 | + padding: 2px 0px 0px ; |
| 62 | +} |
| 63 | +element { |
| 64 | + border: 0; |
| 65 | + padding: 1px ; |
| 66 | +} |
| 67 | +element-text { |
| 68 | + background-color: inherit; |
| 69 | + text-color: inherit; |
| 70 | +} |
| 71 | +element.normal.normal { |
| 72 | + background-color: @normal-background; |
| 73 | + text-color: @normal-foreground; |
| 74 | +} |
| 75 | +element.normal.urgent { |
| 76 | + background-color: @urgent-background; |
| 77 | + text-color: @urgent-foreground; |
| 78 | +} |
| 79 | +element.normal.active { |
| 80 | + background-color: @active-background; |
| 81 | + text-color: @active-foreground; |
| 82 | +} |
| 83 | +element.selected.normal { |
| 84 | + background-color: @selected-normal-background; |
| 85 | + text-color: @selected-normal-foreground; |
| 86 | +} |
| 87 | +element.selected.urgent { |
| 88 | + background-color: @selected-urgent-background; |
| 89 | + text-color: @selected-urgent-foreground; |
| 90 | +} |
| 91 | +element.selected.active { |
| 92 | + background-color: @selected-active-background; |
| 93 | + text-color: @selected-active-foreground; |
| 94 | +} |
| 95 | +element.alternate.normal { |
| 96 | + background-color: @alternate-normal-background; |
| 97 | + text-color: @alternate-normal-foreground; |
| 98 | +} |
| 99 | +element.alternate.urgent { |
| 100 | + background-color: @alternate-urgent-background; |
| 101 | + text-color: @alternate-urgent-foreground; |
| 102 | +} |
| 103 | +element.alternate.active { |
| 104 | + background-color: @alternate-active-background; |
| 105 | + text-color: @alternate-active-foreground; |
| 106 | +} |
| 107 | +scrollbar { |
| 108 | + width: 4px ; |
| 109 | + border: 0; |
| 110 | + handle-color: @normal-foreground; |
| 111 | + handle-width: 8px ; |
| 112 | + padding: 0; |
| 113 | +} |
| 114 | +mode-switcher { |
| 115 | + border: 2px 0px 0px ; |
| 116 | + border-color: @separatorcolor; |
| 117 | +} |
| 118 | +button { |
| 119 | + spacing: 0; |
| 120 | + text-color: @normal-foreground; |
| 121 | +} |
| 122 | +button.selected { |
| 123 | + background-color: @selected-normal-background; |
| 124 | + text-color: @selected-normal-foreground; |
| 125 | +} |
| 126 | +inputbar { |
| 127 | + spacing: 0; |
| 128 | + text-color: @normal-foreground; |
| 129 | + padding: 1px ; |
| 130 | +} |
| 131 | +case-indicator { |
| 132 | + spacing: 0; |
| 133 | + text-color: @normal-foreground; |
| 134 | +} |
| 135 | +entry { |
| 136 | + spacing: 0; |
| 137 | + text-color: @normal-foreground; |
| 138 | +} |
| 139 | +prompt { |
| 140 | + spacing: 0; |
| 141 | + text-color: @normal-foreground; |
| 142 | +} |
| 143 | +inputbar { |
| 144 | + children: [ prompt,textbox-prompt-colon,entry,case-indicator ]; |
| 145 | +} |
| 146 | +textbox-prompt-colon { |
| 147 | + expand: false; |
| 148 | + str: ":"; |
| 149 | + margin: 0px 0.3em 0em 0em ; |
| 150 | + text-color: @normal-foreground; |
| 151 | +} |
0 commit comments