Refacto palette and theme, added more colors
This commit is contained in:
26
lua/astrobox/highlights/modules/nvim-notify.lua
Normal file
26
lua/astrobox/highlights/modules/nvim-notify.lua
Normal file
@@ -0,0 +1,26 @@
|
||||
---@param theme Theme
|
||||
---@param palette Palette
|
||||
return function(theme, palette)
|
||||
return {
|
||||
NotifyERRORBorder = theme.msg.error,
|
||||
NotifyWARNBorder = theme.msg.warning,
|
||||
NotifyINFOBorder = theme.msg.info,
|
||||
NotifyDEBUGBorder = theme.msg.hint,
|
||||
NotifyTRACEBorder = theme.msg.error,
|
||||
NotifyERRORIcon = { link = "NotifyERRORBorder" },
|
||||
NotifyWARNIcon = { link = "NotifyWARNBorder" },
|
||||
NotifyINFOIcon = { link = "NotifyINFOBorder" },
|
||||
NotifyDEBUGIcon = { link = "NotifyDEBUGBorder" },
|
||||
NotifyTRACEIcon = { link = "NotifyTRACEBorder" },
|
||||
NotifyERRORTitle = { link = "NotifyERRORBorder" },
|
||||
NotifyWARNTitle = { link = "NotifyWARNBorder" },
|
||||
NotifyINFOTitle = { link = "NotifyINFOBorder" },
|
||||
NotifyDEBUGTitle = { link = "NotifyDEBUGBorder" },
|
||||
NotifyTRACETitle = { link = "NotifyTRACEBorder" },
|
||||
NotifyERRORBody = { link = "Normal" },
|
||||
NotifyWARNBody = { link = "Normal" },
|
||||
NotifyINFOBody = { link = "Normal" },
|
||||
NotifyDEBUGBody = { link = "Normal" },
|
||||
NotifyTRACEBody = { link = "Normal" },
|
||||
}
|
||||
end
|
||||
Reference in New Issue
Block a user