78 lines
1.1 KiB
Plaintext
78 lines
1.1 KiB
Plaintext
|
/**
|
||
|
* Nordic rofi theme
|
||
|
* Adapted by undiabler <undiabler@gmail.com>
|
||
|
*
|
||
|
* Nord Color palette imported from https://www.nordtheme.com/
|
||
|
*
|
||
|
*/
|
||
|
* {
|
||
|
border: 0;
|
||
|
margin: 0;
|
||
|
padding: 0;
|
||
|
spacing: 0;
|
||
|
|
||
|
bg: #2E3440;
|
||
|
bg-alt: #3B4252;
|
||
|
fg: #81A1C1;
|
||
|
fg-alt: #EBCB8B;
|
||
|
|
||
|
background-color: @bg;
|
||
|
text-color: @fg;
|
||
|
transparent: rgba(46,52,64,0);
|
||
|
}
|
||
|
|
||
|
|
||
|
window {
|
||
|
location: center;
|
||
|
anchor: center;
|
||
|
transparency: "screenshot";
|
||
|
/* padding: 10px; */
|
||
|
border: 0px;
|
||
|
/* border-radius: 6px; */
|
||
|
width: 700px;
|
||
|
|
||
|
background-color: @transparent;
|
||
|
spacing: 0;
|
||
|
children: [mainbox];
|
||
|
orientation: horizontal;
|
||
|
}
|
||
|
|
||
|
mainbox {
|
||
|
children: [inputbar, listview];
|
||
|
}
|
||
|
|
||
|
inputbar {
|
||
|
background-color: @bg-alt;
|
||
|
children: [prompt, entry];
|
||
|
}
|
||
|
|
||
|
entry {
|
||
|
background-color: inherit;
|
||
|
padding: 12px 3px;
|
||
|
}
|
||
|
|
||
|
prompt {
|
||
|
background-color: inherit;
|
||
|
padding: 12px;
|
||
|
}
|
||
|
|
||
|
listview {
|
||
|
lines: 8;
|
||
|
}
|
||
|
|
||
|
element {
|
||
|
children: [element-icon, element-text];
|
||
|
}
|
||
|
|
||
|
element-icon {
|
||
|
padding: 10px 10px;
|
||
|
}
|
||
|
|
||
|
element-text {
|
||
|
padding: 10px 0;
|
||
|
}
|
||
|
|
||
|
element-text selected {
|
||
|
text-color: @fg-alt;
|
||
|
}
|