mirror of
https://gitlab.com/upRootNutrition/dotfiles.git
synced 2025-06-16 10:05:13 -05:00
32 lines
827 B
Nix
Executable file
32 lines
827 B
Nix
Executable file
{flake, ...}: let
|
|
inherit
|
|
(flake.config.aesthetics.themes.schemes.catppuccin-macchiato)
|
|
colours
|
|
;
|
|
in {
|
|
catppuccin-macchiato = {
|
|
background = "${colours.base}";
|
|
cursor-color = "${colours.rosewater}";
|
|
foreground = "${colours.text}";
|
|
palette = [
|
|
"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}"
|
|
];
|
|
selection-background = "${colours.surface2}";
|
|
selection-foreground = "${colours.text}";
|
|
};
|
|
}
|