diff options
Diffstat (limited to '.config/emacs/modules/bd--shells.el')
-rw-r--r-- | .config/emacs/modules/bd--shells.el | 8 |
1 files changed, 4 insertions, 4 deletions
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 |