mirror of
https://github.com/zebrajr/dotfiles.git
synced 2025-12-06 00:20:05 +01:00
80 lines
1.1 KiB
Sass
80 lines
1.1 KiB
Sass
* {
|
|
bg: #000000FF;
|
|
bg-alt: #292f45;
|
|
bg-selected: #c50ed2;
|
|
|
|
fg: #FFFFFF;
|
|
fg-alt: #7f849c;
|
|
|
|
border: 0;
|
|
margin: 0;
|
|
padding: 0;
|
|
spacing: 0;
|
|
}
|
|
|
|
window {
|
|
width: 20%;
|
|
background-color: @bg;
|
|
border-radius: 18px;
|
|
border: 2px solid;
|
|
border-color: @fg-alt;
|
|
}
|
|
|
|
element {
|
|
padding: 8 12;
|
|
background-color: transparent;
|
|
text-color: @fg-alt;
|
|
}
|
|
|
|
element selected {
|
|
text-color: @fg;
|
|
background-color: @bg-selected;
|
|
}
|
|
|
|
element-text {
|
|
background-color: transparent;
|
|
text-color: inherit;
|
|
vertical-align: 0.5;
|
|
}
|
|
|
|
element-icon {
|
|
size: 20;
|
|
padding: 0 10 0 0;
|
|
background-color: transparent;
|
|
}
|
|
|
|
entry {
|
|
padding: 12;
|
|
background-color: @bg-alt;
|
|
text-color: @fg;
|
|
placeholder: "...";
|
|
placeholder-color: @fg-alt;
|
|
}
|
|
|
|
inputbar {
|
|
children: [prompt, entry];
|
|
background-color: @bg;
|
|
}
|
|
|
|
listview {
|
|
background-color: @bg;
|
|
columns: 1;
|
|
lines: 5;
|
|
dynamic: true;
|
|
}
|
|
|
|
mainbox {
|
|
children: [inputbar, listview];
|
|
background-color: @bg;
|
|
}
|
|
|
|
prompt {
|
|
enabled: true;
|
|
padding: 12 0 0 12;
|
|
background-color: @bg-alt;
|
|
text-color: @fg;
|
|
}
|
|
|
|
/* vim: ft=sass
|
|
|