mirror of
https://gitlab.com/upRootNutrition/dotfiles.git
synced 2025-06-16 10:05:13 -05:00
30 lines
769 B
Nix
30 lines
769 B
Nix
![]() |
{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}";
|
||
|
};
|
||
|
}
|