solarized-emacs

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

commit 204fefd30b4bdd6226e3098978593d469781e951
parent 7ffdf9f794f949221e3e2ead13f6bf672f9bce9a
Author: Bozhidar Batsov <bozhidar@tradeo.com>
Date:   Sun, 14 Jul 2013 22:15:05 +0300

Font-lock faces improvements

* don't use italics for the core font-lock faces
* use a more subtle face for built-ins
* display in bold the language keywords

This fixes #48.

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

diff --git a/solarized.el b/solarized.el @@ -273,14 +273,14 @@ customize the resulting theme." `(vertical-border ((,class (:foreground ,solarized-fg)))) ;; font lock - `(font-lock-builtin-face ((,class (:foreground ,blue :slant italic)))) + `(font-lock-builtin-face ((,class (:foreground ,solarized-fg :weigth bold)))) `(font-lock-comment-delimiter-face - ((,class (:foreground ,solarized-comments :slant italic)))) + ((,class (:foreground ,solarized-comments)))) `(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-face ((,class (:foreground ,cyan)))) `(font-lock-function-name-face ((,class (:foreground ,blue)))) - `(font-lock-keyword-face ((,class (:foreground ,green :weight normal)))) + `(font-lock-keyword-face ((,class (:foreground ,green :weight bold)))) `(font-lock-negation-char-face ((,class (:foreground ,yellow :weight bold)))) `(font-lock-preprocessor-face ((,class (:foreground ,blue)))) `(font-lock-regexp-grouping-construct ((,class (:foreground ,yellow :weight bold))))