diff options
author | David Robillard <d@drobilla.net> | 2021-11-18 19:00:14 -0500 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2021-11-18 19:00:14 -0500 |
commit | d6e502fcc71c00a4f27ad15520507e1bf720f126 (patch) | |
tree | aaf017cc68a5a4cf3e89f3ddcf76715a38c1d77b /emacs | |
parent | afb4386409476a39bb3a1fe49112bd8060285753 (diff) | |
download | dotfiles-d6e502fcc71c00a4f27ad15520507e1bf720f126.tar.gz dotfiles-d6e502fcc71c00a4f27ad15520507e1bf720f126.tar.bz2 dotfiles-d6e502fcc71c00a4f27ad15520507e1bf720f126.zip |
Remove distinct function and variable name colors
Diffstat (limited to 'emacs')
-rw-r--r-- | emacs/.emacs.d/drobillized-theme.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/emacs/.emacs.d/drobillized-theme.el b/emacs/.emacs.d/drobillized-theme.el index 880f512..00751d8 100644 --- a/emacs/.emacs.d/drobillized-theme.el +++ b/emacs/.emacs.d/drobillized-theme.el @@ -113,12 +113,12 @@ Reload the theme after changing anything in this group." `(font-lock-comment-face ((t (:foreground ,violet :slant normal)))) `(font-lock-constant-face ((t (:foreground ,base1)))) `(font-lock-doc-face ((t (:inherit font-lock-string-face :foreground ,violet)))) - `(font-lock-function-name-face ((t (:inherit default :foreground ,base1)))) + `(font-lock-function-name-face ((t (:inherit default)))) `(font-lock-keyword-face ((t (:foreground ,base1)))) `(font-lock-preprocessor-face ((nil (:foreground ,base00)))) `(font-lock-string-face ((t (:foreground ,magenta)))) `(font-lock-type-face ((t (:foreground ,green :weight normal)))) - `(font-lock-variable-name-face ((t (:foreground "#CCC" :weight normal)))) + `(font-lock-variable-name-face ((t (:inherit default)))) `(font-lock-warning-face ((t (:foreground ,red)))) `(fringe ((t (:background "#1B2022" :foreground "#888")))) `(git-gutter:added ((t (:inherit diff-added)))) |