summaryrefslogtreecommitdiff
path: root/lua/onedarker/Notify.lua
diff options
context:
space:
mode:
authorkylo252 <[email protected]>2022-03-19 13:55:34 +0100
committerGitHub <[email protected]>2022-03-19 16:25:34 +0330
commit1488deebc714d66427fe0b55e6b9df0a0db97df4 (patch)
tree7bcdfee15d1bfeaf335fb6321d53ac43ed88307d /lua/onedarker/Notify.lua
parent5a8ccd9fcb3b7be2a07d92246e7bc764409ed537 (diff)
refactor: load onedarker theme externally (#2359)
Diffstat (limited to 'lua/onedarker/Notify.lua')
-rw-r--r--lua/onedarker/Notify.lua24
1 files changed, 0 insertions, 24 deletions
diff --git a/lua/onedarker/Notify.lua b/lua/onedarker/Notify.lua
deleted file mode 100644
index 4eebc00e..00000000
--- a/lua/onedarker/Notify.lua
+++ /dev/null
@@ -1,24 +0,0 @@
-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