solarized-emacs

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

commit f56184c9bddb2fabb4634cc6daa7d5036051a4e0
parent b9892fcf55627d6ce2668393443115bf9346c903
Author: Thomas Frössman <thomasf@jossystem.se>
Date:   Sat, 22 Sep 2012 23:26:19 +0200

added faces for cua and highlight changes modes.

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

diff --git a/solarized.el b/solarized.el @@ -137,7 +137,6 @@ `(lazy-highlight ((,class (:foreground ,solarized-emph :background ,solarized-hl :bold t)))) `(escape-glyph ((,class (:foreground ,violet)))) - ;; compilation `(compilation-column-face ((,class (:foreground ,yellow)))) `(compilation-enter-directory-face ((,class (:foreground ,green)))) @@ -151,6 +150,12 @@ `(compilation-message-face ((,class (:foreground ,blue)))) `(compilation-warning-face ((,class (:foreground ,yellow :weight bold :underline t)))) + ;; cua + `(cua-global-mark ((,class (:background ,yellow :foreground ,solarized-bg)))) + `(cua-rectangle ((,class (:inherit region :background ,magenta :foreground ,solarized-bg)))) + `(cua-rectangle-noselect ((,class (:inherit region :background ,solarized-hl + :foreground ,solarized-comments)))) + ;; diary `(diary ((,class (:foreground ,yellow)))) @@ -408,6 +413,10 @@ `(hi-red-b ((,class (:foreground ,red :weight bold)))) `(hi-black-hb ((,class (:foreground ,solarized-emph :background ,solarized-bg :weight bold)))) + ;; highlight-changes + `(highlight-changes ((,class (:foreground ,orange)))) + `(highlight-changes-delete ((,class (:foreground ,red :underline t)))) + ;; hl-line-mode `(hl-line-face ((,class (:background ,solarized-bg)))) @@ -804,6 +813,10 @@ ;; fill-column-indicator `(fci-rule-color ,solarized-hl) + ;; highlight-changes + `(highlight-changes-colors '(,magenta ,violet)) + + ;; highlight-tail `(highlight-tail-colors '((,solarized-hl . 0)(,green-lc . 20)(,cyan-lc . 30)(,blue-lc . 50) (,yellow-lc . 60)(,orange-lc . 70)(,magenta-lc . 85)(,solarized-hl . 100))))