2017-10-01 06:55:42 -04:00
|
|
|
/**
|
|
|
|
* ROFI Color theme
|
|
|
|
* User: Qball
|
|
|
|
* Copyright: Dave Davenport
|
|
|
|
*/
|
2017-09-09 08:50:23 -04:00
|
|
|
|
2017-01-19 03:26:16 -05:00
|
|
|
* {
|
|
|
|
foreground: #ffeedd;
|
2017-09-09 08:50:23 -04:00
|
|
|
backlight: #ccffeedd;
|
2017-09-18 11:53:35 -04:00
|
|
|
background-color: transparent;
|
2017-01-19 03:26:16 -05:00
|
|
|
dark: #1c1c1c;
|
|
|
|
// Black
|
|
|
|
black: #3d352a;
|
|
|
|
lightblack: #554444;
|
2017-09-09 08:50:23 -04:00
|
|
|
tlightblack: #554444cc;
|
2017-01-19 03:26:16 -05:00
|
|
|
//
|
|
|
|
// 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;
|
2017-09-09 08:50:23 -04:00
|
|
|
tcyan: #ccb0c4de;
|
2017-01-19 03:26:16 -05:00
|
|
|
lightcyan: #b0c4de;
|
|
|
|
//
|
|
|
|
// White
|
|
|
|
white: #bbaa99;
|
|
|
|
lightwhite: #ddccbb;
|
|
|
|
//
|
|
|
|
// Bold, Italic, Underline
|
2017-09-09 08:50:23 -04:00
|
|
|
highlight: underline bold #ffffff;
|
|
|
|
|
|
|
|
transparent: rgba(0,0,0,0);
|
2018-02-25 09:18:37 -05:00
|
|
|
font: "Source Code Pro 10";
|
2017-01-19 03:26:16 -05:00
|
|
|
}
|
2020-08-29 05:16:39 -04:00
|
|
|
window {
|
2017-01-19 03:26:16 -05:00
|
|
|
location: center;
|
2017-01-21 06:13:01 -05:00
|
|
|
anchor: center;
|
2017-09-09 08:50:23 -04:00
|
|
|
transparency: "screenshot";
|
2017-01-19 03:26:16 -05:00
|
|
|
padding: 10px;
|
2017-09-09 08:50:23 -04:00
|
|
|
border: 0px;
|
|
|
|
border-radius: 10px;
|
|
|
|
color: @magenta;
|
|
|
|
background-color: @transparent;
|
|
|
|
spacing: 0;
|
2019-03-05 04:09:48 -05:00
|
|
|
children: [mainbox];
|
2017-09-09 08:50:23 -04:00
|
|
|
orientation: horizontal;
|
2017-01-19 03:26:16 -05:00
|
|
|
}
|
2020-08-29 05:16:39 -04:00
|
|
|
mainbox {
|
2017-09-09 08:50:23 -04:00
|
|
|
spacing: 0;
|
2017-09-18 11:37:48 -04:00
|
|
|
children: [ inputbar, message, listview ];
|
2017-01-19 03:26:16 -05:00
|
|
|
}
|
2020-08-29 05:16:39 -04:00
|
|
|
message {
|
2017-09-09 08:50:23 -04:00
|
|
|
border-color: @foreground;
|
|
|
|
border: 0px 2px 2px 2px;
|
|
|
|
// border-radius: 10px;
|
|
|
|
padding: 5;
|
|
|
|
background-color: @tcyan;
|
2017-01-19 03:26:16 -05:00
|
|
|
}
|
2020-08-29 05:16:39 -04:00
|
|
|
message {
|
2018-02-25 09:18:37 -05:00
|
|
|
font: "Source Code Pro 8";
|
2017-09-09 08:50:23 -04:00
|
|
|
color: @black;
|
2017-01-19 03:26:16 -05:00
|
|
|
}
|
2020-08-29 05:16:39 -04:00
|
|
|
inputbar {
|
2017-09-09 08:50:23 -04:00
|
|
|
color: @lightgreen;
|
2017-09-09 09:10:41 -04:00
|
|
|
padding: 11px;
|
2017-09-09 08:50:23 -04:00
|
|
|
background-color: @tlightblack;
|
|
|
|
border: 2px 2px 2px 2px;
|
|
|
|
border-radius: 15px 15px 0px 0px;
|
|
|
|
border-color: @foreground;
|
2018-02-25 09:18:37 -05:00
|
|
|
font: "Source Code Pro 18";
|
2017-09-09 08:50:23 -04:00
|
|
|
}
|
2020-08-29 05:16:39 -04:00
|
|
|
entry,prompt,case-indicator {
|
2017-09-18 11:53:35 -04:00
|
|
|
text-font: inherit;
|
2017-09-09 09:10:41 -04:00
|
|
|
text-color:inherit;
|
2017-09-09 08:50:23 -04:00
|
|
|
}
|
2020-08-29 05:16:39 -04:00
|
|
|
prompt {
|
2018-02-25 09:18:37 -05:00
|
|
|
margin: 0px 0.3em 0em 0em ;
|
|
|
|
}
|
2020-08-29 05:16:39 -04:00
|
|
|
listview {
|
2017-09-09 08:50:23 -04:00
|
|
|
padding: 8px;
|
|
|
|
border-radius: 0px 0px 15px 15px;
|
|
|
|
border-color: @foreground;
|
|
|
|
border: 0px 2px 2px 2px;
|
|
|
|
background-color: #1c1c1ccc;
|
2017-01-19 03:26:16 -05:00
|
|
|
dynamic: false;
|
2017-09-09 08:50:23 -04:00
|
|
|
lines: 10;
|
|
|
|
}
|
2020-08-29 05:16:39 -04:00
|
|
|
element {
|
2017-09-18 11:53:35 -04:00
|
|
|
padding: 3px;
|
2017-09-09 08:50:23 -04:00
|
|
|
vertical-align: 0.5;
|
|
|
|
// border: 2px;
|
|
|
|
border-radius: 4px;
|
2017-09-18 11:53:35 -04:00
|
|
|
background-color: transparent;
|
2017-09-09 08:50:23 -04:00
|
|
|
color: @foreground;
|
|
|
|
font:inherit;
|
2017-01-19 03:26:16 -05:00
|
|
|
}
|
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 03:26:16 -05:00
|
|
|
}
|
2020-08-29 05:16:39 -04:00
|
|
|
element normal active {
|
2017-01-19 03:26:16 -05:00
|
|
|
foreground: @lightblue;
|
|
|
|
}
|
2020-08-29 05:16:39 -04:00
|
|
|
element normal urgent {
|
2017-01-19 03:26:16 -05:00
|
|
|
foreground: @lightred;
|
|
|
|
}
|
2020-08-29 05:16:39 -04:00
|
|
|
element alternate normal {
|
2017-01-19 03:26:16 -05:00
|
|
|
}
|
2020-08-29 05:16:39 -04:00
|
|
|
element alternate active {
|
2017-01-19 03:26:16 -05:00
|
|
|
foreground: @lightblue;
|
|
|
|
}
|
2020-08-29 05:16:39 -04:00
|
|
|
element alternate urgent {
|
2017-01-19 03:26:16 -05:00
|
|
|
foreground: @lightred;
|
|
|
|
}
|
2020-08-29 05:16:39 -04:00
|
|
|
element selected active {
|
2017-09-09 08:50:23 -04:00
|
|
|
background-color: @lightblue;
|
2017-01-19 03:26:16 -05:00
|
|
|
foreground: @dark;
|
|
|
|
}
|
2020-08-29 05:16:39 -04:00
|
|
|
element selected urgent {
|
2017-09-09 08:50:23 -04:00
|
|
|
background-color: @lightred;
|
2017-01-19 03:26:16 -05:00
|
|
|
foreground: @dark;
|
|
|
|
}
|
2020-08-29 05:16:39 -04:00
|
|
|
element normal normal {
|
2017-09-09 08:50:23 -04:00
|
|
|
|
|
|
|
}
|
2020-08-29 05:16:39 -04:00
|
|
|
vertb {
|
2017-09-09 08:50:23 -04:00
|
|
|
expand: false;
|
2019-03-19 17:45:10 -04:00
|
|
|
children: [ dummy0, mode-switcher, dummy1 ];
|
2017-01-19 03:26:16 -05:00
|
|
|
}
|
2020-08-29 05:16:39 -04:00
|
|
|
dummy0, dummy1 {
|
2017-09-09 08:50:23 -04:00
|
|
|
expand: true;
|
|
|
|
}
|
2020-08-29 05:16:39 -04:00
|
|
|
mode-switcher {
|
2017-09-09 08:50:23 -04:00
|
|
|
expand: false;
|
|
|
|
orientation: vertical;
|
|
|
|
spacing: 0px;
|
|
|
|
border: 0px 0px 0px 0px;
|
|
|
|
}
|
2020-08-29 05:16:39 -04:00
|
|
|
button {
|
2017-09-09 08:50:23 -04:00
|
|
|
font: "FontAwesome 22";
|
|
|
|
padding: 6px;
|
|
|
|
border: 2px 0px 2px 2px;
|
|
|
|
border-radius: 4px 0px 0px 4px;
|
|
|
|
background-color: @tlightblack;
|
|
|
|
border-color: @foreground;
|
|
|
|
color: @foreground;
|
2017-09-11 03:19:03 -04:00
|
|
|
horizontal-align: 0.5;
|
2017-09-09 08:50:23 -04:00
|
|
|
}
|
2020-08-29 05:16:39 -04:00
|
|
|
button selected normal {
|
2017-09-09 08:50:23 -04:00
|
|
|
color: @dark;
|
|
|
|
border: 2px 0px 2px 2px;
|
|
|
|
background-color: @backlight;
|
|
|
|
border-color: @foreground;
|
|
|
|
}
|
2020-08-29 05:14:23 -04:00
|
|
|
error-message {
|
|
|
|
expand: true;
|
|
|
|
background-color: red;
|
|
|
|
border-color: darkred;
|
|
|
|
border: 2px;
|
|
|
|
padding: 1em;
|
|
|
|
}
|