2017-10-22 13:45:31 +02:00
|
|
|
/**
|
|
|
|
* ROFI Color theme
|
|
|
|
* User: mbfraga
|
|
|
|
* Copyright: Martin B. Fraga
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* global settings and color variables */
|
|
|
|
* {
|
2018-05-17 02:03:18 +02:00
|
|
|
maincolor: #ed8712;
|
|
|
|
highlight: bold #ed8712;
|
|
|
|
urgentcolor: #e53714;
|
|
|
|
fgwhite: #cfcfcf;
|
|
|
|
blackdarkest: #1d1d1d;
|
|
|
|
blackwidget: #262626;
|
|
|
|
blackentry: #292929;
|
|
|
|
blackselect: #303030;
|
|
|
|
darkgray: #848484;
|
|
|
|
scrollbarcolor: #505050;
|
|
|
|
font: "DejaVu Sans Mono Regular 14";
|
|
|
|
background-color: @blackdarkest;
|
2017-10-22 13:45:31 +02:00
|
|
|
}
|
2018-02-14 09:09:55 +01:00
|
|
|
window {
|
2018-05-17 02:03:18 +02:00
|
|
|
background-color: @blackdarkest;
|
|
|
|
anchor: north;
|
|
|
|
location: north;
|
|
|
|
y-offset: 20%;
|
2017-10-22 13:45:31 +02:00
|
|
|
}
|
2018-02-14 09:09:55 +01:00
|
|
|
mainbox {
|
2018-05-17 02:03:18 +02:00
|
|
|
background-color: @blackdarkest;
|
|
|
|
spacing: 0;
|
|
|
|
children: [inputbar, message, sidebar, listview];
|
2017-10-22 13:45:31 +02:00
|
|
|
}
|
2018-02-14 09:09:55 +01:00
|
|
|
message {
|
2018-05-17 02:03:18 +02:00
|
|
|
padding: 6px 10px;
|
|
|
|
background-color: @blackwidget;
|
2017-10-22 13:45:31 +02:00
|
|
|
}
|
2018-02-14 09:09:55 +01:00
|
|
|
textbox {
|
2018-05-17 02:03:18 +02:00
|
|
|
text-color: @darkgray;
|
|
|
|
background-color: @blackwidget;
|
2017-10-22 13:45:31 +02:00
|
|
|
}
|
2018-02-14 09:09:55 +01:00
|
|
|
listview {
|
2018-05-17 02:03:18 +02:00
|
|
|
fixed-height: false;
|
|
|
|
dynamic: true;
|
|
|
|
scrollbar: true;
|
|
|
|
spacing: 0px;
|
|
|
|
padding: 1px 0px 0px 0px;
|
|
|
|
margin: 0px 0px 1px 0px;
|
|
|
|
background: @blackdarkest;
|
2017-10-22 13:45:31 +02:00
|
|
|
}
|
2018-02-14 09:09:55 +01:00
|
|
|
element {
|
2018-05-17 02:03:18 +02:00
|
|
|
padding: 2px 15px;
|
2017-10-22 13:45:31 +02:00
|
|
|
}
|
2018-02-14 09:09:55 +01:00
|
|
|
element normal.normal {
|
2018-05-17 02:03:18 +02:00
|
|
|
padding: 0px 15px;
|
|
|
|
background-color: @blackentry;
|
|
|
|
text-color: @fgwhite;
|
2017-10-22 13:45:31 +02:00
|
|
|
}
|
2018-02-14 09:09:55 +01:00
|
|
|
element normal.urgent {
|
2018-05-17 02:03:18 +02:00
|
|
|
background-color: @blackentry;
|
|
|
|
text-color: @urgentcolor;
|
2017-10-22 13:45:31 +02:00
|
|
|
}
|
2018-02-14 09:09:55 +01:00
|
|
|
element normal.active {
|
2018-05-17 02:03:18 +02:00
|
|
|
background-color: @blackentry;
|
|
|
|
text-color: @maincolor;
|
2017-10-22 13:45:31 +02:00
|
|
|
}
|
2018-02-14 09:09:55 +01:00
|
|
|
element selected.normal {
|
2017-10-22 13:45:31 +02:00
|
|
|
background-color: @blackselect;
|
|
|
|
text-color: @fgwhite;
|
|
|
|
}
|
2018-02-14 09:09:55 +01:00
|
|
|
element selected.urgent {
|
2017-10-22 13:45:31 +02:00
|
|
|
background-color: @urgentcolor;
|
|
|
|
text-color: @blackdarkest;
|
|
|
|
}
|
2018-02-14 09:09:55 +01:00
|
|
|
element selected.active {
|
2017-10-22 13:45:31 +02:00
|
|
|
background-color: @maincolor;
|
|
|
|
text-color: @blackdarkest;
|
|
|
|
}
|
2018-02-14 09:09:55 +01:00
|
|
|
element alternate.normal {
|
2017-10-22 13:45:31 +02:00
|
|
|
background-color: @blackentry;
|
|
|
|
text-color: @fgwhite;
|
|
|
|
}
|
2018-02-14 09:09:55 +01:00
|
|
|
element alternate.urgent {
|
2017-10-22 13:45:31 +02:00
|
|
|
background-color: @blackentry;
|
|
|
|
text-color: @urgentcolor;
|
|
|
|
}
|
2018-02-14 09:09:55 +01:00
|
|
|
element alternate.active {
|
2017-10-22 13:45:31 +02:00
|
|
|
background-color: @blackentry;
|
|
|
|
text-color: @maincolor;
|
|
|
|
}
|
2018-02-14 09:09:55 +01:00
|
|
|
scrollbar {
|
2018-05-17 02:03:18 +02:00
|
|
|
background-color: @blackwidget;
|
|
|
|
handle-color: @darkgray;
|
|
|
|
handle-width: 15px;
|
2017-10-22 13:45:31 +02:00
|
|
|
}
|
2018-02-14 09:09:55 +01:00
|
|
|
sidebar {
|
2018-05-17 02:03:18 +02:00
|
|
|
background-color: @blackwidget;
|
2017-10-22 13:45:31 +02:00
|
|
|
}
|
2018-02-14 09:09:55 +01:00
|
|
|
button {
|
2018-05-17 02:03:18 +02:00
|
|
|
background-color: @blackwidget;
|
|
|
|
text-color: @darkgray;
|
2017-10-22 13:45:31 +02:00
|
|
|
}
|
2018-02-14 09:09:55 +01:00
|
|
|
button selected {
|
2018-05-17 02:03:18 +02:00
|
|
|
text-color: @maincolor;
|
2017-10-22 13:45:31 +02:00
|
|
|
}
|
2018-02-14 09:09:55 +01:00
|
|
|
inputbar {
|
2018-05-17 02:03:18 +02:00
|
|
|
background-color: @blackdarkest;
|
|
|
|
spacing: 0;
|
2017-10-22 13:45:31 +02:00
|
|
|
}
|
2018-02-14 09:09:55 +01:00
|
|
|
prompt {
|
2018-05-17 02:03:18 +02:00
|
|
|
padding:6px 9px;
|
|
|
|
background-color: @maincolor;
|
|
|
|
text-color: @blackwidget;
|
2017-10-22 13:45:31 +02:00
|
|
|
}
|
2018-02-14 09:09:55 +01:00
|
|
|
entry {
|
2018-05-17 02:03:18 +02:00
|
|
|
padding:6px 10px;
|
|
|
|
background-color: @blackwidget;
|
|
|
|
text-color: @fgwhite;
|
2017-10-22 13:45:31 +02:00
|
|
|
}
|
2018-02-14 09:09:55 +01:00
|
|
|
case-indicator {
|
2018-05-17 02:03:18 +02:00
|
|
|
padding: 6px 10px;
|
|
|
|
text-color: @maincolor;
|
|
|
|
background-color: @blackwidget;
|
2017-10-22 13:45:31 +02:00
|
|
|
}
|