chore(notify): silence missing bg hl warning

This commit is contained in:
2025-03-08 21:20:11 +01:00
parent 4f11874437
commit d6dfbe4659

View File

@@ -2,21 +2,26 @@
---@param palette Palette ---@param palette Palette
return function(theme, palette) return function(theme, palette)
return { return {
NotifyBackground = { link = "Normal" },
NotifyERRORBorder = theme.msg.error, NotifyERRORBorder = theme.msg.error,
NotifyWARNBorder = theme.msg.warning, NotifyWARNBorder = theme.msg.warning,
NotifyINFOBorder = theme.msg.info, NotifyINFOBorder = theme.msg.info,
NotifyDEBUGBorder = theme.msg.hint, NotifyDEBUGBorder = theme.msg.hint,
NotifyTRACEBorder = theme.msg.error, NotifyTRACEBorder = theme.msg.error,
NotifyERRORIcon = { link = "NotifyERRORBorder" }, NotifyERRORIcon = { link = "NotifyERRORBorder" },
NotifyWARNIcon = { link = "NotifyWARNBorder" }, NotifyWARNIcon = { link = "NotifyWARNBorder" },
NotifyINFOIcon = { link = "NotifyINFOBorder" }, NotifyINFOIcon = { link = "NotifyINFOBorder" },
NotifyDEBUGIcon = { link = "NotifyDEBUGBorder" }, NotifyDEBUGIcon = { link = "NotifyDEBUGBorder" },
NotifyTRACEIcon = { link = "NotifyTRACEBorder" }, NotifyTRACEIcon = { link = "NotifyTRACEBorder" },
NotifyERRORTitle = { link = "NotifyERRORBorder" }, NotifyERRORTitle = { link = "NotifyERRORBorder" },
NotifyWARNTitle = { link = "NotifyWARNBorder" }, NotifyWARNTitle = { link = "NotifyWARNBorder" },
NotifyINFOTitle = { link = "NotifyINFOBorder" }, NotifyINFOTitle = { link = "NotifyINFOBorder" },
NotifyDEBUGTitle = { link = "NotifyDEBUGBorder" }, NotifyDEBUGTitle = { link = "NotifyDEBUGBorder" },
NotifyTRACETitle = { link = "NotifyTRACEBorder" }, NotifyTRACETitle = { link = "NotifyTRACEBorder" },
NotifyERRORBody = { link = "Normal" }, NotifyERRORBody = { link = "Normal" },
NotifyWARNBody = { link = "Normal" }, NotifyWARNBody = { link = "Normal" },
NotifyINFOBody = { link = "Normal" }, NotifyINFOBody = { link = "Normal" },