144 lines
2.7 KiB
Plaintext
Executable File
144 lines
2.7 KiB
Plaintext
Executable File
@import "colors.rasi"
|
|
|
|
* {
|
|
background-color: @bg;
|
|
text-color: @fg;
|
|
}
|
|
|
|
window {
|
|
border: 0px;
|
|
border-color: @ac;
|
|
border-radius: 4px;
|
|
padding: 15;
|
|
width: 25%;
|
|
}
|
|
|
|
prompt {
|
|
spacing: 0;
|
|
border: 0;
|
|
text-color: @fg;
|
|
}
|
|
|
|
textbox-prompt-colon {
|
|
expand: false;
|
|
str: " ";
|
|
margin: 0px 4px 0px 0px;
|
|
text-color: @fg;
|
|
}
|
|
|
|
entry {
|
|
spacing: 0;
|
|
text-color: @fg;
|
|
}
|
|
|
|
case-indicator {
|
|
spacing: 0;
|
|
text-color: @fg;
|
|
}
|
|
|
|
inputbar {
|
|
spacing: 0px;
|
|
text-color: @fg;
|
|
padding: 1px;
|
|
children: [ prompt,textbox-prompt-colon,entry,overlay,case-indicator ];
|
|
}
|
|
|
|
mainbox {
|
|
border: 0px;
|
|
border-color: @ac;
|
|
padding: 6;
|
|
}
|
|
|
|
listview {
|
|
fixed-height: 0;
|
|
border: 0px;
|
|
border-color: @ac;
|
|
spacing: 4px;
|
|
scrollbar: false;
|
|
padding: 5px 5px 0px 5px;
|
|
}
|
|
|
|
element {
|
|
border: 0px;
|
|
border-radius: 2px;
|
|
padding: 1.8px;
|
|
}
|
|
element normal.normal {
|
|
background-color: @bg;
|
|
text-color: @fg;
|
|
}
|
|
element normal.urgent {
|
|
background-color: @bg;
|
|
text-color: @red;
|
|
}
|
|
element normal.active {
|
|
background-color: @green;
|
|
text-color: @bg;
|
|
}
|
|
element selected.normal {
|
|
background-color: @fg;
|
|
text-color: @bg;
|
|
}
|
|
element selected.urgent {
|
|
background-color: @bg;
|
|
text-color: @red;
|
|
}
|
|
element selected.active {
|
|
background-color: @fg;
|
|
text-color: @bg;
|
|
}
|
|
element alternate.normal {
|
|
background-color: @bg;
|
|
text-color: @fg;
|
|
}
|
|
element alternate.urgent {
|
|
background-color: @bg;
|
|
text-color: @fg;
|
|
}
|
|
element alternate.active {
|
|
background-color: @bg;
|
|
text-color: @fg;
|
|
}
|
|
|
|
sidebar {
|
|
border: 0px;
|
|
border-color: @ac;
|
|
border-radius: 0px;
|
|
}
|
|
|
|
button {
|
|
background-color: @fg;
|
|
margin: 5px;
|
|
padding: 5px;
|
|
text-color: @bg;
|
|
border: 0px;
|
|
border-radius: 4px;
|
|
border-color: @fg;
|
|
}
|
|
|
|
button selected {
|
|
background-color: @red;
|
|
text-color: @fg;
|
|
border: 0px;
|
|
border-radius: 4px;
|
|
border-color: @fg;
|
|
}
|
|
|
|
scrollbar {
|
|
width: 4px;
|
|
border: 0px;
|
|
handle-color: @fg;
|
|
handle-width: 8px;
|
|
padding: 0;
|
|
}
|
|
|
|
message {
|
|
border: 0px;
|
|
border-color: @ac;
|
|
padding: 1px;
|
|
}
|
|
|
|
textbox {
|
|
text-color: @red;
|
|
}
|