From 54abd1ab663d20617a1ca7f3ae68a960be0643ad Mon Sep 17 00:00:00 2001 From: MitchMarq42 Date: Wed, 24 Aug 2022 19:12:33 -0800 Subject: [PATCH] Eshell colors, rebalance theme --- lisp/mitch-theme.el | 44 +++++++++++++++++++++++++++++++++----------- 1 file changed, 33 insertions(+), 11 deletions(-) diff --git a/lisp/mitch-theme.el b/lisp/mitch-theme.el index c99392b..3e179d4 100644 --- a/lisp/mitch-theme.el +++ b/lisp/mitch-theme.el @@ -106,7 +106,10 @@ (link-visited (:foreground mitch-mid-violet :underline 't)) (whitespace-line (:background mitch-dark-red)) (line-number (:background 'nil :inherit 'font-lock-comment-delimiter-face)) - (line-number-current-line (:inherit 'line-number :foreground mitch-yellow :weight 'bold)) + (line-number-current-line (:inherit + 'line-number + :foreground mitch-yellow + :weight 'bold)) (linum (:inherit 'line-number)) (linum-relative-current-face (:inherit 'line-number-current-line)) (ivy-current-match (:inherit 'highlight :extend t)) @@ -124,7 +127,9 @@ (font-lock-variable-name-face (:foreground mitch-light-cyan :weight 'normal)) (font-lock-negation-char-face (:foreground mitch-visual-bg :weight 'bold)) ;; other things - (transient-heading (:inherit 'default :foreground mitch-magenta :weight 'bold)) + (transient-heading (:inherit 'default + :foreground mitch-magenta + :weight 'bold)) (rainbow-delimiters-depth-1-face (:foreground mitch-light-magenta)) (rainbow-delimiters-depth-2-face (:foreground mitch-magenta :weight 'normal)) (vertical-border (:foreground mitch-mid-violet :weight 'bold)) @@ -133,7 +138,9 @@ (whitespace-tab (:foreground mitch-black)) (whitespace-newline (:foreground mitch-black)) (org-meta-line (:inherit 'font-lock-comment-delimiter-face)) - (isearch (:foreground mitch-dark-yellow :background mitch-light-magenta :weight 'bold)) + (isearch (:foreground mitch-dark-yellow + :background mitch-light-magenta + :weight 'bold)) (lazy-highlight (:inherit 'isearch)) (completions-highlight (:background mitch-mid-violet)) (corfu-default (:background mitch-mid-gray)) @@ -144,19 +151,34 @@ (ansi-color-green (:foreground mitch-green :background mitch-light-green)) (ansi-color-yellow (:foreground mitch-yellow :background mitch-light-yellow)) (ansi-color-blue (:foreground mitch-blue :background mitch-light-blue)) - (ansi-color-magenta (:foreground mitch-magenta :background mitch-light-magenta)) + (ansi-color-magenta (:foreground mitch-magenta + :background mitch-light-magenta)) (ansi-color-cyan (:foreground mitch-cyan :background mitch-light-cyan)) (ansi-color-white (:foreground mitch-white :background mitch-light-white)) - (ansi-color-bright-black (:background mitch-black :foreground mitch-light-black)) + (ansi-color-bright-black (:background mitch-black + :foreground mitch-light-black)) (ansi-color-bright-red (:background mitch-red :foreground mitch-light-red)) - (ansi-color-bright-green (:background mitch-green :foreground mitch-light-green)) - (ansi-color-bright-yellow (:background mitch-yellow :foreground mitch-light-yellow)) + (ansi-color-bright-green (:background mitch-green + :foreground mitch-light-green)) + (ansi-color-bright-yellow (:background mitch-yellow + :foreground mitch-light-yellow)) (ansi-color-bright-blue (:background mitch-blue :foreground mitch-light-blue)) - (ansi-color-bright-magenta (:background mitch-magenta :foreground mitch-light-magenta)) + (ansi-color-bright-magenta (:background mitch-magenta + :foreground mitch-light-magenta)) (ansi-color-bright-cyan (:background mitch-cyan :foreground mitch-light-cyan)) - (ansi-color-bright-white (:background mitch-white :foreground mitch-light-white)) - ;; man page colors - ;; (Man-overstrike (:inherit 'outline-1)) + (ansi-color-bright-white (:background mitch-white + :foreground mitch-light-white)) + ;; eshell colors + (epe-dir-face (:foreground mitch-cyan)) + (eshell-syntax-highlighting-shell-command-face (:foreground + mitch-light-green)) + (eshell-syntax-highlighting-lisp-function-face (:foreground + mitch-light-green)) + (eshell-syntax-highlighting-alias-face (:foreground + mitch-light-green)) + (eshell-syntax-highlighting-invalid-face (:weight 'bold + :foreground mitch-red)) + (epe-status-face (:inherit 'font-lock-constant-face)) ) )