Created
November 11, 2023 14:04
-
-
Save gabyx/628164a5eecfbb0284dd7f91ab0d8463 to your computer and use it in GitHub Desktop.
This file contains hidden or 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 | |
**/ | |
* { | |
alternate-urgent-background: var(lightbg); | |
alternate-active-foreground: var(blue); | |
selected-active-background: var(blue); | |
selected-urgent-foreground: var(background); | |
fg2: rgba ( 150, 150, 150, 100 % ); | |
padding: 0px ; | |
text-color: var(fg1); | |
normal-foreground: var(foreground); | |
fg3: rgba ( 61, 61, 61, 100 % ); | |
background: rgba ( 253, 246, 227, 100 % ); | |
bg0: rgba ( 33, 33, 33, 95 % ); | |
alternate-normal-foreground: var(foreground); | |
urgent-foreground: var(red); | |
active-background: var(background); | |
selected-normal-background: var(lightfg); | |
blue: rgba ( 38, 139, 210, 100 % ); | |
selected-urgent-background: var(red); | |
selected-active-foreground: var(background); | |
font: "NotoSans Nerd Font 12"; | |
separatorcolor: var(foreground); | |
bg1: rgba ( 42, 42, 42, 100 % ); | |
lightfg: rgba ( 88, 104, 117, 100 % ); | |
alternate-active-background: var(lightbg); | |
bg2: rgba ( 61, 61, 61, 50 % ); | |
spacing: 0px ; | |
font-weight: bold ; | |
margin: 0px ; | |
lightbg: rgba ( 238, 232, 213, 100 % ); | |
red: rgba ( 220, 50, 47, 100 % ); | |
background-color: transparent; | |
normal-background: var(background); | |
border-color: var(foreground); | |
foreground: rgba ( 0, 43, 54, 100 % ); | |
bg3: rgba ( 26, 115, 232, 95 % ); | |
fg0: rgba ( 230, 230, 230, 100 % ); | |
alternate-normal-background: var(lightbg); | |
selected-normal-foreground: var(lightbg); | |
urgent-background: var(background); | |
alternate-urgent-foreground: var(red); | |
fg1: White; | |
active-foreground: var(blue); | |
} | |
element { | |
padding: 8px 16px ; | |
cursor: pointer; | |
spacing: 8px ; | |
border: 0; | |
border-radius: 16px ; | |
} | |
element normal.normal { | |
background-color: var(normal-background); | |
text-color: var(normal-foreground); | |
} | |
element normal.urgent { | |
background-color: var(urgent-background); | |
text-color: var(urgent-foreground); | |
} | |
element normal.active { | |
background-color: var(active-background); | |
text-color: var(bg3); | |
} | |
element selected.normal { | |
background-color: var(bg3); | |
text-color: var(selected-normal-foreground); | |
} | |
element selected.urgent { | |
background-color: var(selected-urgent-background); | |
text-color: var(selected-urgent-foreground); | |
} | |
element selected.active { | |
background-color: var(bg3); | |
text-color: var(selected-active-foreground); | |
} | |
element alternate.normal { | |
background-color: var(alternate-normal-background); | |
text-color: var(alternate-normal-foreground); | |
} | |
element alternate.urgent { | |
background-color: var(alternate-urgent-background); | |
text-color: var(alternate-urgent-foreground); | |
} | |
element alternate.active { | |
background-color: var(alternate-active-background); | |
text-color: var(alternate-active-foreground); | |
} | |
element-text { | |
background-color: transparent; | |
cursor: inherit; | |
highlight: inherit; | |
text-color: inherit; | |
} | |
element-icon { | |
background-color: transparent; | |
size: 1.0000em ; | |
cursor: inherit; | |
vertical-align: 0.50; | |
text-color: inherit; | |
} | |
window { | |
padding: 5; | |
background-color: var(bg0); | |
location: center; | |
width: 520; | |
border-color: var(bg2); | |
border: 2px ; | |
border-radius: 24px ; | |
} | |
mainbox { | |
padding: 5px ; | |
border: 0; | |
} | |
message { | |
padding: 1px ; | |
margin: 12px 0px 0px ; | |
background-color: var(bg2); | |
border-color: var(bg2); | |
border: 2px dash 0px 0px ; | |
border-radius: 16px ; | |
} | |
textbox { | |
padding: 8px 24px ; | |
text-color: var(foreground); | |
} | |
listview { | |
fixed-height: false; | |
padding: 2px 0px 0px ; | |
scrollbar: true; | |
lines: 8; | |
background-color: transparent; | |
margin: 12px 0px 0px ; | |
border-color: var(separatorcolor); | |
border: 2px dash 0px 0px ; | |
spacing: 2px ; | |
columns: 1; | |
} | |
scrollbar { | |
width: 4px ; | |
padding: 3px ; | |
handle-width: 3px ; | |
border: 0; | |
handle-color: var(fg2); | |
} | |
sidebar { | |
border-color: var(separatorcolor); | |
border: 2px dash 0px 0px ; | |
} | |
button { | |
cursor: pointer; | |
spacing: 0; | |
text-color: var(normal-foreground); | |
} | |
button selected { | |
background-color: var(selected-normal-background); | |
text-color: var(selected-normal-foreground); | |
} | |
num-filtered-rows { | |
expand: false; | |
text-color: Gray; | |
} | |
num-rows { | |
expand: false; | |
text-color: Gray; | |
} | |
textbox-num-sep { | |
expand: false; | |
str: "/"; | |
text-color: Gray; | |
} | |
inputbar { | |
text-color: var(normal-foreground); | |
padding: 8px 16px ; | |
children: [ "prompt","entry" ]; | |
background-color: var(bg1); | |
border-radius: 16px ; | |
border-color: var(bg3); | |
border: 2px ; | |
spacing: 8px ; | |
} | |
case-indicator { | |
spacing: 0; | |
text-color: var(normal-foreground); | |
} | |
entry { | |
text-color: var(fg1); | |
cursor: text; | |
spacing: 0; | |
placeholder-color: var(fg3); | |
placeholder: "Search"; | |
} | |
prompt { | |
spacing: 0; | |
text-color: var(fg2); | |
} | |
textbox-prompt-colon { | |
margin: 0px 0.3000em 0.0000em 0.0000em ; | |
expand: false; | |
str: ":"; | |
text-color: inherit; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment