dotfiles/home/modules/ghostty/config/themes.nix

33 lines
827 B
Nix
Raw Normal View History

2025-01-08 19:06:14 -06:00
{flake, ...}: let
2025-01-14 16:17:42 -06:00
inherit
(flake.config.aesthetics.themes.schemes.catppuccin-macchiato)
colours
;
2025-01-08 19:06:14 -06:00
in {
catppuccin-macchiato = {
2025-01-14 16:17:42 -06:00
background = "${colours.base}";
cursor-color = "${colours.rosewater}";
foreground = "${colours.text}";
2025-01-08 19:06:14 -06:00
palette = [
2025-01-14 16:17:42 -06:00
"0=${colours.surface1}"
"1=${colours.red}"
"2=${colours.green}"
"3=${colours.yellow}"
"4=${colours.blue}"
"5=${colours.pink}"
"6=${colours.teal}"
"7=${colours.subtext0}"
"8=${colours.surface2}"
"9=${colours.red}"
"10=${colours.green}"
"11=${colours.yellow}"
"12=${colours.blue}"
"13=${colours.pink}"
"14=${colours.teal}"
"15=${colours.subtext1}"
2025-01-08 19:06:14 -06:00
];
2025-01-14 16:17:42 -06:00
selection-background = "${colours.surface2}";
selection-foreground = "${colours.text}";
2025-01-08 19:06:14 -06:00
};
}