From fb250844a1e9067afaaf7485ca4706298013da68 Mon Sep 17 00:00:00 2001 From: Folke Lemaitre Date: Wed, 28 Apr 2021 22:07:19 +0200 Subject: [PATCH] fix: better fg color for Substitute #24 --- 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 3155d9b..3c86fd3 100644 --- a/lua/tokyonight/theme.lua +++ b/lua/tokyonight/theme.lua @@ -37,7 +37,7 @@ function M.setup(config) FoldColumn = { bg = c.bg, fg = c.comment }, -- 'foldcolumn' SignColumn = { bg = config.transparent and c.none or c.bg, fg = c.fg_gutter }, -- column where |signs| are displayed SignColumnSB = { bg = c.bg_sidebar, fg = c.fg_gutter }, -- column where |signs| are displayed - Substitute = { bg = c.red }, -- |:substitute| replacement text highlighting + Substitute = { bg = c.red, fg = c.black }, -- |:substitute| replacement text highlighting LineNr = { fg = c.fg_gutter }, -- Line number for ":number" and ":#" commands, and when 'number' or 'relativenumber' option is set. CursorLineNr = { fg = c.dark5 }, -- Like LineNr when 'cursorline' or 'relativenumber' is set for the cursor line. MatchParen = { fg = c.orange, style = "bold" }, -- The character under the cursor or just before it, if it is a paired bracket, and its match. |pi_paren.txt|