diff options
Diffstat (limited to 'home/neovim/config.nix')
-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; }; |