diff --git a/lua/catppuccino/core/color_palette.lua b/lua/catppuccino/core/color_palette.lua index 08c6c02..cefec39 100644 --- a/lua/catppuccino/core/color_palette.lua +++ b/lua/catppuccino/core/color_palette.lua @@ -14,7 +14,7 @@ local color_palette = { katppuccino12 = "#3e4058", -- Independence katppuccino13 = "#110E17", katppuccino14 = "#1B1927", -- least used? - catppuccino16 = "#201C2B", + katppuccino15 = "#201C2B", -- least used? } return color_palette diff --git a/lua/catppuccino/core/integrations/bufferline.lua b/lua/catppuccino/core/integrations/bufferline.lua index 61b4d8c..a78bd76 100644 --- a/lua/catppuccino/core/integrations/bufferline.lua +++ b/lua/catppuccino/core/integrations/bufferline.lua @@ -5,7 +5,7 @@ function M.get(cp) local inactive_clr = cp.katppuccino13 return { - BufferLineFill = { bg = cp.catppuccino16 }, + BufferLineFill = { bg = cp.katppuccino15 }, BufferLineBackground = { fg = cp.katppuccino12, bg = inactive_clr }, BufferLineBufferVisible = { fg = cp.katppuccino12, bg = inactive_clr }, BufferLineBufferSelected = { fg = cp.katppuccino0, bg = cp.katppuccino1 }, diff --git a/lua/catppuccino/core/integrations/neogit.lua b/lua/catppuccino/core/integrations/neogit.lua index 9d6057e..da50655 100644 --- a/lua/catppuccino/core/integrations/neogit.lua +++ b/lua/catppuccino/core/integrations/neogit.lua @@ -6,7 +6,7 @@ function M.get(cp) NeogitRemote = { fg = cp.katppuccino4 }, NeogitHunkHeader = { bg = cp.katppuccino9, fg = cp.katppuccino10 }, NeogitHunkHeaderHighlight = { bg = cp.katppuccino12, fg = cp.katppuccino9 }, - NeogitDiffContextHighlight = { bg = cp.catppuccino16, fg = cp.katppuccino0 }, + NeogitDiffContextHighlight = { bg = cp.katppuccino15, fg = cp.katppuccino0 }, NeogitDiffDeleteHighlight = { fg = cp.katppuccino5, bg = cp.katppuccino1 }, NeogitDiffAddHighlight = { fg = cp.katppuccino9, bg = cp.katppuccino1 }, } diff --git a/lua/catppuccino/core/integrations/telescope.lua b/lua/catppuccino/core/integrations/telescope.lua index 51a0ede..6dd2753 100644 --- a/lua/catppuccino/core/integrations/telescope.lua +++ b/lua/catppuccino/core/integrations/telescope.lua @@ -4,7 +4,7 @@ function M.get(cp) return { TelescopeBorder = { fg = cp.katppuccino9 }, TelescopeSelectionCaret = { fg = cp.katppuccino2 }, - TelescopeSelection = { fg = cp.katppuccino2, bg = cp.catppuccino16 }, + TelescopeSelection = { fg = cp.katppuccino2, bg = cp.katppuccino15 }, TelescopeMatching = { fg = cp.katppuccino9 }, } end diff --git a/lua/catppuccino/core/integrations/vim_sneak.lua b/lua/catppuccino/core/integrations/vim_sneak.lua index 67d942d..72e3ded 100644 --- a/lua/catppuccino/core/integrations/vim_sneak.lua +++ b/lua/catppuccino/core/integrations/vim_sneak.lua @@ -2,7 +2,7 @@ local M = {} function M.get(cp) return { - Sneak = { fg = cp.catppuccino16, bg = cp.katppuccino4 }, + Sneak = { fg = cp.katppuccino15, bg = cp.katppuccino4 }, SneakScope = { bg = cp.katppuccino10 }, } end diff --git a/lua/catppuccino/core/mapper.lua b/lua/catppuccino/core/mapper.lua index 0622fbc..44c68b3 100644 --- a/lua/catppuccino/core/mapper.lua +++ b/lua/catppuccino/core/mapper.lua @@ -21,13 +21,13 @@ local function get_base() return { Comment = { fg = cp.katppuccino11, style = cnf.styles.comments }, -- just comments - ColorColumn = { bg = cp.catppuccino16 }, -- used for the columns set with 'colorcolumn' + ColorColumn = { bg = cp.katppuccino15 }, -- used for the columns set with 'colorcolumn' Conceal = { fg = cp.black }, -- placeholder characters substituted for concealed text (see 'conceallevel') Cursor = { fg = cp.katppuccino1, bg = cp.katppuccino10 }, -- character under the cursor lCursor = { fg = cp.katppuccino1, bg = cp.katppuccino10 }, -- the character under the cursor when |language-mapping| is used (see 'guicursor') CursorIM = { fg = cp.katppuccino1, bg = cp.katppuccino10 }, -- like Cursor, but used when in IME mode |CursorIM| - CursorColumn = { bg = cp.catppuccino16 }, -- Screen-column at the cursor, when 'cursorcolumn' is secp. - CursorLine = { bg = cp.catppuccino16 }, -- Screen-line at the cursor, when 'cursorline' is secp. Low-priority if foreground (ctermfg OR guifg) is not secp. + CursorColumn = { bg = cp.katppuccino15 }, -- Screen-column at the cursor, when 'cursorcolumn' is secp. + CursorLine = { bg = cp.katppuccino15 }, -- Screen-line at the cursor, when 'cursorline' is secp. Low-priority if foreground (ctermfg OR guifg) is not secp. Directory = { fg = cp.katppuccino9 }, -- directory names (and other special names in listings) EndOfBuffer = { fg = cp.katppuccino1 }, -- filler lines (~) after the end of the buffer. By default, this is highlighted like |hl-NonText|. ErrorMsg = { fg = cp.katppuccino5 }, -- error messages on the command line @@ -69,8 +69,8 @@ local function get_base() TabLineFill = { bg = cp.black }, -- tab pages line, where there are no labels TabLineSel = { fg = cp.katppuccino0, bg = cp.katppuccino12 }, -- tab pages line, active tab page label Title = { fg = cp.katppuccino9, style = "bold" }, -- titles for output from ":set all", ":autocmd" etcp. - Visual = { bg = cp.catppuccino16 }, -- Visual mode selection - VisualNOS = { bg = cp.catppuccino16 }, -- Visual mode selection when vim is "Not Owning the Selection". + Visual = { bg = cp.katppuccino15 }, -- Visual mode selection + VisualNOS = { bg = cp.katppuccino15 }, -- Visual mode selection when vim is "Not Owning the Selection". WarningMsg = { fg = cp.katppuccino8 }, -- warning messages Whitespace = { fg = cp.katppuccino12 }, -- "nbsp", "space", "tab" and "trail" in 'listchars' WildMenu = { bg = cp.katppuccino11 }, -- current match in 'wildmenu' completion