1
0
Fork 0
mirror of https://git.sr.ht/~neverness/ultima synced 2025-01-09 18:33:52 +00:00
ultima/modules/home/programs/cli/joshuto/theme.nix
2024-12-03 23:20:37 +09:00

18 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;
};
};
};
}