renamed catppuccino14 -> katppuccino13

dev-remaster
Pocco81 3 years ago
parent a97fbcbd01
commit 7caea8f592

@ -12,7 +12,7 @@ local color_palette = {
katppuccino10 = "#A7B6DC", -- Wild Blue Yonder
katppuccino11 = "#6F6A8A", -- Rhythm
katppuccino12 = "#3e4058", -- Independence
catppuccino14 = "#110E17",
katppuccino13 = "#110E17",
catppuccino15 = "#1B1927",
catppuccino16 = "#201C2B",
}

@ -2,7 +2,7 @@ local M = {}
function M.get(cp)
local inactive_clr = cp.catppuccino14
local inactive_clr = cp.katppuccino13
return {
BufferLineFill = { bg = cp.catppuccino16 },

@ -6,7 +6,7 @@ function M.get(cp)
DiagnosticWarning = { fg = cp.katppuccino8 },
DiagnosticInformation = { fg = cp.katppuccino9 },
DiagnosticHint = { fg = cp.hint },
LspFloatWinNormal = { bg = cp.catppuccino14 },
LspFloatWinNormal = { bg = cp.katppuccino13 },
LspFloatWinBorder = { fg = cp.katppuccino9 },
LspSagaBorderTitle = { fg = cp.katppuccino2 },
LspSagaHoverBorder = { fg = cp.katppuccino9 },

@ -4,7 +4,7 @@ function M.get(cp)
return {
LspTroubleText = { fg = cp.katppuccino0 },
LspTroubleCount = { fg = cp.katppuccino4, bg = cp.katppuccino12 },
LspTroubleNormal = { fg = cp.katppuccino10, bg = cp.catppuccino14 },
LspTroubleNormal = { fg = cp.katppuccino10, bg = cp.katppuccino13 },
}
end

@ -12,7 +12,7 @@ function M.get(cp)
return {
NvimTreeFolderName = { fg = cp.katppuccino9 },
NvimTreeFolderIcon = { fg = cp.katppuccino9 },
NvimTreeNormal = { fg = cp.katppuccino10, bg = cp.catppuccino14 },
NvimTreeNormal = { fg = cp.katppuccino10, bg = cp.katppuccino13 },
NvimTreeOpenedFolderName = { fg = cp.katppuccino9 },
NvimTreeEmptyFolderName = { fg = cp.katppuccino9 },
NvimTreeIndentMarker = { fg = cp.katppuccino11 },

@ -7,7 +7,7 @@ function M.get(cp)
WhichKeyDesc = { fg = cp.katppuccino4 },
WhichKeySeperator = { fg = cp.katppuccino11 },
WhichKeySeparator = { fg = cp.katppuccino11 },
WhichKeyFloat = { bg = cp.catppuccino14 },
WhichKeyFloat = { bg = cp.katppuccino13 },
WhichKeyValue = { fg = cp.katppuccino11 },
}
end

@ -31,11 +31,11 @@ local function get_base()
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
VertSplit = { fg = cp.catppuccino14 }, -- the column separating vertically split windows
VertSplit = { fg = cp.katppuccino13 }, -- the column separating vertically split windows
Folded = { fg = cp.katppuccino9, bg = cp.katppuccino12 }, -- line used for closed folds
FoldColumn = { bg = cp.katppuccino1, fg = cp.katppuccino11 }, -- 'foldcolumn'
SignColumn = { bg = cnf.transparency and cp.none or cp.katppuccino1, fg = cp.katppuccino12 }, -- column where |signs| are displayed
SignColumnSB = { bg = cp.catppuccino14, fg = cp.katppuccino12 }, -- column where |signs| are displayed
SignColumnSB = { bg = cp.katppuccino13, fg = cp.katppuccino12 }, -- column where |signs| are displayed
Substitute = { bg = cp.katppuccino12, fg = cp.katppuccino4 }, -- |:substitute| replacement text highlighting
LineNr = { fg = cp.katppuccino12 }, -- Line number for ":number" and ":#" commands, and when 'number' or 'relativenumber' option is secp.
CursorLineNr = { fg = cp.katppuccino0 }, -- Like LineNr when 'cursorline' or 'relativenumber' is set for the cursor line. highlights the number in numberline.
@ -47,8 +47,8 @@ local function get_base()
NonText = { fg = cp.katppuccino11 }, -- '@' at the end of the window, characters from 'showbreak' and other characters that do not really exist in the text (e.g., ">" displayed when a double-wide character doesn't fit at the end of the line). See also |hl-EndOfBuffer|.
Normal = { fg = cp.katppuccino10, bg = cnf.transparency and cp.none or cp.katppuccino1 }, -- normal text
NormalNC = { fg = cp.katppuccino10, bg = cnf.transparency and cp.none or cp.katppuccino1 }, -- normal text in non-current windows
NormalSB = { fg = cp.fg, bg = cp.catppuccino14 }, -- normal text in non-current windows
NormalFloat = { fg = cp.katppuccino10, bg = cp.catppuccino14 }, -- Normal text in floating windows.
NormalSB = { fg = cp.fg, bg = cp.katppuccino13 }, -- normal text in non-current windows
NormalFloat = { fg = cp.katppuccino10, bg = cp.katppuccino13 }, -- Normal text in floating windows.
FloatBorder = { fg = cp.katppuccino9 },
Pmenu = { bg = cp.catppuccino15, fg = cp.katppuccino10 }, -- Popup menu: normal item.
PmenuSel = { fg = cp.katppuccino4, bg = cp.katppuccino12 }, -- Popup menu: selected item.
@ -135,7 +135,7 @@ local function get_base()
-- mkdLink = { fg = cp.katppuccino9, style = "underline" },
-- debugging
debugPC = { bg = cp.catppuccino14 }, -- used for highlighting the current line in terminal-debug
debugPC = { bg = cp.katppuccino13 }, -- used for highlighting the current line in terminal-debug
debugBreakpoint = { bg = cp.katppuccino1, fg = cp.katppuccino11 }, -- used for breakpoint colors in terminal-debug
-- illuminate
illuminatedWord = { bg = cp.katppuccino12 },

Loading…
Cancel
Save