summaryrefslogtreecommitdiff
path: root/lua/onedarker/Notify.lua
diff options
context:
space:
mode:
authorkylo252 <[email protected]>2021-10-22 23:46:43 +0200
committerGitHub <[email protected]>2021-10-22 23:46:43 +0200
commita96a44a16a46dae0aee0f5689ccfe644d2a27c0f (patch)
treec7c9ee30b2d86437df4f723af7c9b557c66fe9d6 /lua/onedarker/Notify.lua
parent10df0b5ffd0fd96b210747e9169dad08c81dca1b (diff)
[fix] fix notify's highlight groups and make it optional (#1827)
Diffstat (limited to 'lua/onedarker/Notify.lua')
-rw-r--r--lua/onedarker/Notify.lua24
1 files changed, 24 insertions, 0 deletions
diff --git a/lua/onedarker/Notify.lua b/lua/onedarker/Notify.lua
new file mode 100644
index 00000000..4eebc00e
--- /dev/null
+++ b/lua/onedarker/Notify.lua
@@ -0,0 +1,24 @@
+local Notify = {
+ NotifyERRORBorder = { fg = C.error_red },
+ NotifyWARNBorder = { fg = C.warning_orange },
+ NotifyINFOBorder = { fg = C.green },
+ NotifyDEBUGBorder = { fg = C.purple_test },
+ NotifyTRACEBorder = { fg = C.purple },
+ NotifyERRORIcon = { fg = C.error_red },
+ NotifyWARNIcon = { fg = C.warning_orange },
+ NotifyINFOIcon = { fg = C.green },
+ NotifyDEBUGIcon = { fg = C.purple_test },
+ NotifyTRACEIcon = { fg = C.purple },
+ NotifyERRORTitle = { fg = C.error_red },
+ NotifyWARNTitle = { fg = C.warning_orange },
+ NotifyINFOTitle = { fg = C.green },
+ NotifyDEBUGTitle = { fg = C.purple_test },
+ NotifyTRACETitle = { fg = C.purple },
+ NotifyERRORBody = { fg = C.fg },
+ NotifyWARNBody = { fg = C.fg },
+ NotifyINFOBody = { fg = C.fg },
+ NotifyDEBUGBody = { fg = C.fg },
+ NotifyTRACEBody = { fg = C.fg },
+}
+
+return Notify