2022-01-06 19:29:30 -08:00
|
|
|
/*
|
|
|
|
* ROFI One Dark
|
|
|
|
*
|
|
|
|
* Based on OneDark.vim (https://github.com/joshdick/onedark.vim)
|
|
|
|
*
|
|
|
|
* Author: Benjamin Stauss
|
|
|
|
* Modified: Kyle Yasuda
|
|
|
|
* User: me-benni, kyle
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
* {
|
|
|
|
black: #000000;
|
|
|
|
red: #eb6e67;
|
|
|
|
green: #95ee8f;
|
|
|
|
yellow: #f8c456;
|
|
|
|
blue: #6eaafb;
|
|
|
|
magenta: #d886f3;
|
|
|
|
cyan: #6cdcf7;
|
|
|
|
emphasis: #50536b;
|
|
|
|
text: #dfdfdf;
|
|
|
|
text-alt: #b2b2b2;
|
|
|
|
fg: #abb2bf;
|
|
|
|
bg: #282c34;
|
|
|
|
|
|
|
|
spacing: 0;
|
|
|
|
background-color: transparent;
|
|
|
|
|
2022-01-22 13:12:38 -08:00
|
|
|
font: "Open Sans 12";
|
2022-01-06 19:29:30 -08:00
|
|
|
text-color: @text;
|
|
|
|
}
|
|
|
|
|
|
|
|
window {
|
|
|
|
transparency: "real";
|
|
|
|
fullscreen: false;
|
|
|
|
background-color: #282c34dd;
|
2022-01-22 13:12:38 -08:00
|
|
|
width: 80%;
|
|
|
|
border-radius: 12px;
|
|
|
|
anchor: center;
|
|
|
|
location: center;
|
2022-01-06 19:29:30 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
mainbox {
|
2022-01-22 13:12:38 -08:00
|
|
|
padding: 4%;
|
2022-01-06 19:29:30 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
inputbar {
|
|
|
|
margin: 0px 0px 20px 0px;
|
|
|
|
children: [prompt, textbox-prompt-colon, entry, case-indicator];
|
|
|
|
}
|
|
|
|
|
|
|
|
prompt {
|
|
|
|
text-color: @blue;
|
|
|
|
}
|
|
|
|
|
|
|
|
textbox-prompt-colon {
|
|
|
|
expand: false;
|
|
|
|
str: ":";
|
|
|
|
text-color: @text-alt;
|
|
|
|
}
|
|
|
|
|
|
|
|
entry {
|
|
|
|
margin: 0px 10px;
|
|
|
|
/* search bar text */
|
|
|
|
text-color: @magenta;
|
|
|
|
}
|
|
|
|
|
|
|
|
listview {
|
|
|
|
spacing: 5px;
|
|
|
|
dynamic: true;
|
|
|
|
scrollbar: false;
|
|
|
|
columns: 2;
|
|
|
|
}
|
|
|
|
|
|
|
|
element {
|
|
|
|
padding: 5px;
|
|
|
|
text-color: @text-alt;
|
|
|
|
highlight: bold #95ee8f; /* green */
|
|
|
|
border-radius: 6px;
|
|
|
|
}
|
|
|
|
|
|
|
|
element selected {
|
|
|
|
background-color: @emphasis;
|
|
|
|
text-color: @text;
|
|
|
|
}
|
|
|
|
|
|
|
|
element urgent, element selected urgent {
|
|
|
|
text-color: @red;
|
|
|
|
}
|
|
|
|
|
|
|
|
element active, element selected active {
|
|
|
|
text-color: @black;
|
|
|
|
}
|
|
|
|
|
|
|
|
message {
|
|
|
|
padding: 5px;
|
|
|
|
border-radius: 3px;
|
|
|
|
background-color: @emphasis;
|
|
|
|
border: 1px;
|
|
|
|
border-color: @cyan;
|
|
|
|
}
|
|
|
|
|
|
|
|
button selected {
|
|
|
|
padding: 5px;
|
|
|
|
border-radius: 3px;
|
|
|
|
background-color: @emphasis;
|
|
|
|
}
|