diff options
author | Aryadev Chavali <aryadev@aryadevchavali.com> | 2025-04-05 19:43:50 +0100 |
---|---|---|
committer | Aryadev Chavali <aryadev@aryadevchavali.com> | 2025-04-05 19:43:50 +0100 |
commit | cc8761911930d35c11a1047e3fbba15585eb7fff (patch) | |
tree | 94d4a998fefd9acab94076254617afc3159357d5 | |
parent | 86fdf93e34b52872c7ce1d733b972d0736850891 (diff) | |
download | dotfiles-cc8761911930d35c11a1047e3fbba15585eb7fff.tar.gz dotfiles-cc8761911930d35c11a1047e3fbba15585eb7fff.tar.bz2 dotfiles-cc8761911930d35c11a1047e3fbba15585eb7fff.zip |
Adjust font size in Emacs
-rw-r--r-- | Emacs/.config/emacs/config.org | 2 | ||||
-rw-r--r-- | Emacs/.config/emacs/elisp/personal-solarized-theme.el | 6 |
2 files changed, 4 insertions, 4 deletions
diff --git a/Emacs/.config/emacs/config.org b/Emacs/.config/emacs/config.org index 335c3f3..4f36ac0 100644 --- a/Emacs/.config/emacs/config.org +++ b/Emacs/.config/emacs/config.org @@ -101,7 +101,7 @@ Let's setup a few absolute essentials: (global-auto-revert-mode) (set-face-attribute 'default nil :height (pcase (system-name) - ("rhmaiden" 130) + ("rhmaiden" 120) (_ 120)))) #+end_src * Custom functionality and libraries diff --git a/Emacs/.config/emacs/elisp/personal-solarized-theme.el b/Emacs/.config/emacs/elisp/personal-solarized-theme.el index dcd4e98..780af03 100644 --- a/Emacs/.config/emacs/elisp/personal-solarized-theme.el +++ b/Emacs/.config/emacs/elisp/personal-solarized-theme.el @@ -80,8 +80,8 @@ '(link-visited ((t (:foreground "violet" :inherit (link))))) '(match ((t (:background "RoyalBlue3")))) '(minibuffer-prompt ((t (:foreground "cyan")))) - '(mode-line ((t (:box (:line-width 1 :color "white") :foreground "LightSkyBlue" - :background "black" :inherit (default) :height 130)))) + `(mode-line ((t (:box (:line-width 1 :color "white") :foreground "LightSkyBlue" + :background "black" :inherit (default) :height 120)))) '(mode-line-buffer-id ((t (:weight bold)))) '(mode-line-emphasis ((t (:weight bold)))) '(mode-line-inactive ((t (:box (:line-width 1 :color "grey10") :weight light @@ -127,7 +127,7 @@ '(region ((t (:extend t :background "grey25")))) '(secondary-selection ((t (:extend t :background "SkyBlue4")))) '(shadow ((t (:foreground "grey70")))) - '(show-paren-match ((t (:foreground unspecified :foreground "#55ec55" + '(show-paren-match ((t (:foreground unspecified :background "green4" :weight bold)))) '(show-paren-mismatch ((t (:foreground "#01323d" :background "#ec1111" :weight bold)))) |