Skip to content

Instantly share code, notes, and snippets.

@jakebox
Created August 13, 2020 04:51
Show Gist options
  • Save jakebox/8cc49337bb787fb25687c6591c82a420 to your computer and use it in GitHub Desktop.
Save jakebox/8cc49337bb787fb25687c6591c82a420 to your computer and use it in GitHub Desktop.
/*******************************************************************************
* ROFI Jake Theme
* User: Jake
* Copyright: Also jake but idc
*******************************************************************************/
* {
active-background: #6674AD;
active-foreground: @foreground;
normal-background: @background;
normal-foreground: @foreground;
urgent-background: #3F4E82;
urgent-foreground: @foreground;
alternate-active-background: @background;
alternate-active-foreground: @foreground;
alternate-normal-background: #121133;
alternate-normal-foreground: @foreground;
alternate-urgent-background: @background;
alternate-urgent-foreground: @foreground;
selected-active-background: #3F4E82;
selected-active-foreground: @foreground;
selected-normal-background: #4A5687;
selected-normal-foreground: @foreground;
selected-urgent-background: #696F96;
selected-urgent-foreground: @foreground;
inner-border-color: #E8E8E8;
background-color: @background;
background: #100f27;
foreground: #d7c4ce;
border-color: @background;
spacing: 2;
}
#window {
background-color: #B082A4;
border: 0.5;
padding: 0.25ch;
}
#mainbox {
mainbox-color: #D4909D;
border: 2;
padding: 5px;
}
#message {
border: 2px 0px 0px;
border-color: @border-color;
padding: 1px;
}
#textbox {
text-color: @foreground;
}
#inputbar {
children: [ prompt,textbox-prompt-colon,entry,case-indicator ];
}
#textbox-prompt-colon {
expand: false;
str: ":";
margin: 0px 0.3em 0em 0em;
text-color: @normal-foreground;
}
#listview {
fixed-height: 0;
border: 2px 2px 2px;
border-color: @inner-border-color;
spacing: 2px;
scrollbar: false;
padding: 2px 4px 4px;
}
#element {
border: 0;
padding: 3px;
}
#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;
}
#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: @alternate-normal-background;
text-color: @alternate-normal-foreground;
}
#element.alternate.urgent {
background-color: @alternate-urgent-background;
text-color: @alternate-urgent-foreground;
}
#element.alternate.active {
background-color: @alternate-active-background;
text-color: @alternate-active-foreground;
}
#scrollbar {
width: 4px;
border: 0;
handle-width: 8px;
padding: 0;
}
#sidebar {
border: 2px 0px 0px;
border-color: @border-color;
}
#button {
text-color: @normal-foreground;
}
#button.selected {
background-color: @selected-normal-background;
text-color: @selected-normal-foreground;
}
#inputbar {
spacing: 2;
text-color: #7E789A;
padding: 2px;
}
#case-indicator {
spacing: 0;
text-color: @normal-foreground;
}
#entry {
spacing: 0;
text-color: @normal-foreground;
}
#prompt {
spacing: 0;
text-color: #FFFFFF;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment