2022-07-11 17:38:28 +02:00
|
|
|
/**
|
|
|
|
* ROFI Color theme
|
|
|
|
* User: Qball
|
|
|
|
* Copyright: Dave Davenport
|
|
|
|
*/
|
|
|
|
|
|
|
|
* {
|
|
|
|
text-color: #f8f8f2;
|
|
|
|
background-color: #282a3630;
|
|
|
|
dark: #282a36;
|
|
|
|
// Black
|
|
|
|
black: #282a36;
|
|
|
|
lightblack: #44475a;
|
|
|
|
//
|
|
|
|
// Red
|
|
|
|
red: #ff5555;
|
|
|
|
lightred: #ff6e6e;
|
|
|
|
//
|
|
|
|
// Green
|
|
|
|
green: #50fa7b;
|
|
|
|
lightgreen: #69ff94;
|
|
|
|
//
|
|
|
|
// Yellow
|
|
|
|
yellow: #f1fa8c;
|
|
|
|
lightyellow: #ffffa5;
|
|
|
|
//
|
|
|
|
// Blue
|
|
|
|
blue: #bd93f9;
|
|
|
|
lightblue: #d6acff;
|
|
|
|
//
|
|
|
|
// Magenta
|
|
|
|
magenta: #ff79c6;
|
|
|
|
lightmagenta: #ff92df;
|
|
|
|
//
|
|
|
|
// Cyan
|
|
|
|
cyan: #8be9fd;
|
|
|
|
lightcyan: #a4ffff;
|
|
|
|
//
|
|
|
|
// White
|
|
|
|
white: #f8f8f2;
|
|
|
|
lightwhite: #ffffff;
|
|
|
|
//
|
|
|
|
// Bold, Italic, Underline
|
|
|
|
highlight: bold #ffffff;
|
|
|
|
}
|
|
|
|
window {
|
|
|
|
height: 100%;
|
|
|
|
width: 30em;
|
|
|
|
location: west;
|
|
|
|
anchor: west;
|
|
|
|
border: 0px 2px 0px 0px;
|
|
|
|
text-color: @lightwhite;
|
|
|
|
}
|
|
|
|
mode-switcher {
|
|
|
|
border: 2px 0px 0px 0px;
|
|
|
|
background-color: @lightblack;
|
|
|
|
padding: 4px;
|
|
|
|
}
|
|
|
|
button selected {
|
|
|
|
border-color: @lightgreen;
|
|
|
|
text-color: @lightgreen;
|
|
|
|
}
|
|
|
|
inputbar {
|
|
|
|
background-color: @lightblack;
|
|
|
|
text-color: @lightgreen;
|
|
|
|
padding: 4px;
|
|
|
|
border: 0px 0px 2px 0px;
|
|
|
|
}
|
|
|
|
mainbox {
|
|
|
|
expand: true;
|
|
|
|
background-color: #1c1c1cee;
|
|
|
|
spacing: 1em;
|
|
|
|
}
|
|
|
|
listview {
|
|
|
|
padding: 0em 0.4em 0em 1em;
|
|
|
|
dynamic: false;
|
|
|
|
lines: 0;
|
|
|
|
}
|
|
|
|
element-text {
|
|
|
|
background-color: inherit;
|
2022-07-11 17:48:03 +02:00
|
|
|
text-color: inherit;
|
|
|
|
vertical-align: 0.5;
|
2023-01-20 22:30:45 +01:00
|
|
|
font: "<% opt.font %> 24px";
|
2022-07-11 17:38:28 +02:00
|
|
|
}
|
|
|
|
element selected normal {
|
|
|
|
background-color: @blue;
|
|
|
|
}
|
|
|
|
element normal active {
|
|
|
|
text-color: @lightblue;
|
|
|
|
}
|
|
|
|
element normal urgent {
|
|
|
|
text-color: @lightred;
|
|
|
|
}
|
|
|
|
element alternate normal {
|
|
|
|
}
|
|
|
|
element alternate active {
|
|
|
|
text-color: @lightblue;
|
|
|
|
}
|
|
|
|
element alternate urgent {
|
|
|
|
text-color: @lightred;
|
|
|
|
}
|
2022-07-11 17:48:03 +02:00
|
|
|
element-icon {
|
|
|
|
size: 50;
|
|
|
|
}
|
2022-07-11 17:38:28 +02:00
|
|
|
element selected active {
|
|
|
|
background-color: @lightblue;
|
|
|
|
text-color: @dark;
|
|
|
|
}
|
|
|
|
element selected urgent {
|
|
|
|
background-color: @lightred;
|
|
|
|
text-color: @dark;
|
|
|
|
}
|
|
|
|
error-message {
|
|
|
|
expand: true;
|
|
|
|
background-color: red;
|
|
|
|
border-color: darkred;
|
|
|
|
border: 2px;
|
|
|
|
padding: 1em;
|
|
|
|
}
|