From d364d45def33ca52e106be76162a3c0e4818a868 Mon Sep 17 00:00:00 2001 From: karyanayandi Date: Wed, 25 Dec 2024 12:52:53 +0700 Subject: [PATCH] feat(theme): update WhichKeyFloat background color Changed the background color of WhichKeyFloat from 'active' to 'highlight' to improve visibility and consistency with the rest of the theme. --- 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 b11c3ad..2d59f09 100644 --- a/lua/aurora/theme.lua +++ b/lua/aurora/theme.lua @@ -763,7 +763,7 @@ function theme.highlights(colors, config) WhichKeyGroup = { fg = colors.cyan }, WhichKeyDesc = { fg = colors.blue, style = "italic" }, WhichKeySeperator = { fg = colors.green }, - WhichKeyFloat = { bg = colors.active }, + WhichKeyFloat = { bg = colors.highlight }, -- LspSaga TitleString = { fg = colors.fg },