From 0e23ee652d7b5430e06c288faae3cc16d3b36d06 Mon Sep 17 00:00:00 2001 From: Daniel Mathiot Date: Tue, 8 Feb 2022 19:47:47 +0100 Subject: [PATCH] feat: Add nvim-notify highlights (#66) --- lua/rose-pine/theme.lua | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/lua/rose-pine/theme.lua b/lua/rose-pine/theme.lua index 36d393a..4a2aafa 100644 --- a/lua/rose-pine/theme.lua +++ b/lua/rose-pine/theme.lua @@ -438,6 +438,23 @@ local theme = { TelescopeSelection = { fg = palette.text, bg = palette.overlay }, TelescopeSelectionCaret = { fg = palette.rose, bg = palette.overlay }, TelescopeTitle = { fg = palette.subtle }, + + -- rcarriga/nvim-notify + NotifyINFOBorder = { fg = palette.foam }, + NotifyINFOTitle = { link = 'NotifyINFOBorder' }, + NotifyINFOIcon = { link = 'NotifyINFOBorder' }, + NotifyWARNBorder = { fg = palette.gold }, + NotifyWARNTitle = { link = 'NotifyWARNBorder' }, + NotifyWARNIcon = { link = 'NotifyWARNBorder' }, + NotifyDEBUGBorder = { fg = palette.muted }, + NotifyDEBUGTitle = { link = 'NotifyDEBUGBorder' }, + NotifyDEBUGIcon = { link = 'NotifyDEBUGBorder' }, + NotifyTRACEBorder = { fg = palette.iris }, + NotifyTRACETitle = { link = 'NotifyTRACEBorder' }, + NotifyTRACEIcon = { link = 'NotifyTRACEBorder' }, + NotifyERRORBorder = { fg = palette.love }, + NotifyERRORTitle = { link = 'NotifyERRORBorder' }, + NotifyERRORIcon = { link = 'NotifyERRORBorder' }, } vim.g.terminal_color_0 = palette.overlay -- black