sellout / emacs-color-theme-solarized

Emacs highlighting using Ethan Schoonover’s Solarized color scheme
http://ethanschoonover.com/solarized
MIT License
1.15k stars 201 forks source link

Support whitespace-newline face #178

Closed geraldus closed 8 years ago

geraldus commented 8 years ago

Face whitespace-newline is not defined in current version, see:

https://github.com/sellout/emacs-color-theme-solarized/blob/d7f9165adf02c01ea67a2ecc31df56c7495199e6/solarized-definitions.el#L695-L704

This gives following rendering:

2016-01-18 15 54 51

To have proper colouring according to screenshots from main Solarized repository I have to customize this face to inherit properties from whitespace-space face:

(custom-set-faces
 '(whitespace-newline ((t (:inherit whitespace-space)))))

2016-01-18 15 55 15


geraldus commented 8 years ago

Fixed by #181