Created
October 14, 2024 14:46
-
-
Save rkmax/83b6da7997e8b77012c99d208ef71319 to your computer and use it in GitHub Desktop.
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.5 | |
**/ | |
* { | |
text-color: var(fg0); | |
padding: 0; | |
fg2: rgba ( 222, 222, 222, 50 % ); | |
bg2: rgba ( 8, 96, 242, 90 % ); | |
fg1: White; | |
fg0: rgba ( 222, 222, 222, 100 % ); | |
background-color: transparent; | |
bg0: rgba ( 36, 36, 36, 90 % ); | |
bg1: rgba ( 126, 126, 126, 50 % ); | |
font: "Montserrat 12"; | |
spacing: 0; | |
margin: 0; | |
} | |
window { | |
width: 640; | |
background-color: var(bg0); | |
location: center; | |
border-radius: 8; | |
} | |
inputbar { | |
padding: 12px ; | |
font: "Montserrat 20"; | |
spacing: 12px ; | |
children: [ "icon-search","entry" ]; | |
} | |
icon-search { | |
filename: "search"; | |
expand: false; | |
vertical-align: 0.50; | |
size: 28px ; | |
} | |
entry { | |
vertical-align: 0.50; | |
font: inherit; | |
placeholder: "Search"; | |
placeholder-color: var(fg2); | |
} | |
element-icon { | |
size: 1.0000em ; | |
vertical-align: 0.50; | |
} | |
element-text { | |
vertical-align: 0.50; | |
text-color: inherit; | |
} | |
message { | |
background-color: var(bg1); | |
border-color: var(bg1); | |
border: 2px 0px 0px ; | |
} | |
textbox { | |
padding: 8px 24px ; | |
} | |
listview { | |
columns: 1; | |
border-color: var(bg1); | |
lines: 10; | |
fixed-height: false; | |
border: 1px 0px 0px ; | |
} | |
element { | |
padding: 8px 16px ; | |
background-color: transparent; | |
spacing: 16px ; | |
} | |
element normal.active { | |
text-color: var(bg2); | |
} | |
element alternate.active { | |
text-color: var(bg2); | |
} | |
element selected.normal { | |
background-color: var(bg2); | |
text-color: var(fg1); | |
} | |
element selected.active { | |
background-color: var(bg2); | |
text-color: var(fg1); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment