From f52526765cba9b33617b0e76c5da3416120e21de Mon Sep 17 00:00:00 2001 From: bd Date: Fri, 19 Jul 2024 22:38:58 -0600 Subject: Make eshell prompt colors adjust with theme --- .config/emacs/modules/bd--shells.el | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to '.config') diff --git a/.config/emacs/modules/bd--shells.el b/.config/emacs/modules/bd--shells.el index b343e8e..932943d 100644 --- a/.config/emacs/modules/bd--shells.el +++ b/.config/emacs/modules/bd--shells.el @@ -28,10 +28,10 @@ "Return a prettified shell prompt." (concat "\n" - (propertize (system-name) 'face `(:foreground "#edb54b")) - (propertize (format " %s" (bd/get-prompt-path)) 'face `(:foreground "#33859d")) - (propertize (format-time-string " %a, %R") 'face `(:foreground "#888ba5")) - (propertize "\n> " 'face `(:foreground "#c33027")))) + (propertize (system-name) 'face `(:foreground ,(ef-themes-get-color-value 'yellow-warmer))) + (propertize (format " %s" (bd/get-prompt-path)) 'face `(:foreground ,(ef-themes-get-color-value 'blue-warmer))) + (propertize (format-time-string " %a, %R") 'face `(:foreground ,(ef-themes-get-color-value 'blue-faint))) + (propertize "\n> " 'face `(:foreground ,(ef-themes-get-color-value 'red))))) ;;;; shell -- cgit v1.2.3