diff options
author | Freya Murphy <freya@freyacat.org> | 2025-06-27 11:12:06 -0400 |
---|---|---|
committer | Freya Murphy <freya@freyacat.org> | 2025-06-27 11:12:06 -0400 |
commit | 80d32cb32a631e495d3a19d714a9acfd5aec9833 (patch) | |
tree | ebad46c5cb14559edda63d82702ffbd35e744d6f /home | |
parent | add alacritty (diff) | |
download | dotfiles-nix-80d32cb32a631e495d3a19d714a9acfd5aec9833.tar.gz dotfiles-nix-80d32cb32a631e495d3a19d714a9acfd5aec9833.tar.bz2 dotfiles-nix-80d32cb32a631e495d3a19d714a9acfd5aec9833.zip |
update colorschemes
Diffstat (limited to 'home')
-rw-r--r-- | home/neovim/config.nix | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/home/neovim/config.nix b/home/neovim/config.nix index be74ddc..98895ed 100644 --- a/home/neovim/config.nix +++ b/home/neovim/config.nix @@ -86,22 +86,22 @@ in # colorscheme theme = { colors = { - base00 = "#${config.theme.colors.bg}"; - base01 = "#${config.theme.colors.surface.bg}"; - base02 = "#${config.theme.colors.surface.bg}"; - base03 = "#${config.theme.colors.bright.white}"; - base04 = "#${config.theme.colors.bright.black}"; - base05 = "#${config.theme.colors.fg}"; - base06 = "#${config.theme.colors.bright.white}"; - base07 = "#${config.theme.colors.hover.bg}"; + base00 = "#${config.theme.colors.base}"; + base01 = "#${config.theme.colors.surface}"; + base02 = "#${config.theme.colors.surface}"; + base03 = "#${config.theme.colors.overlay}"; + base04 = "#${config.theme.colors.subtext}"; + base05 = "#${config.theme.colors.text}"; + base06 = "#${config.theme.colors.text}"; + base07 = "#${config.theme.colors.overlay}"; base08 = "#${config.theme.colors.bright.red}"; - base09 = "#${config.theme.colors.bright.yellow}"; + base09 = "#${config.theme.colors.bright.orange}"; base0A = "#${config.theme.colors.bright.yellow}"; base0B = "#${config.theme.colors.bright.green}"; base0C = "#${config.theme.colors.bright.cyan}"; base0D = "#${config.theme.colors.bright.blue}"; base0E = "#${config.theme.colors.bright.magenta}"; - base0F = "#${config.theme.colors.normal.yellow}"; + base0F = "#${config.theme.colors.bright.pink}"; }; transparent = true; }; |