2023-06-27 14:41:00 +08:00
|
|
|
/*
|
|
|
|
* ROFI color theme
|
|
|
|
*
|
|
|
|
* Based on Something Found in the Internet
|
|
|
|
*
|
|
|
|
* User: Yutent
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
configuration {
|
|
|
|
modi: "window,combi,ssh,drun,run";
|
|
|
|
font: "Menlo 12";
|
|
|
|
lines: 10;
|
|
|
|
columns: 2;
|
|
|
|
dpi: 192;
|
|
|
|
drun-icon-theme: "Reversal-green-dark";
|
|
|
|
|
|
|
|
drun {
|
|
|
|
display-name: "";
|
|
|
|
}
|
|
|
|
|
|
|
|
run {
|
|
|
|
display-name: "";
|
|
|
|
}
|
|
|
|
|
|
|
|
window {
|
|
|
|
display-name: "";
|
|
|
|
}
|
|
|
|
|
|
|
|
windowcd {
|
|
|
|
display-name: "";
|
|
|
|
}
|
|
|
|
|
|
|
|
ssh {
|
|
|
|
display-name: "⚝";
|
|
|
|
}
|
|
|
|
|
2023-06-28 14:20:47 +08:00
|
|
|
window-format: "{t}";
|
2023-06-27 14:41:00 +08:00
|
|
|
|
|
|
|
timeout {
|
|
|
|
delay: 10;
|
|
|
|
action: "kb-cancel";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
* {
|
|
|
|
border: 0;
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
spacing: 0;
|
|
|
|
|
|
|
|
bg: #282a3680;
|
|
|
|
fg: #f8f8f2;
|
|
|
|
blue: #6272a4;
|
|
|
|
purple: #bd93f9;
|
|
|
|
|
|
|
|
background-color: @bg;
|
|
|
|
text-color: @fg;
|
|
|
|
}
|
|
|
|
|
|
|
|
window {
|
|
|
|
transparency: "real";
|
|
|
|
border-radius: 6px;
|
|
|
|
}
|
|
|
|
|
|
|
|
mainbox {
|
|
|
|
children: [inputbar, listview];
|
|
|
|
}
|
|
|
|
|
|
|
|
inputbar {
|
|
|
|
background-color: @blue;
|
|
|
|
children: [prompt, entry];
|
|
|
|
}
|
|
|
|
|
|
|
|
entry {
|
|
|
|
background-color: inherit;
|
|
|
|
padding: 16px 4px;
|
|
|
|
}
|
|
|
|
|
|
|
|
prompt {
|
|
|
|
background-color: inherit;
|
|
|
|
padding: 16px;
|
|
|
|
}
|
|
|
|
|
|
|
|
listview {
|
|
|
|
lines: 8;
|
|
|
|
}
|
|
|
|
|
|
|
|
element {
|
|
|
|
children: [element-icon, element-text];
|
|
|
|
text-color: @blue;
|
|
|
|
}
|
|
|
|
|
|
|
|
element-icon {
|
|
|
|
size: 2ch;
|
|
|
|
padding: 12px 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
element-text {
|
|
|
|
padding: 12px 0;
|
|
|
|
text-color: inherit;
|
|
|
|
}
|
|
|
|
|
|
|
|
element-text selected {
|
|
|
|
text-color: @purple;
|
2023-06-28 14:20:47 +08:00
|
|
|
}
|