From 55691ac95686c9657375d16675f94cd53762bdb8 Mon Sep 17 00:00:00 2001 From: Barrett Ruth Date: Sat, 8 Nov 2025 13:28:04 -0500 Subject: [PATCH] color cleanup --- lua/midnight/palette.lua | 4 ++-- lua/midnight/theme.lua | 8 ++++---- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/lua/midnight/palette.lua b/lua/midnight/palette.lua index b9213f5..2454da0 100644 --- a/lua/midnight/palette.lua +++ b/lua/midnight/palette.lua @@ -35,7 +35,7 @@ local M = {} ---@type Palette M.midnight = { black = '#121212', - red = '#f48771', + red = '#ff6b6b', green = '#98c379', yellow = '#e5c07b', blue = '#7aa2f7', @@ -45,7 +45,7 @@ M.midnight = { white = '#e0e0e0', bright_black = '#666666', - bright_red = '#ff6b6b', + bright_red = '#f48771', bright_green = '#b5e890', bright_yellow = '#f0d197', bright_blue = '#9db8f7', diff --git a/lua/midnight/theme.lua b/lua/midnight/theme.lua index 07be7b1..de24386 100644 --- a/lua/midnight/theme.lua +++ b/lua/midnight/theme.lua @@ -133,14 +133,14 @@ function M.apply() hi('LspSignatureActiveParameter', { underline = true, italic = true }) hi('DiagnosticError', { fg = cs.red }, { 'DiagnosticFloatingError', 'DiagnosticSignError' }) hi('DiagnosticWarn', { fg = cs.yellow }, { 'DiagnosticFloatingWarn', 'DiagnosticSignWarn' }) - hi('DiagnosticHint', { fg = cs.white }, { 'DiagnosticFloatingHint', 'DiagnosticSignHint' }) + hi('DiagnosticHint', { fg = cs.light_black }, { 'DiagnosticFloatingHint', 'DiagnosticSignHint' }) hi('DiagnosticOk', { fg = cs.green }, { 'DiagnosticFloatingOk', 'DiagnosticSignOk' }) - hi('DiagnosticInfo', { fg = cs.white }, { 'DiagnosticFloatingInfo', 'DiagnosticSignInfo' }) + hi('DiagnosticInfo', { fg = cs.light_black }, { 'DiagnosticFloatingInfo', 'DiagnosticSignInfo' }) hi('DiagnosticUnderlineError', { undercurl = true, special = cs.red }) hi('DiagnosticUnderlineWarn', { undercurl = true, special = cs.yellow }) - hi('DiagnosticUnderlineHint', { undercurl = true, special = cs.white }) + hi('DiagnosticUnderlineHint', { undercurl = true, special = cs.light_black }) hi('DiagnosticUnderlineOk', { undercurl = true, special = cs.green }) - hi('DiagnosticUnderlineInfo', { undercurl = true, special = cs.white }) + hi('DiagnosticUnderlineInfo', { undercurl = true, special = cs.light_black }) hi('SpellBad', { underline = true, special = cs.red }) hi('SpellRare', { underline = true, special = cs.white })