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

30 lines
769 B
Nix
Raw Normal View History

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