Skip to content

Instantly share code, notes, and snippets.

@EgZvor
Created February 16, 2019 20:01
Show Gist options
  • Save EgZvor/ea6343988d0a1d66481daa79b7de6fbd to your computer and use it in GitHub Desktop.
Save EgZvor/ea6343988d0a1d66481daa79b7de6fbd to your computer and use it in GitHub Desktop.
/* Dracula colors */
* {
black: rgba ( 40, 42, 54, 100 % );
gray: rgba ( 68, 71, 90, 100 % );
white: rgba ( 248, 248, 242, 100 % );
light-gray: rgba ( 98, 114, 164, 100 % );
cyan: rgba ( 139, 233, 253, 100 % );
green: rgba ( 80, 250, 123, 100 % );
orange: rgba ( 255, 184, 108, 100 % );
pink: rgba ( 255, 121, 198, 100 % );
purple: rgba ( 189, 147, 249, 100 % );
red: rgba ( 255, 85, 85, 100 % );
yellow: rgba ( 241, 250, 140, 100 % );
}
* {
normal-foreground: @purple;
urgent-foreground: @red;
normal-background: @gray;
selected-normal-foreground: @pink;
selected-normal-background: @gray;
alternate-normal-background: @normal-background;
alternate-normal-foreground: @normal-foreground;
urgent-background: @normal-background;
alternate-urgent-background: @urgent-background;
alternate-urgent-foreground: @urgent-foreground;
selected-active-foreground: @normal-foreground;
selected-urgent-background: @normal-background;
alternate-active-background: @normal-background;
alternate-active-foreground: @selected-active-foreground;
alternate-active-background: @selected-active-background;
border-color: @selected-normal-foreground;
separatorcolor: @border-color;
spacing: 2;
background-color: @normal-background;
}
window {
background-color: transparent;
border: 0;
padding: 0;
margin: 0;
}
mainbox {
background-color: inherit;
border: 0;
padding: 0;
}
element {
border: 0;
padding: 1px ;
}
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 {
border: 0;
}
button.selected {
background-color: @selected-normal-background;
text-color: @selected-normal-foreground;
}
inputbar {
spacing: 0;
text-color: @normal-foreground;
background-color: @normal-background;
padding: 10px ;
margin: 5px ;
children: [prompt, textbox-prompt-colon, entry, case-indicator];
}
listview {
padding: 10px;
margin: 5px;
}
case-indicator {
spacing: 0;
text-color: @normal-background;
}
entry {
spacing: 0;
text-color: @normal-foreground;
}
prompt {
spacing: 0;
text-color: @normal-foreground;
enabled: true;
}
textbox-prompt-colon {
text-color: inherit;
expand: false;
margin: 0 0em 0em 0em;
str: ": ";
}
@zer0-sh
Copy link

zer0-sh commented Nov 24, 2020

i love it!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment