1
0
Fork 0
mirror of https://git.sr.ht/~neverness/ultima synced 2025-01-09 19:43:52 +00:00
ultima/modules/home/programs/cli/joshuto/theme.nix

19 lines
343 B
Nix

{ config, ... }:
{
programs.joshuto.theme = with config.lib.stylix.colors; {
lscolors_enabled = true;
tabs.styles = {
active = {
bg = "${base00}";
fg = "${base0E}";
bold = true;
};
inactive = {
bg = "${base00}";
fg = "${base03}";
bold = false;
};
};
};
}