solarized-emacs

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

commit 3de9aca0a8b1cdd2cf7a5c58829b3f14520e76b7
parent 84bf7581a986d0b873440fa6d0d166defcc461f0
Author: Thomas Frössman <thomasf@jossystem.se>
Date:   Tue, 28 Jan 2014 12:11:32 +0100

Change paren match faces

Changed to having just magenta as foreground.

- Magenta is the main temporary highlight face of this theme.
- Solves issue with inverse-video and regions.

Diffstat:
Msolarized.el | 28++++++++++++++--------------
1 file changed, 14 insertions(+), 14 deletions(-)

diff --git a/solarized.el b/solarized.el @@ -1319,30 +1319,30 @@ customize the resulting theme." `(sp-wrap-tag-overlay-face ((,class (:background ,base02)))) `(sp-show-pair-enclosing ((,class (:inherit highlight)))) `(sp-show-pair-match-face - ((,class (:foreground ,cyan :background ,base03 - :weight normal :inverse-video t)))) + ((,class (:background unspecified :foreground ,magenta + :weight normal)))) `(sp-show-pair-mismatch-face - ((,class (:foreground ,red :background ,base03 - :weight normal :inverse-video t)))) + ((,class (:foreground ,base02 :background ,red + :weight normal)))) ;; show-paren `(show-paren-match - ((,class (:foreground ,cyan :background ,base03 - :weight normal :inverse-video t)))) + ((,class (:foreground ,magenta :background unspecified + :weight normal)))) `(show-paren-mismatch - ((,class (:foreground ,red :background ,base03 - :weight normal :inverse-video t)))) + ((,class (:foreground ,base02 :background ,red + :weight normal)))) ;; mic-paren `(paren-face-match - ((,class (:foreground ,cyan :background ,base03 - :weight normal :inverse-video t)))) + ((,class (:foreground ,magenta :background unspecified + :weight normal)))) `(paren-face-mismatch - ((,class (:foreground ,red :background ,base03 - :weight normal :inverse-video t)))) + ((,class (:foreground ,base02 :background ,red + :weight normal)))) `(paren-face-no-match - ((,class (:foreground ,red :background ,base03 - :weight normal :inverse-video t)))) + ((,class (:foreground ,base02 :background ,red + :weight normal)))) ;; SLIME `(slime-repl-inputed-output-face ((,class (:foreground ,red))))