solarized-emacs

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

commit a38bbdb90caca59acbb9fb904814fea2286e2cc0
parent 76bb6ad9f06cb22126769f5022551e2baba97c4d
Author: Thomas Frössman <thomasf@jossystem.se>
Date:   Sun, 20 Apr 2014 17:18:43 +0200

Calculate vc-colors gradient

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

diff --git a/solarized.el b/solarized.el @@ -1892,22 +1892,22 @@ customize the resulting theme." ;; vc `(vc-annotate-color-map '((20 . ,red) - (40 . "#CF4F1F") - (60 . "#C26C0F") + (40 . ,(solarized-color-blend yellow red (/ 2.0 4))) + (60 . ,(solarized-color-blend yellow red (/ 3.0 4))) (80 . ,yellow) - (100 . "#AB8C00") - (120 . "#A18F00") - (140 . "#989200") - (160 . "#8E9500") + (100 . ,(solarized-color-blend green yellow (/ 2.0 6))) + (120 . ,(solarized-color-blend green yellow (/ 3.0 6))) + (140 . ,(solarized-color-blend green yellow (/ 4.0 6))) + (160 . ,(solarized-color-blend green yellow (/ 5.0 6))) (180 . ,green) - (200 . "#729A1E") - (220 . "#609C3C") - (240 . "#4E9D5B") - (260 . "#3C9F79") + (200 . ,(solarized-color-blend cyan green (/ 2.0 6))) + (220 . ,(solarized-color-blend cyan green (/ 3.0 6))) + (240 . ,(solarized-color-blend cyan green (/ 4.0 6))) + (260 . ,(solarized-color-blend cyan green (/ 5.0 6))) (280 . ,cyan) - (300 . "#299BA6") - (320 . "#2896B5") - (340 . "#2790C3") + (300 . ,(solarized-color-blend blue cyan (/ 2.0 5))) + (320 . ,(solarized-color-blend blue cyan (/ 3.0 5))) + (340 . ,(solarized-color-blend blue cyan (/ 4.0 5))) (360 . ,blue))) `(vc-annotate-very-old-color nil) `(vc-annotate-background nil)