Skip to content

Commit

Permalink
Font-lock faces improvements
Browse files Browse the repository at this point in the history
* 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.
  • Loading branch information
Bozhidar Batsov committed Jul 14, 2013
1 parent 7ffdf9f commit 204fefd
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions solarized.el
Expand Up @@ -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))))
Expand Down

0 comments on commit 204fefd

Please sign in to comment.