diff options
author | Kyle Meyer <kyle@kyleam.com> | 2015-08-23 01:57:33 -0400 |
---|---|---|
committer | Kyle Meyer <kyle@kyleam.com> | 2015-08-23 01:57:33 -0400 |
commit | c1c0e1d0665cb47bcdfbc41a5a65dfcbdca0e0fe (patch) | |
tree | 71a81d83db47a664f30c5d81cf80777d7382d3a1 | |
parent | b53e5cf1af276d8e3ba2e1ed8bff7bf0e4d3ecf3 (diff) | |
download | emacs.d-c1c0e1d0665cb47bcdfbc41a5a65dfcbdca0e0fe.tar.gz |
Remove (most of) magit background highlighting
-rw-r--r-- | lisp/init-appearance.el | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/lisp/init-appearance.el b/lisp/init-appearance.el index a5ed0fd..ad153ea 100644 --- a/lisp/init-appearance.el +++ b/lisp/init-appearance.el @@ -43,6 +43,18 @@ '(gnus-cite-2 ((t (:inherit font-lock-string-face)))) '(gnus-header-name ((t (:inherit font-lock-constant-face)))) '(gnus-header-content ((t (:inherit default)))) + '(magit-section-highlight ((t (:background "white")))) + '(magit-diff-hunk-heading-highlight ((t (:foreground "gray30" :background "grey80")))) + '(magit-diff-hunk-heading ((t (:foreground "gray30" :background "grey90")))) + '(magit-diff-added-highlight ((t (:foreground "DarkGreen" :background "grey98")))) + '(magit-diff-added ((t (:foreground "DarkGreen" :background "grey98")))) + '(magit-diff-removed-highlight ((t (:foreground "#aa2222" :background "grey98")))) + '(magit-diff-removed ((t (:foreground "#aa2222" :background "grey98")))) + '(magit-diff-context-highlight ((t (:foreground "grey50" :background "grey98")))) + '(magit-diff-context ((t (:foreground "grey50" :background "grey98")))) + '(diff-added ((t (:foreground "DarkGreen" :background "grey98")))) + '(diff-removed ((t (:foreground "#aa2222" :background "grey98")))) + '(diff-context ((t (:foreground "grey50" :background "grey98")))) '(term-color-black ((t (:inherit default)))) '(term-color-red ((t (:inherit font-lock-string-face)))) '(term-color-green ((t (:foreground "#3cb371")))) |