some changes

This commit is contained in:
zack 2025-04-27 11:11:51 -04:00
parent 2d25c605b7
commit 825f05c50a
No known key found for this signature in database
GPG key ID: EE8A2B709E2401D1
45 changed files with 1826 additions and 1586 deletions

View file

@ -21,6 +21,30 @@ in {
};
colors = {
alpha = "0.9";
# Custom colors from lib/theme/default.nix
foreground = "${colors.text.hex}";
background = "${colors.crust.hex}";
# Normal colors
regular0 = "${colors.surface1.hex}"; # black
regular1 = "${colors.red.hex}"; # red
regular2 = "${colors.green.hex}"; # green
regular3 = "${colors.yellow.hex}"; # yellow
regular4 = "${colors.blue.hex}"; # blue
regular5 = "${colors.mauve.hex}"; # magenta
regular6 = "${colors.teal.hex}"; # cyan
regular7 = "${colors.text.hex}"; # white
# Bright colors
bright0 = "${colors.surface2.hex}"; # bright black
bright1 = "${colors.red.hex}"; # bright red
bright2 = "${colors.green.hex}"; # bright green
bright3 = "${colors.yellow.hex}"; # bright yellow
bright4 = "${colors.blue.hex}"; # bright blue
bright5 = "${colors.mauve.hex}"; # bright magenta
bright6 = "${colors.teal.hex}"; # bright cyan
bright7 = "${colors.text.hex}"; # bright white
};
};
};