You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
135 lines
3.3 KiB
Plaintext
135 lines
3.3 KiB
Plaintext
@import "colors.rasi"
|
|
|
|
configuration {
|
|
show-icons: false;
|
|
sidebar-mode: false;
|
|
hover-select: true;
|
|
me-select-entry: "";
|
|
me-accept-entry: [MousePrimary];
|
|
}
|
|
*{
|
|
font: "Product Sans Medium 11";
|
|
//Colors
|
|
foreground:#f8f8f2; //Text
|
|
accent: @selected; //Highlight
|
|
foreground-selection:@foreground; //Selection_fg
|
|
background-selection: @selected; //Selection_bg
|
|
|
|
transparent: #ffffff00;
|
|
background-color: @transparent;
|
|
text-color: @foreground;
|
|
selected-normal-foreground: @foreground-selection;
|
|
normal-foreground: @foreground;
|
|
alternate-normal-background: @transparent;
|
|
selected-urgent-foreground: @foreground;
|
|
urgent-foreground: @foreground;
|
|
alternate-urgent-background: @background;
|
|
active-foreground: @accent;
|
|
selected-active-foreground: @background-selection;
|
|
alternate-normal-foreground: @foreground;
|
|
alternate-active-background: @background;
|
|
bordercolor: @background;
|
|
normal-background: @transparent;
|
|
selected-normal-background: @background-selection;
|
|
separatorcolor: @accent;
|
|
urgent-background: @accent;
|
|
alternate-urgent-foreground: @foreground;
|
|
selected-urgent-background: @accent;
|
|
alternate-active-foreground: @foreground;
|
|
selected-active-background: @transparent;
|
|
active-background: @transparent;
|
|
}
|
|
window {
|
|
width: 400px;
|
|
text-color: @foreground;
|
|
background-color: @background;
|
|
border-radius: 20px;
|
|
padding: 18;
|
|
}
|
|
mainbox {
|
|
border: 0;
|
|
padding: 0;
|
|
}
|
|
textbox {
|
|
text-color: @foreground;
|
|
}
|
|
listview {
|
|
columns: 1;
|
|
lines: 15;
|
|
spacing: 4px;
|
|
cycle: true;
|
|
dynamic: true;
|
|
layout: vertical;
|
|
text-color: @separatorcolor;
|
|
}
|
|
element {
|
|
border: 0;
|
|
padding: 18px 18px;
|
|
border-radius: 100%;
|
|
}
|
|
element-text {
|
|
padding: 0;
|
|
background-color: none;
|
|
text-color: inherit;
|
|
}
|
|
element.normal.normal {
|
|
text-color: @normal-foreground;
|
|
background-color: @normal-background;
|
|
}
|
|
element.normal.urgent {
|
|
text-color: @urgent-foreground;
|
|
background-color: @urgent-background;
|
|
}
|
|
element.normal.active {
|
|
text-color: @active-foreground;
|
|
background-color: @backgroundAdditional;
|
|
}
|
|
element.selected.normal {
|
|
text-color: @selected-normal-foreground;
|
|
background-color: @selected-normal-background;
|
|
}
|
|
element.selected.urgent {
|
|
text-color: @selected-urgent-foreground;
|
|
background-color: @selected-urgent-background;
|
|
}
|
|
element.selected.active {
|
|
text-color: @foreground;
|
|
background-color: @accent;
|
|
}
|
|
element.alternate.normal {
|
|
text-color: @alternate-normal-foreground;
|
|
background-color: @alternate-normal-background;
|
|
}
|
|
element.alternate.urgent {
|
|
text-color: @alternate-urgent-foreground;
|
|
background-color: @alternate-urgent-background;
|
|
}
|
|
element.alternate.active {
|
|
text-color: @alternate-active-foreground;
|
|
background-color: @alternate-active-background;
|
|
}
|
|
mode-switcher {
|
|
border: 0;
|
|
}
|
|
button selected {
|
|
text-color: @selected-normal-foreground;
|
|
background-color: @selected-normal-background;
|
|
}
|
|
button normal {
|
|
text-color: @foreground;
|
|
}
|
|
|
|
inputbar {
|
|
children: [textbox-prompt-colon,entry];
|
|
}
|
|
|
|
textbox-prompt-colon{
|
|
expand: false;
|
|
margin: 0 0 20px 0;
|
|
str: ":";
|
|
}
|
|
|
|
entry {
|
|
placeholder: "";
|
|
}
|