Skip to content

Instantly share code, notes, and snippets.

@suzuki
Created August 12, 2013 23:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save suzuki/6216344 to your computer and use it in GitHub Desktop.
Save suzuki/6216344 to your computer and use it in GitHub Desktop.
face color for magit
;; 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