fix: visual_bg

dev-remaster
Pocco81 3 years ago
parent 7402190a9b
commit 76905e862a

@ -13,7 +13,7 @@ function M.get(cp)
LspSagaRenameBorder = { fg = cp.catppuccino8 },
LspSagaDefPreviewBorder = { fg = cp.catppuccino8 },
LspSagaCodeActionBorder = { fg = cp.catppuccino10 },
LspSagaFinderSelection = { fg = cp.catppuccino2_visual },
LspSagaFinderSelection = { fg = cp.util.darken(cp.catppuccino10, 0.2) },
LspSagaCodeActionTitle = { fg = cp.catppuccino101 },
LspSagaCodeActionContent = { fg = cp.purple },
LspSagaSignatureHelpBorder = { fg = cp.catppuccino6 },

@ -3,7 +3,7 @@ local M = {}
function M.get(cp)
return {
Sneak = { fg = cp.catppuccino2_highlight, bg = cp.catppuccino5 },
SneakScope = { bg = cp.catppuccino2_visual },
SneakScope = { bg = cp.util.darken(cp.catppuccino10, 0.2) },
}
end

@ -22,7 +22,7 @@ local function get_base()
return {
Comment = { fg = cp.catppuccino12, style = cnf.styles.comments }, -- just comments
ColorColumn = { bg = cp.catppuccino2_visual }, -- used for the columns set with 'colorcolumn'
ColorColumn = { bg = cp.util.darken(cp.catppuccino10, 0.2) }, -- used for the columns set with 'colorcolumn'
Conceal = { fg = cp.black }, -- placeholder characters substituted for concealed text (see 'conceallevel')
Cursor = { fg = cp.catppuccino2, bg = cp.catppuccino11 }, -- character under the cursor
lCursor = { fg = cp.catppuccino2, bg = cp.catppuccino11 }, -- the character under the cursor when |language-mapping| is used (see 'guicursor')
@ -56,7 +56,7 @@ local function get_base()
PmenuSbar = { bg = util.lighten(cp.catppuccino2_popup, 0.95) }, -- Popup menu: scrollbar.
PmenuThumb = { bg = cp.catppuccino13 }, -- Popup menu: Thumb of the scrollbar.
Question = { fg = cp.catppuccino10 }, -- |hit-enter| prompt and yes/no questions
QuickFixLine = { bg = cp.catppuccino2_visual, style = "bold" }, -- Current |quickfix| item in the quickfix window. Combined with |hl-CursorLine| when the cursor is there.
QuickFixLine = { bg = cp.util.darken(cp.catppuccino10, 0.2), style = "bold" }, -- Current |quickfix| item in the quickfix window. Combined with |hl-CursorLine| when the cursor is there.
Search = { bg = cp.catppuccino2_search, fg = cp.catppuccino11 }, -- Last search pattern highlighting (see 'hlsearch'). Also used for similar items that need to stand oucp.
IncSearch = { bg = cp.catppuccino3, fg = cp.black }, -- 'incsearch' highlighting; also used for the text replaced with ":s///c"
SpecialKey = { fg = cp.catppuccino11 }, -- Unprintable characters: text displayed differently from what it really is. But not 'listchars' whitespace. |hl-Whitespace|
@ -70,11 +70,11 @@ local function get_base()
TabLineFill = { bg = cp.black }, -- tab pages line, where there are no labels
TabLineSel = { fg = cp.catppuccino11_alt, bg = cp.catppuccino13 }, -- tab pages line, active tab page label
Title = { fg = cp.catppuccino10, style = "bold" }, -- titles for output from ":set all", ":autocmd" etcp.
Visual = { bg = cp.catppuccino2_visual }, -- Visual mode selection
VisualNOS = { bg = cp.catppuccino2_visual }, -- Visual mode selection when vim is "Not Owning the Selection".
Visual = { bg = cp.util.darken(cp.catppuccino10, 0.2) }, -- Visual mode selection
VisualNOS = { bg = cp.util.darken(cp.catppuccino10, 0.2) }, -- Visual mode selection when vim is "Not Owning the Selection".
WarningMsg = { fg = cp.warning }, -- warning messages
Whitespace = { fg = cp.catppuccino13 }, -- "nbsp", "space", "tab" and "trail" in 'listchars'
WildMenu = { bg = cp.catppuccino2_visual }, -- current match in 'wildmenu' completion
WildMenu = { bg = cp.util.darken(cp.catppuccino10, 0.2) }, -- current match in 'wildmenu' completion
-- These groups are not listed as default vim groups,
-- but they are defacto standard group names for syntax highlighting.
-- catppuccino12ed out groups should chain up to their "prefercatppuccino6" group by

Loading…
Cancel
Save