From 90e111993b27e1f34808a232032a47a6bf0e4652 Mon Sep 17 00:00:00 2001 From: Barrett Ruth Date: Tue, 20 Jan 2026 22:24:40 -0500 Subject: [PATCH] fix: use blue, not green, for notes --- lua/midnight/theme.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lua/midnight/theme.lua b/lua/midnight/theme.lua index 7725525..a3c6499 100644 --- a/lua/midnight/theme.lua +++ b/lua/midnight/theme.lua @@ -115,7 +115,7 @@ function M.apply() hi('@text.uri', { fg = cs.white, underline = true }, { '@text.reference' }) hi('@comment.danger', { fg = cs.red, bold = true, italic = true }) - hi('@comment.note', { fg = cs.green, bold = true, italic = true }) + hi('@comment.note', { fg = cs.blue, 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 })