2017-01-19 12:58:07 -05:00
|
|
|
/**
|
2021-08-14 07:03:16 -04:00
|
|
|
* ROFI Color theme
|
|
|
|
* User: Qball
|
2017-01-19 12:58:07 -05:00
|
|
|
* Copyright: Dave Davenport
|
|
|
|
*/
|
2021-08-14 07:03:16 -04:00
|
|
|
|
2017-01-19 12:58:07 -05:00
|
|
|
* {
|
2017-09-09 08:50:23 -04:00
|
|
|
text-color: #ffeedd;
|
|
|
|
background-color: rgba(0,0,0,0);
|
2017-01-19 12:58:07 -05:00
|
|
|
dark: #1c1c1c;
|
|
|
|
// Black
|
|
|
|
black: #3d352a;
|
|
|
|
lightblack: #554444;
|
|
|
|
//
|
|
|
|
// Red
|
|
|
|
red: #cd5c5c;
|
|
|
|
lightred: #cc5533;
|
|
|
|
//
|
|
|
|
// Green
|
|
|
|
green: #86af80;
|
|
|
|
lightgreen: #88cc22;
|
|
|
|
//
|
|
|
|
// Yellow
|
|
|
|
yellow: #e8ae5b;
|
|
|
|
lightyellow: #ffa75d;
|
|
|
|
//
|
|
|
|
// Blue
|
|
|
|
blue: #6495ed;
|
|
|
|
lightblue: #87ceeb;
|
|
|
|
//
|
|
|
|
// Magenta
|
|
|
|
magenta: #deb887;
|
|
|
|
lightmagenta: #996600;
|
|
|
|
//
|
|
|
|
// Cyan
|
|
|
|
cyan: #b0c4de;
|
|
|
|
lightcyan: #b0c4de;
|
|
|
|
//
|
|
|
|
// White
|
|
|
|
white: #bbaa99;
|
|
|
|
lightwhite: #ddccbb;
|
|
|
|
//
|
|
|
|
// Bold, Italic, Underline
|
|
|
|
highlight: bold #ffffff;
|
|
|
|
}
|
2020-08-29 05:16:39 -04:00
|
|
|
window {
|
2019-01-29 15:46:40 -05:00
|
|
|
height: 100%;
|
|
|
|
width: 30em;
|
2017-01-19 12:58:07 -05:00
|
|
|
location: west;
|
|
|
|
anchor: west;
|
|
|
|
border: 0px 2px 0px 0px;
|
2017-09-09 08:50:23 -04:00
|
|
|
text-color: @lightwhite;
|
|
|
|
}
|
2020-08-29 05:16:39 -04:00
|
|
|
mode-switcher {
|
2017-01-19 12:58:07 -05:00
|
|
|
border: 2px 0px 0px 0px;
|
2017-09-09 08:50:23 -04:00
|
|
|
background-color: @lightblack;
|
2019-01-29 15:46:40 -05:00
|
|
|
padding: 4px;
|
2017-01-19 12:58:07 -05:00
|
|
|
}
|
2020-08-29 05:16:39 -04:00
|
|
|
button selected {
|
2017-09-09 08:50:23 -04:00
|
|
|
border-color: @lightgreen;
|
|
|
|
text-color: @lightgreen;
|
2017-01-19 12:58:07 -05:00
|
|
|
}
|
2020-08-29 05:16:39 -04:00
|
|
|
inputbar {
|
2017-09-09 08:50:23 -04:00
|
|
|
background-color: @lightblack;
|
|
|
|
text-color: @lightgreen;
|
|
|
|
padding: 4px;
|
2017-01-19 12:58:07 -05:00
|
|
|
border: 0px 0px 2px 0px;
|
|
|
|
}
|
2020-08-29 05:16:39 -04:00
|
|
|
mainbox {
|
2019-01-29 15:46:40 -05:00
|
|
|
expand: true;
|
2017-09-09 08:50:23 -04:00
|
|
|
background-color: #1c1c1cee;
|
2017-01-19 12:58:07 -05:00
|
|
|
spacing: 1em;
|
|
|
|
}
|
2020-08-29 05:16:39 -04:00
|
|
|
listview {
|
2017-01-19 12:58:07 -05:00
|
|
|
padding: 0em 0.4em 0em 1em;
|
|
|
|
dynamic: false;
|
|
|
|
lines: 0;
|
|
|
|
}
|
2021-08-14 07:58:21 -04:00
|
|
|
element-text {
|
|
|
|
background-color: inherit;
|
|
|
|
text-color: inherit;
|
|
|
|
}
|
2020-08-29 05:16:39 -04:00
|
|
|
element selected normal {
|
2017-09-09 08:50:23 -04:00
|
|
|
background-color: @blue;
|
2017-01-19 12:58:07 -05:00
|
|
|
}
|
2020-08-29 05:16:39 -04:00
|
|
|
element normal active {
|
2017-09-09 08:50:23 -04:00
|
|
|
text-color: @lightblue;
|
2017-01-19 12:58:07 -05:00
|
|
|
}
|
2020-08-29 05:16:39 -04:00
|
|
|
element normal urgent {
|
2017-09-09 08:50:23 -04:00
|
|
|
text-color: @lightred;
|
2017-01-19 12:58:07 -05:00
|
|
|
}
|
2020-08-29 05:16:39 -04:00
|
|
|
element alternate normal {
|
2017-01-19 12:58:07 -05:00
|
|
|
}
|
2020-08-29 05:16:39 -04:00
|
|
|
element alternate active {
|
2017-09-09 08:50:23 -04:00
|
|
|
text-color: @lightblue;
|
2017-01-19 12:58:07 -05:00
|
|
|
}
|
2020-08-29 05:16:39 -04:00
|
|
|
element alternate urgent {
|
2017-09-09 08:50:23 -04:00
|
|
|
text-color: @lightred;
|
2017-01-19 12:58:07 -05:00
|
|
|
}
|
2020-08-29 05:16:39 -04:00
|
|
|
element selected active {
|
2017-09-09 08:50:23 -04:00
|
|
|
background-color: @lightblue;
|
|
|
|
text-color: @dark;
|
2017-01-19 12:58:07 -05:00
|
|
|
}
|
2020-08-29 05:16:39 -04:00
|
|
|
element selected urgent {
|
2017-09-09 08:50:23 -04:00
|
|
|
background-color: @lightred;
|
|
|
|
text-color: @dark;
|
2017-01-19 12:58:07 -05:00
|
|
|
}
|
2020-08-29 05:14:23 -04:00
|
|
|
error-message {
|
|
|
|
expand: true;
|
|
|
|
background-color: red;
|
|
|
|
border-color: darkred;
|
|
|
|
border: 2px;
|
|
|
|
padding: 1em;
|
|
|
|
}
|