fix: Replace invalid colours with existing equivalents

Within both branches 'master' and 'dev', invalid colours
such as `cp.purple`, `cp.blue1` and `cp.hint` currently exist.
This commit replaces them with equivalent existing colours
and therefore allows the lspsaga integration to work properly.
dev
sgoudham 2 years ago committed by Pocco81
parent 43d6f3f733
commit 106d06ee2b

@ -5,7 +5,7 @@ function M.get(cp)
DiagnosticError = { fg = cp.red }, DiagnosticError = { fg = cp.red },
DiagnosticWarning = { fg = cp.yellow }, DiagnosticWarning = { fg = cp.yellow },
DiagnosticInformation = { fg = cp.blue }, DiagnosticInformation = { fg = cp.blue },
DiagnosticHint = { fg = cp.hint }, DiagnosticHint = { fg = cp.rosewater },
LspFloatWinNormal = { bg = cp.crust }, LspFloatWinNormal = { bg = cp.crust },
LspFloatWinBorder = { fg = cp.blue }, LspFloatWinBorder = { fg = cp.blue },
LspSagaBorderTitle = { fg = cp.flamingo }, LspSagaBorderTitle = { fg = cp.flamingo },
@ -14,11 +14,11 @@ function M.get(cp)
LspSagaDefPreviewBorder = { fg = cp.teal }, LspSagaDefPreviewBorder = { fg = cp.teal },
LspSagaCodeActionBorder = { fg = cp.blue }, LspSagaCodeActionBorder = { fg = cp.blue },
LspSagaFinderSelection = { fg = cp.surface1 }, LspSagaFinderSelection = { fg = cp.surface1 },
LspSagaCodeActionTitle = { fg = cp.blue1 }, LspSagaCodeActionTitle = { fg = cp.blue },
LspSagaCodeActionContent = { fg = cp.purple }, LspSagaCodeActionContent = { fg = cp.lavender },
LspSagaSignatureHelpBorder = { fg = cp.red }, LspSagaSignatureHelpBorder = { fg = cp.red },
ReferencesCount = { fg = cp.purple }, ReferencesCount = { fg = cp.lavender },
DefinitionCount = { fg = cp.purple }, DefinitionCount = { fg = cp.lavender },
DefinitionIcon = { fg = cp.blue }, DefinitionIcon = { fg = cp.blue },
ReferencesIcon = { fg = cp.blue }, ReferencesIcon = { fg = cp.blue },
TargetWord = { fg = cp.flamingo }, TargetWord = { fg = cp.flamingo },

Loading…
Cancel
Save