From eef1540a92dc969f756e9bf70a6206098dc7c400 Mon Sep 17 00:00:00 2001 From: karyanayandi Date: Sun, 12 Jan 2025 07:18:15 +0700 Subject: [PATCH] feat(theme): update MiniStatuslineDevinfo background color Changed the background color of MiniStatuslineDevinfo from 'highlight' to 'active' to improve visibility and consistency with other statusline elements. --- lua/aurora/theme.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lua/aurora/theme.lua b/lua/aurora/theme.lua index 8d40862..6b657f1 100644 --- a/lua/aurora/theme.lua +++ b/lua/aurora/theme.lua @@ -759,7 +759,7 @@ function theme.highlights(colors, config) NeoTreeCursorLine = { link = "Visual" }, -- Mini Statusline - MiniStatuslineDevinfo = { fg = colors.fg_light, bg = colors.highlight }, + MiniStatuslineDevinfo = { fg = colors.fg_light, bg = colors.active }, MiniStatuslineFileinfo = { fg = colors.fg_light, bg = colors.bg }, MiniStatuslineFilename = { fg = colors.fg_light, bg = colors.highlight }, MiniStatuslineInactive = { fg = colors.highlight, bg = colors.float },