diff options
author | bd <bdunahu@operationnull.com> | 2024-07-19 22:38:58 -0600 |
---|---|---|
committer | bd <bdunahu@operationnull.com> | 2024-07-19 22:38:58 -0600 |
commit | f52526765cba9b33617b0e76c5da3416120e21de (patch) | |
tree | bc311640d273b2883fab10bde7daa3732e192572 /.config | |
parent | 4e11e4d3ce45a3e76a07d966909c2cb5cb6479b1 (diff) |
Make eshell prompt colors adjust with theme
Diffstat (limited to '.config')
-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 |