Switch unsaved file color to orange

This commit is contained in:
Kiana Sheibani 2024-04-23 15:12:23 -04:00
parent d9993e0d7d
commit 15ce43fc38
Signed by: toki
GPG key ID: 6CB106C25E86A9F7

View file

@ -1283,13 +1283,16 @@ Victor Mono is my preferred coding font. I also use Source Sans Pro as my sans-s
doom-variable-pitch-font (font-spec :family "Source Sans Pro" :size 16)) doom-variable-pitch-font (font-spec :family "Source Sans Pro" :size 16))
#+end_src #+end_src
I'm a very big fan of how italics look in Victor Mono, so let's make more things italicized! While we're here, we'll also set doom's modified buffer font to be red instead of yellow (I like how it looks better). I'm a very big fan of how italics look in Victor Mono, so let's make more things italicized! While we're here, we'll also set doom's modified buffer font to be orange instead of yellow (I like how it looks better).
#+begin_src emacs-lisp #+begin_src emacs-lisp
(custom-set-faces! (custom-set-faces!
'(font-lock-comment-face :slant italic) '(font-lock-comment-face :slant italic)
'(font-lock-variable-name-face :slant italic) '(font-lock-variable-name-face :slant italic)
'(doom-modeline-buffer-modified :weight bold :inherit (doom-modeline error))) `(doom-modeline-buffer-modified
:foreground ,(doom-color 'orange)
:weight bold
:inherit doom-modeline))
#+end_src #+end_src
Some other small aesthetic changes: Some other small aesthetic changes: