fix: renaming colors -> done with cp7

dev-remaster
Pocco81 3 years ago
parent d3409a994d
commit d9df26a750

@ -5,7 +5,7 @@ function M.get(cp)
DashboardShortCut = { fg = cp.catppuccino3 },
DashboardHeader = { fg = cp.yellow },
DashboardCenter = { fg = cp.green },
DashboardFooter = { fg = cp.orange, style = "italic" },
DashboardFooter = { fg = cp.catppuccino7, style = "italic" },
}
end

@ -2,7 +2,7 @@ local M = {}
function M.get(cp)
return {
HopNextKey = { catppuccino2 = cp.catppuccino2, fg = cp.orange, style = "bold,underline" },
HopNextKey = { catppuccino2 = cp.catppuccino2, fg = cp.catppuccino7, style = "bold,underline" },
HopNextKey1 = { catppuccino2 = cp.catppuccino2, fg = cp.blue, style = "bold" },
HopNextKey2 = { catppuccino2 = cp.catppuccino2, fg = cp.green, style = "bold,italic" },
HopUnmatched = { catppuccino2 = cp.catppuccino2, fg = cp.comment },

@ -10,7 +10,7 @@ function M.get(cp)
hi["IndentBlanklineIndent6"] = {blend = "nocombine", fg = cp.yellow}
hi["IndentBlanklineIndent5"] = {blend = "nocombine", fg = cp.catppuccino6}
hi["IndentBlanklineIndent4"] = {blend = "nocombine", fg = cp.green}
hi["IndentBlanklineIndent3"] = {blend = "nocombine", fg = cp.orange}
hi["IndentBlanklineIndent3"] = {blend = "nocombine", fg = cp.catppuccino7}
hi["IndentBlanklineIndent2"] = {blend = "nocombine", fg = cp.blue}
hi["IndentBlanklineIndent1"] = {blend = "nocombine", fg = cp.catppuccino5}
end

@ -32,8 +32,8 @@ function M.get(cp)
LightspeedOverlapped = {catppuccino2 = cp.catppuccino2_visual, fg = cp.fg},
LightspeedLabelDistant = {catppuccino2 = cp.catppuccino4, fg = cp.fg},
LightspeedLabelDistantOverlapped = {catppuccino2 = cp.catppuccino4, fg = cp.fg},
LightspeedShortcut = {catppuccino2 = cp.catppuccino2, fg = cp.orange, style = "italic"},
LightspeedShortcutOverlapped = {catppuccino2 = cp.catppuccino2, fg = cp.orange, style = "bold"},
LightspeedShortcut = {catppuccino2 = cp.catppuccino2, fg = cp.catppuccino7, style = "italic"},
LightspeedShortcutOverlapped = {catppuccino2 = cp.catppuccino2, fg = cp.catppuccino7, style = "bold"},
LightspeedMaskedChar = {catppuccino2 = cp.catppuccino2, fg = cp.catppuccino6, style = "undercurl"},
LightspeedGreyWash = {catppuccino2 = cp.catppuccino2, fg = cp.comment},
LightspeedUnlabeledMatch = {catppuccino2 = cp.catppuccino2, fg = cp.catppuccino6, style = "underline"},

@ -2,7 +2,7 @@ local M = {}
function M.get(cp)
return {
markdownHeadingDelimiter = { fg = cp.orange, style = "bold" },
markdownHeadingDelimiter = { fg = cp.catppuccino7, style = "bold" },
markdownCode = { fg = cp.catppuccino3 },
markdownCodeBlock = { fg = cp.catppuccino3 },
markdownH1 = { fg = cp.catppuccino5, style = "bold" },

@ -22,7 +22,7 @@ function M.get(cp)
LspDiagnosticsDefaultWarning = { fg = cp.warning }, -- Used as the base highlight group. Other LspDiagnostic highlights link to this by default (except Underline)
LspDiagnosticsDefaultInformation = { fg = cp.info }, -- Used as the base highlight group. Other LspDiagnostic highlights link to this by default (except Underline)
LspDiagnosticsDefaultHint = { fg = cp.hint }, -- Used as the base highlight group. Other LspDiagnostic highlights link to this by default (except Underline)
LspSignatureActiveParameter = { fg = cp.orange },
LspSignatureActiveParameter = { fg = cp.catppuccino7 },
-- LspDiagnosticsFloatingError = { }, -- Used to color "Error" diagnostic messages in diagnostics float
-- LspDiagnosticsFloatingWarning = { }, -- Used to color "Warning" diagnostic messages in diagnostics float
-- LspDiagnosticsFloatingInformation = { }, -- Used to color "Information" diagnostic messages in diagnostics float

@ -11,7 +11,7 @@ function M.get(cp)
-- TSAnnotation = { }; -- For C++/Dart attributes, annotations that can be attached to the code to denote some kind of meta information.
-- TSAttribute = { }; -- (unstable) TODO: docs
TSBoolean = { fg = cp.orange_br, style = cnf.styles.keywords }, -- For booleans.
TSBoolean = { fg = cp.catppuccino7_br, style = cnf.styles.keywords }, -- For booleans.
-- TSCharacter = { }; -- For characters.
-- TSComment = { }; -- For comment blocks.
TSNote = { fg = cp.catppuccino2, catppuccino2 = cp.info },
@ -19,8 +19,8 @@ function M.get(cp)
TSDanger = { fg = cp.catppuccino2, catppuccino2 = cp.error },
TSConstructor = { fg = cp.catppuccino5 }, -- For constructor calls and definitions: `= { }` in Lua, and Java constructors.
TSConditional = { fg = cp.catppuccino6, style = cnf.styles.keywords }, -- For keywords related to conditionnals.
TSConstant = { fg = cp.orange }, -- For constants
TSConstBuiltin = { fg = cp.orange_br, style = cnf.styles.keywords }, -- For constant that are built in the language: `nil` in Lua.
TSConstant = { fg = cp.catppuccino7 }, -- For constants
TSConstBuiltin = { fg = cp.catppuccino7_br, style = cnf.styles.keywords }, -- For constant that are built in the language: `nil` in Lua.
-- TSConstMacro = { }; -- For constants that are defined by macros: `NULL` in cp.
-- TSError = { }; -- For syntax/parser errors.
TSException = { fg = cp.catppuccino4, style = cnf.styles.keywords }, -- For exception related keywords.
@ -40,7 +40,7 @@ function M.get(cp)
-- TSNone = { }; -- TODO: docs
-- TSNumber = { }; -- For all numbers
TSOperator = { fg = cp.catppuccino3 }, -- For any operator: `+`, but also `->` and `*` in cp.
TSParameter = { fg = cp.orange_br }, -- For parameters of a function.
TSParameter = { fg = cp.catppuccino7_br }, -- For parameters of a function.
-- TSParameterReference= { }; -- For references to parameters of a function.
TSProperty = { fg = cp.catppuccino6 }, -- Same as `TSField`.
tomlTSProperty = { fg = cp.blue }, -- Differentiates between string and properties

@ -40,7 +40,7 @@ local function get_base()
Substitute = { catppuccino2 = cp.catppuccino6, fg = cp.black }, -- |:substitute| replacement text highlighting
LineNr = { fg = cp.fg_gutter }, -- Line number for ":number" and ":#" commands, and when 'number' or 'relativenumber' option is secp.
CursorLineNr = { fg = cp.fg_alt }, -- Like LineNr when 'cursorline' or 'relativenumber' is set for the cursor line. highlights the number in numberline.
MatchParen = { fg = cp.orange, style = "bold" }, -- The character under the cursor or just before it, if it is a paicatppuccino6 bracket, and its match. |pi_paren.txt|
MatchParen = { fg = cp.catppuccino7, style = "bold" }, -- The character under the cursor or just before it, if it is a paicatppuccino6 bracket, and its match. |pi_paren.txt|
ModeMsg = { fg = cp.fg_alt, style = "bold" }, -- 'showmode' message (e.g., "-- INSERT -- ")
MsgArea = { fg = cp.catppuccino0 }, -- Area for messages and cmdline
MsgSeparator = {}, -- Separator for scrolled messages, `msgsep` flag of 'display'
@ -83,12 +83,12 @@ local function get_base()
-- code itself
Constant = { fg = cp.orange }, -- (prefercatppuccino6) any constant
Constant = { fg = cp.catppuccino7 }, -- (prefercatppuccino6) any constant
String = { fg = cp.green, style = cnf.styles.strings }, -- a string constant: "this is a string"
Character = { fg = cp.green }, -- a character constant: 'c', '\n'
Number = { fg = cp.orange_br }, -- a number constant: 234, 0xff
Float = { fg = cp.orange_br }, -- a floating point constant: 2.3e10
Boolean = { fg = cp.orange_br }, -- a boolean constant: TRUE, false
Number = { fg = cp.catppuccino7_br }, -- a number constant: 234, 0xff
Float = { fg = cp.catppuccino7_br }, -- a floating point constant: 2.3e10
Boolean = { fg = cp.catppuccino7_br }, -- a boolean constant: TRUE, false
Identifier = { fg = cp.catppuccino3, style = cnf.styles.variables }, -- (prefercatppuccino6) any variable name
Function = { fg = cp.blue, style = cnf.styles.functions }, -- function name (also: methods for classes)
Statement = { fg = cp.catppuccino4 }, -- (prefercatppuccino6) any statement
@ -128,7 +128,7 @@ local function get_base()
qfFileName = { fg = cp.blue },
htmlH1 = { fg = cp.catppuccino5, style = "bold" },
htmlH2 = { fg = cp.blue, style = "bold" },
-- mkdHeading = { fg = cp.orange, style = "bold" },
-- mkdHeading = { fg = cp.catppuccino7, style = "bold" },
-- mkdCode = { catppuccino2 = cp.terminal_black, fg = cp.fg },
mkdCodeDelimiter = { catppuccino2 = cp.terminal_black, fg = cp.fg },
mkdCodeStart = { fg = cp.catppuccino3, style = "bold" },
@ -146,7 +146,7 @@ local function get_base()
diffRemoved = { fg = cp.diff.delete },
diffChanged = { fg = cp.diff.change },
diffOldFile = { fg = cp.yellow },
diffNewFile = { fg = cp.orange },
diffNewFile = { fg = cp.catppuccino7 },
diffFile = { fg = cp.blue },
diffLine = { fg = cp.comment },
diffIndexLine = { fg = cp.catppuccino5 },

Loading…
Cancel
Save