Copybara bot | ca5ce64 | 2024-11-08 17:38:08 +0100 | [diff] [blame] | 1 | /******************************************************************************* |
| 2 | * ROFI SQUARED THEME USING THE EVERFOREST PALETTE |
| 3 | * User : LR-Tech |
| 4 | * Theme Repo : https://github.com/lr-tech/rofi-themes-collection |
| 5 | *******************************************************************************/ |
| 6 | |
| 7 | * { |
| 8 | font: "FiraCode Nerd Font Medium 12"; |
| 9 | |
| 10 | bg0: #2B3339; |
| 11 | bg1: #323D43; |
| 12 | fg0: #D3C6AA; |
| 13 | |
| 14 | accent-color: #A7C080; |
| 15 | urgent-color: #DBBC7F; |
| 16 | |
| 17 | background-color: transparent; |
| 18 | text-color: @fg0; |
| 19 | |
| 20 | margin: 0; |
| 21 | padding: 0; |
| 22 | spacing: 0; |
| 23 | } |
| 24 | |
| 25 | window { |
| 26 | location: center; |
| 27 | width: 480; |
| 28 | |
| 29 | background-color: @bg0; |
| 30 | } |
| 31 | |
| 32 | inputbar { |
| 33 | spacing: 8px; |
| 34 | padding: 8px; |
| 35 | |
| 36 | background-color: @bg1; |
| 37 | } |
| 38 | |
| 39 | prompt, entry, element-icon, element-text { |
| 40 | vertical-align: 0.5; |
| 41 | } |
| 42 | |
| 43 | prompt { |
| 44 | text-color: @accent-color; |
| 45 | } |
| 46 | |
| 47 | textbox { |
| 48 | padding: 8px; |
| 49 | background-color: @bg1; |
| 50 | } |
| 51 | |
| 52 | listview { |
| 53 | padding: 4px 0; |
| 54 | lines: 8; |
| 55 | columns: 1; |
| 56 | |
| 57 | fixed-height: false; |
| 58 | } |
| 59 | |
| 60 | element { |
| 61 | padding: 8px; |
| 62 | spacing: 8px; |
| 63 | } |
| 64 | |
| 65 | element normal normal { |
| 66 | text-color: @fg0; |
| 67 | } |
| 68 | |
| 69 | element normal urgent { |
| 70 | text-color: @urgent-color; |
| 71 | } |
| 72 | |
| 73 | element normal active { |
| 74 | text-color: @accent-color; |
| 75 | } |
| 76 | |
| 77 | element alternate active { |
| 78 | text-color: @accent-color; |
| 79 | } |
| 80 | |
| 81 | element selected { |
| 82 | text-color: @bg0; |
| 83 | } |
| 84 | |
| 85 | element selected normal, element selected active { |
| 86 | background-color: @accent-color; |
| 87 | } |
| 88 | |
| 89 | element selected urgent { |
| 90 | background-color: @urgent-color; |
| 91 | } |
| 92 | |
| 93 | element-icon { |
| 94 | size: 0.8em; |
| 95 | } |
| 96 | |
| 97 | element-text { |
| 98 | text-color: inherit; |
| 99 | } |