From 96f48ebd97c19384f487c8a9c4cf474705ce1e37 Mon Sep 17 00:00:00 2001 From: Alexander Sulfrian Date: Tue, 24 Apr 2012 23:19:57 +0200 Subject: emacs.d/lisp/magit: version bump --- emacs.d/lisp/magit/contrib/magit-classic-theme.el | 57 +++++++++++++++++++++++ 1 file changed, 57 insertions(+) create mode 100644 emacs.d/lisp/magit/contrib/magit-classic-theme.el (limited to 'emacs.d/lisp/magit/contrib/magit-classic-theme.el') diff --git a/emacs.d/lisp/magit/contrib/magit-classic-theme.el b/emacs.d/lisp/magit/contrib/magit-classic-theme.el new file mode 100644 index 0000000..07c1f20 --- /dev/null +++ b/emacs.d/lisp/magit/contrib/magit-classic-theme.el @@ -0,0 +1,57 @@ +(deftheme magit-classic + "Old-style faces of Magit") + +(custom-theme-set-faces + 'magit-classic + + '(magit-header + ((t))) + + '(magit-section-title + ((t + :weight bold + :inherit magit-header))) + + '(magit-branch + ((t + :weight bold + :inherit magit-header))) + + '(magit-diff-file-header + ((t + :inherit magit-header))) + + '(magit-diff-hunk-header + ((t + :slant italic + :inherit magit-header))) + + '(magit-diff-add + ((((class color) (background light)) + :foreground "blue1") + (((class color) (background dark)) + :foreground "white"))) + + '(magit-diff-none + ((t))) + + '(magit-diff-del + ((((class color) (background light)) + :foreground "red") + (((class color) (background dark)) + :foreground "OrangeRed"))) + + '(magit-item-highlight + ((((class color) (background light)) + :background "gray95") + (((class color) (background dark)) + :background "dim gray"))) + + '(magit-item-mark + ((((class color) (background light)) + :foreground "red") + (((class color) (background dark)) + :foreground "orange"))) + ) + +(provide-theme 'magit-classic) \ No newline at end of file -- cgit v1.2.3