mirror of
https://git.sr.ht/~neverness/ultima
synced 2025-01-09 19:43:52 +00:00
19 lines
343 B
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;
|
|
};
|
|
};
|
|
};
|
|
}
|