140 lines
2.3 KiB
CSS
140 lines
2.3 KiB
CSS
|
|
* {
|
|
maincolor: #282a38;
|
|
highlight: bold #e2a478;
|
|
urgentcolor: #dfdfdf;
|
|
|
|
foreground: #dfdfdf;
|
|
background: #0e0f14;
|
|
blackselect: #22262e;
|
|
background-color: @background;
|
|
show-icons: true;
|
|
}
|
|
|
|
window {
|
|
background-color: @background;
|
|
border: 0;
|
|
border-color: @maincolor;
|
|
padding: 0;
|
|
}
|
|
|
|
mainbox {
|
|
background-color: @background;
|
|
spacing: 0px;
|
|
children: [inputbar, message, listview];
|
|
}
|
|
|
|
message {
|
|
padding: 6px 10px;
|
|
background-color:@background;
|
|
}
|
|
|
|
textbox {
|
|
text-color:@urgentcolor;
|
|
padding: 10px 10px;
|
|
background-color:@background;
|
|
}
|
|
|
|
listview {
|
|
columns: 1;
|
|
fixed-height: true;
|
|
scrollbar: false;
|
|
spacing: 0px;
|
|
padding: 1px 0px 0px 0px;
|
|
margin: 0px 0px 1px 0px;
|
|
background: #0a0200;
|
|
}
|
|
|
|
element {
|
|
padding: 2px 15px;
|
|
}
|
|
|
|
element normal.normal {
|
|
padding: 0px 15px;
|
|
background-color: @background;
|
|
text-color: @urgentcolor;
|
|
}
|
|
|
|
element normal.urgent {
|
|
background-color: @background;
|
|
text-color: @urgentcolor;
|
|
}
|
|
|
|
element normal.active {
|
|
background-color: @background;
|
|
text-color: @maincolor;
|
|
}
|
|
|
|
element selected.normal {
|
|
background-color: @blackselect;
|
|
text-color: @foreground;
|
|
}
|
|
|
|
element selected.urgent {
|
|
background-color: @urgentcolor;
|
|
text-color: @background;
|
|
}
|
|
|
|
element selected.active {
|
|
background-color: @maincolor;
|
|
text-color: @background;
|
|
}
|
|
|
|
element alternate.normal {
|
|
background-color: @background;
|
|
text-color: @foreground;
|
|
}
|
|
|
|
element alternate.urgent {
|
|
background-color: @background;
|
|
text-color: @urgentcolor;
|
|
}
|
|
|
|
element alternate.active {
|
|
background-color: @background;
|
|
text-color: @maincolor;
|
|
}
|
|
|
|
scrollbar {
|
|
background-color: @background;
|
|
handle-color: @cyan;
|
|
handle-width: 15px;
|
|
}
|
|
|
|
mode-switcher {
|
|
background-color: @background;
|
|
}
|
|
|
|
button {
|
|
background-color: @background;
|
|
text-color: @cyan;
|
|
}
|
|
|
|
button selected {
|
|
text-color: @maincolor;
|
|
}
|
|
|
|
inputbar {
|
|
background-color: @background;
|
|
spacing: 0px;
|
|
}
|
|
|
|
prompt {
|
|
padding: 6px 9px;
|
|
background-color: @maincolor;
|
|
text-color:#dfdfdf;
|
|
}
|
|
|
|
entry {
|
|
padding:6px 10px;
|
|
background-color:@background;
|
|
text-color:@urgentcolor;
|
|
}
|
|
|
|
case-indicator {
|
|
padding:6px 10px;
|
|
text-color:@maincolor;
|
|
background-color:@background;
|
|
}
|
|
/* vim:ft=css
|