Created
January 23, 2025 14:59
rofi-theme
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* rofi -dump-theme output. | |
* Rofi version: 1.7.8 | |
**/ | |
* { | |
fg-alt: rgba ( 127, 132, 156, 100 % ); | |
bg: rgba ( 30, 30, 46, 40 % ); | |
padding: 0; | |
margin: 0; | |
bg-alt: rgba ( 88, 91, 112, 40 % ); | |
bg-selected: rgba ( 49, 50, 68, 40 % ); | |
fg: rgba ( 205, 214, 244, 100 % ); | |
spacing: 0; | |
border: 0; | |
} | |
window { | |
width: 30.0000% ; | |
background-color: var(bg); | |
} | |
element { | |
padding: 8px 12px ; | |
background-color: transparent; | |
text-color: var(fg-alt); | |
} | |
element selected { | |
background-color: var(bg-selected); | |
text-color: var(fg); | |
} | |
element-text { | |
background-color: transparent; | |
vertical-align: 0.50; | |
text-color: inherit; | |
} | |
element-icon { | |
padding: 0px 10px 0px 0px ; | |
size: 14; | |
background-color: transparent; | |
} | |
entry { | |
padding: 12; | |
background-color: var(bg-alt); | |
text-color: var(fg); | |
} | |
inputbar { | |
background-color: var(bg); | |
children: [ "prompt","entry" ]; | |
} | |
listview { | |
background-color: var(bg); | |
columns: 1; | |
lines: 10; | |
} | |
mainbox { | |
background-color: var(bg); | |
children: [ "inputbar","listview","message" ]; | |
} | |
prompt { | |
padding: 12px 0px 0px 12px ; | |
enabled: true; | |
background-color: var(bg-alt); | |
text-color: var(fg); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment