Skip to content

Instantly share code, notes, and snippets.

@mpieczaba
Created May 16, 2024 18:35
Show Gist options
  • Save mpieczaba/3669d07560a7bf41907af32be9e788f6 to your computer and use it in GitHub Desktop.
Save mpieczaba/3669d07560a7bf41907af32be9e788f6 to your computer and use it in GitHub Desktop.
/**
* rofi -dump-theme output.
* Rofi version: 1.7.5
**/
* {
background-color: transparent;
}
window {
width: 550px ;
background-color: rgba ( 15, 17, 26, 100 % );
location: center;
border: 0px ;
}
mainbox {
children: [ "inputbar","listview" ];
}
inputbar {
expand: false;
children: [ "prompt","entry" ];
}
prompt {
padding: 10px 20px ;
enabled: true;
text-color: rgba ( 130, 170, 255, 100 % );
}
listview {
padding: 10px ;
cycle: true;
dynamic: true;
columns: 2;
layout: vertical;
lines: 7;
}
entry {
blink: true;
vertical-align: 0.50;
cursor-color: rgba ( 255, 204, 0, 100 % );
placeholder: "Type to filter";
text-color: White;
}
element {
orientation: horizontal;
padding: 6px ;
children: [ "element-icon","element-text" ];
}
element selected {
background-color: LemonChiffon;
}
element-icon {
background: transparent;
size: 24px ;
}
element-text {
margin: 0px 2px ;
vertical-align: 0.50;
font: "FiraCode Nerd Font SemiBold 11";
text-color: White;
}
element-text selected {
text-color: rgba ( 15, 17, 26, 100 % );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment