From c114625652aed79bed15d410e93f21fa5b1976b5 Mon Sep 17 00:00:00 2001 From: Fadhil Muhammad Date: Fri, 22 Nov 2024 05:35:53 +0700 Subject: [PATCH] swap notifications info colours --- autoload/db_ui/notifications.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/autoload/db_ui/notifications.vim b/autoload/db_ui/notifications.vim index 7f0335c..3b93c46 100644 --- a/autoload/db_ui/notifications.vim +++ b/autoload/db_ui/notifications.vim @@ -219,7 +219,7 @@ function! s:setup_colors() abort let normal_fg = '#FFFFFF' endif - call s:set_hl('NotificationInfo', normal_bg, normal_fg) + call s:set_hl('NotificationInfo', normal_fg, normal_bg) call s:set_hl('NotificationError', error_fg, error_bg) call s:set_hl('NotificationWarning', warning_fg, warning_bg)