You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
1.2 KiB
27 lines
1.2 KiB
10 months ago
|
return function(c)
|
||
|
local utils = require('solarized.utils')
|
||
|
local set_hl = utils.set_hl
|
||
|
|
||
|
set_hl('NotifyBackground', { bg = c.base03 })
|
||
|
set_hl('NotifyERRORBorder', { fg = c.error })
|
||
|
set_hl('NotifyWARNBorder', { fg = c.warn })
|
||
|
set_hl('NotifyINFOBorder', { fg = c.info })
|
||
|
set_hl('NotifyDEBUGBorder', { fg = c.magenta })
|
||
|
set_hl('NotifyTRACEBorder', { fg = c.violet })
|
||
|
set_hl('NotifyERRORIcon', { link = 'NotifyERRORBorder' })
|
||
|
set_hl('NotifyWARNIcon', { link = 'NotifyWARNBorder' })
|
||
|
set_hl('NotifyINFOIcon', { link = 'NotifyINFOBorder' })
|
||
|
set_hl('NotifyDEBUGIcon', { link = 'NotifyDEBUGBorder' })
|
||
|
set_hl('NotifyTRACEIcon', { link = 'NotifyTRACEBorder' })
|
||
|
set_hl('NotifyERRORTitle', { link = 'NotifyERRORBorder' })
|
||
|
set_hl('NotifyWARNTitle', { link = 'NotifyWARNBorder' })
|
||
|
set_hl('NotifyINFOTitle', { link = 'NotifyINFOBorder' })
|
||
|
set_hl('NotifyDEBUGTitle', { link = 'NotifyDEBUGTitle' })
|
||
|
set_hl('NotifyTRACETitle', { link = 'NotifyTRACEBorder' })
|
||
|
set_hl('NotifyERRORBody', { link = 'Normal' })
|
||
|
set_hl('NotifyWARNBody', { link = 'Normal' })
|
||
|
set_hl('NotifyINFOBody', { link = 'Normal' })
|
||
|
set_hl('NotifyDEBUGBody', { link = 'Normal' })
|
||
|
set_hl('NotifyTRACEBody', { link = 'Normal' })
|
||
|
end
|