Update rofi dracula config
This commit is contained in:
parent
b149bf4ee8
commit
ff14cd3192
1 changed files with 32 additions and 34 deletions
|
@ -6,6 +6,7 @@
|
||||||
background-color: #282a36;
|
background-color: #282a36;
|
||||||
active-background: #6272a4;
|
active-background: #6272a4;
|
||||||
urgent-background: #ff5555;
|
urgent-background: #ff5555;
|
||||||
|
urgent-foreground: #282a36;
|
||||||
selected-background: @active-background;
|
selected-background: @active-background;
|
||||||
selected-urgent-background: @urgent-background;
|
selected-urgent-background: @urgent-background;
|
||||||
selected-active-background: @active-background;
|
selected-active-background: @active-background;
|
||||||
|
@ -13,26 +14,26 @@
|
||||||
bordercolor: @active-background;
|
bordercolor: @active-background;
|
||||||
}
|
}
|
||||||
|
|
||||||
window {
|
#window {
|
||||||
background-color: @background;
|
background-color: @background-color;
|
||||||
border: 1;
|
border: 1;
|
||||||
border-radius: 6;
|
border-radius: 6;
|
||||||
border-color: @bordercolor;
|
border-color: @bordercolor;
|
||||||
padding: 5;
|
padding: 5;
|
||||||
}
|
}
|
||||||
mainbox {
|
#mainbox {
|
||||||
border: 0;
|
border: 0;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
}
|
}
|
||||||
message {
|
#message {
|
||||||
border: 1px dash 0px 0px ;
|
border: 1px dash 0px 0px ;
|
||||||
border-color: @separatorcolor;
|
border-color: @separatorcolor;
|
||||||
padding: 1px ;
|
padding: 1px ;
|
||||||
}
|
}
|
||||||
textbox {
|
#textbox {
|
||||||
text-color: @foreground;
|
text-color: @foreground;
|
||||||
}
|
}
|
||||||
listview {
|
#listview {
|
||||||
fixed-height: 0;
|
fixed-height: 0;
|
||||||
border: 2px dash 0px 0px ;
|
border: 2px dash 0px 0px ;
|
||||||
border-color: @bordercolor;
|
border-color: @bordercolor;
|
||||||
|
@ -40,90 +41,87 @@ listview {
|
||||||
scrollbar: false;
|
scrollbar: false;
|
||||||
padding: 2px 0px 0px ;
|
padding: 2px 0px 0px ;
|
||||||
}
|
}
|
||||||
element {
|
#element {
|
||||||
border: 0;
|
border: 0;
|
||||||
padding: 1px ;
|
padding: 1px ;
|
||||||
}
|
}
|
||||||
element-text {
|
#element.normal.normal {
|
||||||
background-color: inherit;
|
background-color: @background-color;
|
||||||
text-color: inherit;
|
|
||||||
}
|
|
||||||
element-icon {
|
|
||||||
background-color: inherit;
|
|
||||||
}
|
|
||||||
element.normal.normal {
|
|
||||||
background-color: @background;
|
|
||||||
text-color: @foreground;
|
text-color: @foreground;
|
||||||
}
|
}
|
||||||
element.normal.urgent {
|
#element.normal.urgent {
|
||||||
background-color: @urgent-background;
|
background-color: @urgent-background;
|
||||||
text-color: @urgent-foreground;
|
text-color: @urgent-foreground;
|
||||||
}
|
}
|
||||||
element.normal.active {
|
#element.normal.active {
|
||||||
background-color: @active-background;
|
background-color: @active-background;
|
||||||
text-color: @foreground;
|
text-color: @foreground;
|
||||||
}
|
}
|
||||||
element.selected.normal {
|
#element.selected.normal {
|
||||||
background-color: @selected-background;
|
background-color: @selected-background;
|
||||||
text-color: @foreground;
|
text-color: @foreground;
|
||||||
}
|
}
|
||||||
element.selected.urgent {
|
#element.selected.urgent {
|
||||||
background-color: @selected-urgent-background;
|
background-color: @selected-urgent-background;
|
||||||
text-color: @foreground;
|
text-color: @foreground;
|
||||||
}
|
}
|
||||||
element.selected.active {
|
#element.selected.active {
|
||||||
background-color: @selected-active-background;
|
background-color: @selected-active-background;
|
||||||
text-color: @foreground;
|
text-color: @foreground;
|
||||||
}
|
}
|
||||||
element.alternate.normal {
|
#element.alternate.normal {
|
||||||
background-color: @background;
|
background-color: @background-color;
|
||||||
text-color: @foreground;
|
text-color: @foreground;
|
||||||
}
|
}
|
||||||
element.alternate.urgent {
|
#element.alternate.urgent {
|
||||||
background-color: @urgent-background;
|
background-color: @urgent-background;
|
||||||
text-color: @foreground;
|
text-color: @foreground;
|
||||||
}
|
}
|
||||||
element.alternate.active {
|
#element.alternate.active {
|
||||||
background-color: @active-background;
|
background-color: @active-background;
|
||||||
text-color: @foreground;
|
text-color: @foreground;
|
||||||
}
|
}
|
||||||
scrollbar {
|
#scrollbar {
|
||||||
width: 2px ;
|
width: 2px ;
|
||||||
border: 0;
|
border: 0;
|
||||||
handle-width: 8px ;
|
handle-width: 8px ;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
}
|
}
|
||||||
sidebar {
|
#sidebar {
|
||||||
border: 2px dash 0px 0px ;
|
border: 2px dash 0px 0px ;
|
||||||
border-color: @separatorcolor;
|
border-color: @separatorcolor;
|
||||||
}
|
}
|
||||||
button.selected {
|
#button.selected {
|
||||||
background-color: @selected-background;
|
background-color: @selected-background;
|
||||||
text-color: @foreground;
|
text-color: @foreground;
|
||||||
}
|
}
|
||||||
inputbar {
|
#inputbar {
|
||||||
spacing: 0;
|
spacing: 0;
|
||||||
text-color: @foreground;
|
text-color: @foreground;
|
||||||
padding: 1px ;
|
padding: 1px ;
|
||||||
}
|
}
|
||||||
case-indicator {
|
#case-indicator {
|
||||||
spacing: 0;
|
spacing: 0;
|
||||||
text-color: @foreground;
|
text-color: @foreground;
|
||||||
}
|
}
|
||||||
entry {
|
#entry {
|
||||||
spacing: 0;
|
spacing: 0;
|
||||||
text-color: @foreground;
|
text-color: @foreground;
|
||||||
}
|
}
|
||||||
prompt {
|
#prompt {
|
||||||
spacing: 0;
|
spacing: 0;
|
||||||
text-color: @foreground;
|
text-color: @foreground;
|
||||||
}
|
}
|
||||||
inputbar {
|
#inputbar {
|
||||||
children: [ prompt,textbox-prompt-colon,entry,case-indicator ];
|
children: [ prompt,textbox-prompt-colon,entry,case-indicator ];
|
||||||
}
|
}
|
||||||
textbox-prompt-colon {
|
#textbox-prompt-colon {
|
||||||
expand: false;
|
expand: false;
|
||||||
str: ":";
|
str: ":";
|
||||||
margin: 0px 0.3em 0em 0em ;
|
margin: 0px 0.3em 0em 0em ;
|
||||||
text-color: @foreground;
|
text-color: @foreground;
|
||||||
}
|
}
|
||||||
|
element-text, element-icon {
|
||||||
|
background-color: inherit;
|
||||||
|
text-color: inherit;
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in a new issue