Created
August 12, 2013 23:25
-
-
Save suzuki/6216344 to your computer and use it in GitHub Desktop.
face color for magit
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;; magit.el | |
(require 'magit) | |
(eval-after-load 'magit | |
'(progn | |
(set-face-bold-p 'magit-item-highlight nil) | |
(set-face-background 'magit-item-highlight nil) | |
(set-face-foreground 'magit-diff-add "#000000") | |
(set-face-background 'magit-diff-add "#ddffdd") | |
(set-face-foreground 'magit-diff-del "#000000") | |
(set-face-background 'magit-diff-del "#ffdddd") | |
(set-face-foreground 'magit-diff-file-header "#f1f1f1"))) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment