solarized-emacs

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

commit f1783ed938b6a0f35cedc97a703a9c06e4ec7d12
parent fea1ddd3b785b59412d1434425476a77f495249b
Author: Thomas Frössman <thomasf@jossystem.se>
Date:   Fri, 18 May 2012 12:12:03 +0200

Font-lock faces changes

- Added bold/italic to some faces to make them stand out a bit more if available.

- Changed one color: font-lock-warning-face yellow -> red

Diffstat:
Msolarized-theme.el | 10+++++-----
1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/solarized-theme.el b/solarized-theme.el @@ -171,11 +171,11 @@ `(vertical-border ((,class (:foreground ,solarized-fg)))) ;; font lock - `(font-lock-builtin-face ((,class (:foreground ,blue)))) - `(font-lock-comment-face ((,class (:foreground ,solarized-comments)))) + `(font-lock-builtin-face ((,class (:foreground ,blue :slant italic)))) `(font-lock-comment-delimiter-face ((,class (:foreground ,solarized-comments)))) - `(font-lock-constant-face ((,class (:foreground ,blue)))) - `(font-lock-doc-face ((,class (:foreground ,cyan)))) + `(font-lock-comment-face ((,class (:foreground ,solarized-comments)))) + `(font-lock-constant-face ((,class (:foreground ,blue :weight bold)))) + `(font-lock-doc-face ((,class (:foreground ,cyan :slant italic)))) `(font-lock-doc-string-face ((,class (:foreground ,blue)))) `(font-lock-function-name-face ((,class (:foreground ,blue)))) `(font-lock-keyword-face ((,class (:foreground ,green :weight bold)))) @@ -184,7 +184,7 @@ `(font-lock-string-face ((,class (:foreground ,cyan)))) `(font-lock-type-face ((,class (:foreground ,yellow)))) `(font-lock-variable-name-face ((,class (:foreground ,blue)))) - `(font-lock-warning-face ((,class (:foreground ,yellow :weight bold :underline t)))) + `(font-lock-warning-face ((,class (:foreground ,red :weight bold :underline t)))) `(c-annotation-face ((,class (:inherit font-lock-constant-face))))