From 101d9ec7bbe90b283eed0eb7f50728478d2a6a17 Mon Sep 17 00:00:00 2001 From: tiyn Date: Wed, 7 Feb 2024 23:42:13 +0100 Subject: [PATCH] changed markdown colors --- lua/tccs/theme.lua | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lua/tccs/theme.lua b/lua/tccs/theme.lua index 3c13db3..9fcd973 100644 --- a/lua/tccs/theme.lua +++ b/lua/tccs/theme.lua @@ -297,11 +297,11 @@ theme.set_highlights = function(opts) hl(0, '@markup.raw.markdown', { fg = c.string }) hl(0, '@markup.raw.markdown_inline', { fg = c.string }) hl(0, '@markup.link.label', { fg = c.tag }) - hl(0, '@markup.link.url', { fg = c.fg }) + hl(0, '@markup.link.url', { fg = c.string }) hl(0, '@markup.list.checked', { link = 'Todo' }) hl(0, '@markup.list.unchecked', { link = 'Todo' }) - hl(0, '@textReference', { fg = c.fg }) - hl(0, '@stringEscape', { fg = c.fg, bold = true }) + hl(0, '@textReference', { fg = c.tag }) + hl(0, '@stringEscape', { fg = c.string, bold = true }) end