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

18 lines
343 B
Nix
Raw Normal View History

2024-12-03 14:20:37 +00:00
{ 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;
};
};
};
}