diff options
author | Aryadev Chavali <aryadev@aryadevchavali.com> | 2024-07-25 02:57:15 +0100 |
---|---|---|
committer | Aryadev Chavali <aryadev@aryadevchavali.com> | 2024-07-25 02:57:15 +0100 |
commit | 4a3fd8ffc2ad342f6bed40dd4d4f48cdee80a3d9 (patch) | |
tree | 2f944693ac3b163eaf01099c6cd4ad5d38c0cfc6 | |
parent | 6383e8845a65c006b66ec2e4a6e0953bfdcec118 (diff) | |
download | dotfiles-4a3fd8ffc2ad342f6bed40dd4d4f48cdee80a3d9.tar.gz dotfiles-4a3fd8ffc2ad342f6bed40dd4d4f48cdee80a3d9.tar.bz2 dotfiles-4a3fd8ffc2ad342f6bed40dd4d4f48cdee80a3d9.zip |
(Emacs/elisp)~Fix some annoyances in personal solarized theme
-rw-r--r-- | Emacs/.config/emacs/elisp/personal-solarized-theme.el | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Emacs/.config/emacs/elisp/personal-solarized-theme.el b/Emacs/.config/emacs/elisp/personal-solarized-theme.el index c94f0da..f2c248f 100644 --- a/Emacs/.config/emacs/elisp/personal-solarized-theme.el +++ b/Emacs/.config/emacs/elisp/personal-solarized-theme.el @@ -64,16 +64,16 @@ '(link-visited ((t (:foreground "violet" :inherit (link))))) '(match ((t (:background "RoyalBlue3")))) '(minibuffer-prompt ((t (:foreground "cyan")))) - '(mode-line ((t (:box nil :foreground "LightSkyBlue" :background "black" :inherit (default))))) + '(mode-line ((t (:box (:line-width 1 :color "white") :foreground "LightSkyBlue" :background "black" :inherit (default))))) '(mode-line-buffer-id ((t (:weight bold)))) '(mode-line-emphasis ((t (:weight bold)))) - '(mode-line-inactive ((t (:box nil :weight light :foreground "CadetBlue" :background "grey7" :inherit (default))))) + '(mode-line-inactive ((t (:box (:line-width 1 :color "grey10") :weight light :foreground "CadetBlue" :background "grey7" :inherit (default))))) '(next-error ((t (:inherit (region))))) '(orderless-match-face-0 ((t (:weight bold :foreground "lime green")))) '(orderless-match-face-1 ((t (:weight bold :foreground "light green")))) '(orderless-match-face-2 ((t (:weight bold :foreground "forest green")))) '(orderless-match-face-3 ((t (:weight bold :foreground "dark green")))) - '(org-block ((t (:background "grey3" :inherit shadow)))) + '(org-block ((t (:inherit shadow)))) '(org-code ((t (:foreground "green3")))) '(org-quote ((t (:slant italic)))) '(org-verbatim ((t (:foreground "red3")))) |