solarized-emacs

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

commit 3152d9a1bdee7d8c76b440d54e4be0395063eb0e
parent 2bd913e8e55d4dfb6043cbc18188c70c4db3051f
Author: Vitalie Spinu <spinuvit@gmail.com>
Date:   Fri, 21 Sep 2012 16:22:46 +0200

Remove red color from rainbow-delimiters and rearrange colors in a cyclical order

Solved problems:

  -- Red is too striking and leads to unnecessary distraction. It was placed
right in the middle of the spectrum.

  -- Red and orange where in immediate succession which made them difficult to
distinguish.

  -- Order wasn't cyclical, but rather random.

New order is [blue, orange, green, yellow],  and not a real rainbow [blue,
green, orange, yellow], because it is easier to distinguish the sequential
levels this way.

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

diff --git a/solarized.el b/solarized.el @@ -595,15 +595,15 @@ `(rainbow-delimiters-depth-1-face ((,class (:foreground ,cyan)))) `(rainbow-delimiters-depth-2-face ((,class (:foreground ,yellow)))) `(rainbow-delimiters-depth-3-face ((,class (:foreground ,blue)))) - `(rainbow-delimiters-depth-4-face ((,class (:foreground ,red)))) - `(rainbow-delimiters-depth-5-face ((,class (:foreground ,orange)))) - `(rainbow-delimiters-depth-6-face ((,class (:foreground ,blue)))) - `(rainbow-delimiters-depth-7-face ((,class (:foreground ,green)))) - `(rainbow-delimiters-depth-8-face ((,class (:foreground ,red)))) - `(rainbow-delimiters-depth-9-face ((,class (:foreground ,yellow)))) - `(rainbow-delimiters-depth-10-face ((,class (:foreground ,green)))) + `(rainbow-delimiters-depth-4-face ((,class (:foreground ,orange)))) + `(rainbow-delimiters-depth-5-face ((,class (:foreground ,green)))) + `(rainbow-delimiters-depth-6-face ((,class (:foreground ,yellow)))) + `(rainbow-delimiters-depth-7-face ((,class (:foreground ,blue)))) + `(rainbow-delimiters-depth-8-face ((,class (:foreground ,orange)))) + `(rainbow-delimiters-depth-9-face ((,class (:foreground ,green)))) + `(rainbow-delimiters-depth-10-face ((,class (:foreground ,yellow)))) `(rainbow-delimiters-depth-11-face ((,class (:foreground ,blue)))) - `(rainbow-delimiters-depth-12-face ((,class (:foreground ,red)))) + `(rainbow-delimiters-depth-12-face ((,class (:foreground ,orange)))) `(rainbow-delimiters-unmatched-face ((,class (:foreground ,solarized-fg :background ,solarized-bg :inverse-video t))))