solarized-emacs

a fork of Bozhidar Batsov's solarized-emacs
git clone https://git.trogloxene.org/solarized-emacs.git
Log | Files | Refs | README

commit d176431f79cae249d1d35cd399aa49546a9d8e9f
parent 6855049c84d03682c5f0f957e4330610a3c8f3e8
Author: vonavi <ivvl82@gmail.com>
Date:   Mon, 29 Sep 2014 19:22:36 +0400

Fix diff-refine-* colors for highlighting Magit hunks.

Diffstat:
Msolarized.el | 9++++++---
1 file changed, 6 insertions(+), 3 deletions(-)

diff --git a/solarized.el b/solarized.el @@ -632,9 +632,12 @@ customize the resulting theme." `(diff-header ((,class (:background ,base03)))) `(diff-file-header ((,class (:background ,base03 :foreground ,base0 :weight bold)))) - `(diff-refine-added ((,class :foreground ,base03 :background ,green))) - `(diff-refine-change ((,class :foreground ,base03 :background ,blue))) - `(diff-refine-removed ((,class (:foreground ,base03 :background ,red)))) + `(diff-refine-added ((,class (:foreground ,green :background ,base03 + :inverse-video t)))) + `(diff-refine-change ((,class (:foreground ,blue :background ,base03 + :inverse-video t)))) + `(diff-refine-removed ((,class (:foreground ,red :background ,base03 + :inverse-video t)))) ;; ediff `(ediff-fine-diff-A ((,class (:background ,orange-lc))))