solarized-emacs

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

commit 60db12bc9b60fb8e7d1a3ee7a432c4bdeb2d52c7
parent 609bf907aa3914e633392d468aed6e1275eb17b2
Author: Thomas Frössman <thomasf@jossystem.se>
Date:   Thu, 30 Oct 2014 18:52:08 +0100

Merge pull request #131 from vonavi/master

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))))