feat: add Notify*Body highlights

Fixes #331
This commit is contained in:
mvllow 2025-01-08 09:37:09 -06:00
commit 106f05aeab
No known key found for this signature in database

View file

@ -682,22 +682,28 @@ local function set_highlights()
FzfLuaTitle = { link = "FloatTitle" },
-- rcarriga/nvim-notify
NotifyBackground = { link = "NormalFloat" },
NotifyDEBUGBody = { link = 'NormalFloat' },
NotifyDEBUGBorder = make_border(),
NotifyDEBUGIcon = { link = "NotifyDEBUGTitle" },
NotifyDEBUGTitle = { fg = palette.muted },
NotifyERRORBody = { link = 'NormalFloat' },
NotifyERRORBorder = make_border(groups.error),
NotifyERRORIcon = { link = "NotifyERRORTitle" },
NotifyERRORTitle = { fg = groups.error },
NotifyINFOBody = { link = 'NormalFloat' },
NotifyINFOBorder = make_border(groups.info),
NotifyINFOIcon = { link = "NotifyINFOTitle" },
NotifyINFOTitle = { fg = groups.info },
NotifyTRACEBody = { link = 'NormalFloat' },
NotifyTRACEBorder = make_border(palette.iris),
NotifyTRACEIcon = { link = "NotifyTRACETitle" },
NotifyTRACETitle = { fg = palette.iris },
NotifyWARNBody = { link = 'NormalFloat' },
NotifyWARNBorder = make_border(groups.warn),
NotifyWARNIcon = { link = "NotifyWARNTitle" },
NotifyWARNTitle = { fg = groups.warn },
NotifyBackground = { bg = palette.surface },
-- rcarriga/nvim-dap-ui
DapUIBreakpointsCurrentLine = { fg = palette.gold, bold = styles.bold },
DapUIBreakpointsDisabledLine = { fg = palette.muted },