From 6004ca3b1f3c7df27d569395439ed3d6dc1781fc Mon Sep 17 00:00:00 2001 From: Barrett Ruth Date: Tue, 20 Jan 2026 22:23:40 -0500 Subject: [PATCH] fix: color todo/notes with correct naming scheme --- lua/midnight/theme.lua | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/lua/midnight/theme.lua b/lua/midnight/theme.lua index 6c275fd..7725525 100644 --- a/lua/midnight/theme.lua +++ b/lua/midnight/theme.lua @@ -114,10 +114,10 @@ function M.apply() hi('@text.underline', { underline = true }) hi('@text.uri', { fg = cs.white, underline = true }, { '@text.reference' }) - hi('@text.danger', { fg = cs.red, bold = true, italic = true }) - hi('@text.note', { fg = cs.green, bold = true, italic = true }) - hi('@text.todo', { fg = cs.yellow, bold = true, italic = true }, { 'Todo' }) - hi('@text.warning', { fg = cs.yellow, bold = true, italic = true }) + hi('@comment.danger', { fg = cs.red, bold = true, italic = true }) + hi('@comment.note', { fg = cs.green, bold = true, italic = true }) + hi('@comment.todo', { fg = cs.yellow, bold = true, italic = true }, { 'Todo' }) + hi('@comment.warning', { fg = cs.yellow, bold = true, italic = true }) hi('@variable', { none = true })