diff options
author | Alan Pearce | 2017-06-23 14:58:08 +0200 |
---|---|---|
committer | Alan Pearce | 2017-06-23 14:58:08 +0200 |
commit | 5ff313b3ea8508574a9e3aea84850d246a696876 (patch) | |
tree | 7d841b6af41a60c42087fc6f8358674dec2ebd73 | |
parent | 46b488feae34f6f21a17ddc0d8645e49b5d5e9ba (diff) | |
download | nixfiles-5ff313b3ea8508574a9e3aea84850d246a696876.tar.lz nixfiles-5ff313b3ea8508574a9e3aea84850d246a696876.tar.zst nixfiles-5ff313b3ea8508574a9e3aea84850d246a696876.zip |
Emacs: Change git-gutter colours to match white-theme
-rw-r--r-- | emacs/.emacs.d/init.org | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/emacs/.emacs.d/init.org b/emacs/.emacs.d/init.org index 69163f59..e86948b1 100644 --- a/emacs/.emacs.d/init.org +++ b/emacs/.emacs.d/init.org @@ -189,9 +189,9 @@ White-theme. Sounds like a good idea. :config (progn (load-theme 'white t) (custom-theme-set-faces 'user - '(git-gutter-fr:added ((t (:foreground "#96a4ab")))) - '(git-gutter-fr:modified ((t (:foreground "#96a4ab")))) - '(git-gutter-fr:deleted ((t (:foreground "#96a4ab")))) + '(git-gutter-fr:added ((t (:foreground "#b8b8b8")))) + '(git-gutter-fr:modified ((t (:foreground "#b8b8b8")))) + '(git-gutter-fr:deleted ((t (:foreground "#b8b8b8")))) '(font-lock-string-face ((t (:slant normal))))))) #+END_SRC |