fix: brighter conceal. Fixes #70
This commit is contained in:
@@ -17,7 +17,7 @@ function M.setup(config)
|
||||
theme.base = {
|
||||
Comment = { fg = c.comment, style = config.commentStyle }, -- any comment
|
||||
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
|
||||
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|
|
||||
@@ -309,16 +309,16 @@ function M.setup(config)
|
||||
-- NvimTreeFolderName= { fg = c.fg_float },
|
||||
|
||||
-- Fern
|
||||
FernBranchText = {fg = c.blue},
|
||||
FernBranchText = { fg = c.blue },
|
||||
|
||||
-- glyph palette
|
||||
GlyphPalette1 ={ fg = c.red1 },
|
||||
GlyphPalette2 ={ fg = c.green },
|
||||
GlyphPalette3 ={ fg = c.yellow },
|
||||
GlyphPalette4 ={ fg = c.blue },
|
||||
GlyphPalette6 ={ fg = c.green1 },
|
||||
GlyphPalette7 ={ fg = c.fg },
|
||||
GlyphPalette9 ={ fg = c.red },
|
||||
GlyphPalette1 = { fg = c.red1 },
|
||||
GlyphPalette2 = { fg = c.green },
|
||||
GlyphPalette3 = { fg = c.yellow },
|
||||
GlyphPalette4 = { fg = c.blue },
|
||||
GlyphPalette6 = { fg = c.green1 },
|
||||
GlyphPalette7 = { fg = c.fg },
|
||||
GlyphPalette9 = { fg = c.red },
|
||||
|
||||
-- Dashboard
|
||||
DashboardShortCut = { fg = c.cyan },
|
||||
|
||||
Reference in New Issue
Block a user