{
flake.modules.homeManager.rofi = {
config,
lib,
...
}: let
col = lib.arta.colours.everforest;
in {
programs.rofi = {
enable = true;
modes = ["run"];
theme = let
inherit (config.lib.formats.rasi) mkLiteral;
in {
"*" = {
bg0 = mkLiteral "#${col.bg0}";
fg = mkLiteral "#${col.fg}";
background-color = mkLiteral "@bg0";
text-color = mkLiteral "@fg";
};
};
};
};
}