configuration.nix/home/sway/rofi/theme.rasi

81 lines
923 B
Text
Raw Normal View History

2023-03-15 22:11:59 +05:30
configuration {
font: "FiraCode Nerd Font 14";
drun {
display-name: "";
}
run {
display-name: "";
}
window {
display-name: "";
}
timeout {
delay: 10;
action: "kb-cancel";
}
}
* {
border: 0;
margin: 0;
padding: 0;
spacing: 0;
bg: #282a36;
fg: #f8f8f2;
blue: #6272a4;
purple: #bd93f9;
background-color: @bg;
text-color: @fg;
}
window {
transparency: "real";
}
mainbox {
children: [inputbar, listview];
}
inputbar {
background-color: @blue;
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];
text-color: @blue;
}
element-icon {
padding: 10px 10px;
}
element-text {
padding: 10px 0;
text-color: inherit;
}
element-text selected {
text-color: @purple;
}