diff options
author | Kyle Meyer <kyle@kyleam.com> | 2019-08-10 22:52:21 -0400 |
---|---|---|
committer | Kyle Meyer <kyle@kyleam.com> | 2019-08-10 22:55:14 -0400 |
commit | c27dda02f4addf9a674015e822c2055122daa120 (patch) | |
tree | ecb6dd0f6ff20e93d629c24bf49999b76ede2daa | |
parent | 1534e0927589f61ecc910846d991a567d61e7498 (diff) | |
download | emacs.d-c27dda02f4addf9a674015e822c2055122daa120.tar.gz |
theme: Customize a few more Magit faces
-rw-r--r-- | lisp/km-theme.el | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/lisp/km-theme.el b/lisp/km-theme.el index 9dc4319..1a52faf 100644 --- a/lisp/km-theme.el +++ b/lisp/km-theme.el @@ -81,7 +81,12 @@ `(magit-diff-hunk-heading-highlight ((t (:foreground ,fg-light :background "grey80")))) `(magit-diff-removed ((t (:foreground ,diff-removed :background ,bg-mid)))) `(magit-diff-removed-highlight ((t (:foreground ,diff-removed :background ,bg-mid)))) + `(magit-diffstat-added ((t (:foreground ,diff-added)))) + `(magit-diffstat-removed ((t (:foreground ,diff-removed)))) + '(magit-hash ((t (:foreground "#8a939a")))) '(magit-popup-argument ((t (:inherit font-lock-string-face)))) + `(magit-process-ng ((t (:foreground ,diff-removed)))) + `(magit-process-ok ((t (:foreground ,diff-added)))) '(magit-reflog-amend ((t (:inherit font-lock-function-name-face)))) '(magit-reflog-checkout ((t (:inherit font-lock-builtin-face)))) '(magit-reflog-commit ((t (:inherit default)))) |