fix: brighter conceal. Fixes #70
This commit is contained in:
@@ -17,7 +17,7 @@ function M.setup(config)
|
|||||||
theme.base = {
|
theme.base = {
|
||||||
Comment = { fg = c.comment, style = config.commentStyle }, -- any comment
|
Comment = { fg = c.comment, style = config.commentStyle }, -- any comment
|
||||||
ColorColumn = { bg = c.bg_visual }, -- used for the columns set with 'colorcolumn'
|
ColorColumn = { bg = c.bg_visual }, -- used for the columns set with 'colorcolumn'
|
||||||
Conceal = { fg = c.fg_gutter }, -- placeholder characters substituted for concealed text (see 'conceallevel')
|
Conceal = { fg = c.dark3 }, -- placeholder characters substituted for concealed text (see 'conceallevel')
|
||||||
Cursor = { fg = c.bg, bg = c.fg }, -- character under the cursor
|
Cursor = { fg = c.bg, bg = c.fg }, -- character under the cursor
|
||||||
lCursor = { fg = c.bg, bg = c.fg }, -- the character under the cursor when |language-mapping| is used (see 'guicursor')
|
lCursor = { fg = c.bg, bg = c.fg }, -- the character under the cursor when |language-mapping| is used (see 'guicursor')
|
||||||
CursorIM = { fg = c.bg, bg = c.fg }, -- like Cursor, but used when in IME mode |CursorIM|
|
CursorIM = { fg = c.bg, bg = c.fg }, -- like Cursor, but used when in IME mode |CursorIM|
|
||||||
@@ -308,17 +308,17 @@ function M.setup(config)
|
|||||||
NvimTreeSymlink = { fg = c.blue },
|
NvimTreeSymlink = { fg = c.blue },
|
||||||
-- NvimTreeFolderName= { fg = c.fg_float },
|
-- NvimTreeFolderName= { fg = c.fg_float },
|
||||||
|
|
||||||
-- Fern
|
-- Fern
|
||||||
FernBranchText = {fg = c.blue},
|
FernBranchText = { fg = c.blue },
|
||||||
|
|
||||||
-- glyph palette
|
-- glyph palette
|
||||||
GlyphPalette1 ={ fg = c.red1 },
|
GlyphPalette1 = { fg = c.red1 },
|
||||||
GlyphPalette2 ={ fg = c.green },
|
GlyphPalette2 = { fg = c.green },
|
||||||
GlyphPalette3 ={ fg = c.yellow },
|
GlyphPalette3 = { fg = c.yellow },
|
||||||
GlyphPalette4 ={ fg = c.blue },
|
GlyphPalette4 = { fg = c.blue },
|
||||||
GlyphPalette6 ={ fg = c.green1 },
|
GlyphPalette6 = { fg = c.green1 },
|
||||||
GlyphPalette7 ={ fg = c.fg },
|
GlyphPalette7 = { fg = c.fg },
|
||||||
GlyphPalette9 ={ fg = c.red },
|
GlyphPalette9 = { fg = c.red },
|
||||||
|
|
||||||
-- Dashboard
|
-- Dashboard
|
||||||
DashboardShortCut = { fg = c.cyan },
|
DashboardShortCut = { fg = c.cyan },
|
||||||
@@ -340,24 +340,24 @@ function M.setup(config)
|
|||||||
DiagnosticWarning = { fg = c.warning },
|
DiagnosticWarning = { fg = c.warning },
|
||||||
DiagnosticInformation = { fg = c.info },
|
DiagnosticInformation = { fg = c.info },
|
||||||
DiagnosticHint = { fg = c.hint },
|
DiagnosticHint = { fg = c.hint },
|
||||||
|
|
||||||
LspFloatWinNormal = { bg = c.dark },
|
LspFloatWinNormal = { bg = c.dark },
|
||||||
LspFloatWinBorder = { fg = c.border_highlight },
|
LspFloatWinBorder = { fg = c.border_highlight },
|
||||||
LspSagaBorderTitle = { fg = c.cyan },
|
LspSagaBorderTitle = { fg = c.cyan },
|
||||||
LspSagaHoverBorder = { fg = c.blue },
|
LspSagaHoverBorder = { fg = c.blue },
|
||||||
LspSagaRenameBorder = { fg = c.green },
|
LspSagaRenameBorder = { fg = c.green },
|
||||||
LspSagaDefPreviewBorder = { fg = c.green },
|
LspSagaDefPreviewBorder = { fg = c.green },
|
||||||
LspSagaCodeActionBorder = { fg = c.blue },
|
LspSagaCodeActionBorder = { fg = c.blue },
|
||||||
LspSagaFinderSelection = { fg = c.bg_visual },
|
LspSagaFinderSelection = { fg = c.bg_visual },
|
||||||
LspSagaCodeActionTitle = { fg = c.blue1 },
|
LspSagaCodeActionTitle = { fg = c.blue1 },
|
||||||
LspSagaCodeActionContent = { fg = c.purple },
|
LspSagaCodeActionContent = { fg = c.purple },
|
||||||
LspSagaSignatureHelpBorder = { fg = c.red },
|
LspSagaSignatureHelpBorder = { fg = c.red },
|
||||||
ReferencesCount = { fg = c.purple },
|
ReferencesCount = { fg = c.purple },
|
||||||
DefinitionCount = { fg = c.purple },
|
DefinitionCount = { fg = c.purple },
|
||||||
DefinitionIcon = { fg = c.blue },
|
DefinitionIcon = { fg = c.blue },
|
||||||
ReferencesIcon = { fg = c.blue },
|
ReferencesIcon = { fg = c.blue },
|
||||||
TargetWord = { fg = c.cyan },
|
TargetWord = { fg = c.cyan },
|
||||||
|
|
||||||
-- NeoVim
|
-- NeoVim
|
||||||
healthError = { fg = c.error },
|
healthError = { fg = c.error },
|
||||||
healthSuccess = { fg = c.green1 },
|
healthSuccess = { fg = c.green1 },
|
||||||
|
|||||||
Reference in New Issue
Block a user