From 02618eb78680c9597eb673060125a422e83fcb2c Mon Sep 17 00:00:00 2001 From: Folke Lemaitre Date: Fri, 6 Aug 2021 10:18:04 +0200 Subject: [PATCH] fix: make Conceal a little brighter. Fixes #70 --- lua/tokyonight/theme.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lua/tokyonight/theme.lua b/lua/tokyonight/theme.lua index 9495869e..da679e01 100644 --- a/lua/tokyonight/theme.lua +++ b/lua/tokyonight/theme.lua @@ -17,7 +17,7 @@ function M.setup(config) theme.base = { Comment = { fg = c.comment, style = config.commentStyle }, -- any comment ColorColumn = { bg = c.black }, -- used for the columns set with 'colorcolumn' - Conceal = { fg = c.dark3 }, -- placeholder characters substituted for concealed text (see 'conceallevel') + Conceal = { fg = c.dark5 }, -- 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|