nixcfg/modules/nixos/desktop/addons/rofi/config.rasi
2024-01-11 10:31:04 +00:00

43 lines
826 B
CSS

/*
vim: filetype=css
*/
configuration {
fullscreen: false;
show-icons: false;
sidebar-mode: false;
}
* {
// Default bg is transparent.
background-color: transparent;
// Default text is white
text-color: white;
spacing: 30;
}
#window {
// Default font
font: "Nerd Font Hack 18";
fullscreen: true;
transparency: "background";
background-color: #282a36BA;
// Add dummy widgets on top and bottom so the sizing
// nicely centers hdum, independent of resolution.
children: [ dummy1, hdum, dummy2 ];
}
#hdum {
orientation: horizontal;
// Add dummy widgets on left and right so the sizing
// nicely centers mainbox, independent of resolution.
children: [ dummy3, mainbox, dummy4 ];
}
#element selected {
text-color: #caa9fa;
}