Created
November 28, 2020 00:16
-
-
Save Ferryistaken/e0cf8e0850ae386d33580aa191b4ebad to your computer and use it in GitHub Desktop.
Modern Rofi Themes
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
configuration { | |
show-icons: false; | |
sidebar-mode: false; | |
} | |
* { | |
// Default bg is transparent. | |
background-color: transparent; | |
// Default text is white | |
text-color: white; | |
spacing: 30; | |
} | |
#window { | |
// Default font | |
font: "System San Francisco Display 18"; | |
fullscreen: true; | |
transparency: "background"; | |
background-color: #282c34d0; | |
// Add dummy widgets on top and bottom so the sizing | |
// nicely centers hdum, independent of resolution. | |
children: [ dummy1, hdum, dummy2 ]; | |
} | |
#hdum { | |
orientation: horizontal; | |
// Add dummy widgets on left and right so the sizing | |
// nicely centers mainbox, independent of resolution. | |
children: [ dummy3, mainbox, dummy4 ]; | |
} | |
#element selected { | |
text-color: #9575cd; | |
} |
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
/** | |
* User: deadguy | |
* Copyright: deadguy | |
*/ | |
configuration { | |
display-drun: "Activate"; | |
display-run: "Execute"; | |
display-window: "Window"; | |
show-icons: true; | |
sidebar-mode: true; | |
} | |
* { | |
background-color: #080808; | |
text-color: #d3d7cf; | |
selbg: #215d9c; | |
actbg: #262626; | |
urgbg: #e53935; | |
winbg: #26c6da; | |
selected-normal-foreground: @winbg; | |
normal-foreground: @text-color; | |
selected-normal-background: @actbg; | |
normal-background: @background-color; | |
selected-urgent-foreground: @background-color; | |
urgent-foreground: @text-color; | |
selected-urgent-background: @urgbg; | |
urgent-background: @background-color; | |
selected-active-foreground: @winbg; | |
active-foreground: @text-color; | |
selected-active-background: @actbg; | |
active-background: @selbg; | |
line-margin: 2; | |
line-padding: 2; | |
separator-style: "none"; | |
hide-scrollbar: "true"; | |
margin: 0; | |
padding: 0; | |
} | |
window { | |
location: west; | |
anchor: west; | |
height: 100%; | |
width: 22%; | |
orientation: horizontal; | |
children: [mainbox]; | |
} | |
mainbox { | |
spacing: 0.8em; | |
children: [ entry,listview,mode-switcher ]; | |
} | |
button { padding: 5px 2px; } | |
button selected { | |
background-color: @active-background; | |
text-color: @background-color; | |
} | |
inputbar { | |
padding: 5px; | |
spacing: 5px; | |
} | |
listview { | |
spacing: 0.5em; | |
dynamic: false; | |
cycle: true; | |
} | |
element { padding: 10px; } | |
entry { | |
expand: false; | |
text-color: @normal-foreground; | |
vertical-align: 1; | |
padding: 5px; | |
} | |
element normal.normal { | |
background-color: @normal-background; | |
text-color: @normal-foreground; | |
} | |
element normal.urgent { | |
background-color: @urgent-background; | |
text-color: @urgent-foreground; | |
} | |
element normal.active { | |
background-color: @active-background; | |
text-color: @active-foreground; | |
} | |
element selected.normal { | |
background-color: @selected-normal-background; | |
text-color: @selected-normal-foreground; | |
border: 0 5px solid 0 0; | |
border-color: @active-background; | |
} | |
element selected.urgent { | |
background-color: @selected-urgent-background; | |
text-color: @selected-urgent-foreground; | |
} | |
element selected.active { | |
background-color: @selected-active-background; | |
text-color: @selected-active-foreground; | |
} | |
element alternate.normal { | |
background-color: @normal-background; | |
text-color: @normal-foreground; | |
} | |
element alternate.urgent { | |
background-color: @urgent-background; | |
text-color: @urgent-foreground; | |
} | |
element alternate.active { | |
background-color: @active-background; | |
text-color: @active-foreground; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment