branch: elpa/monokai-theme
commit a4143fca9c0982e496f5a1d512117e27b2e84f85
Author: Kelvin Smith <[email protected]>
Commit: Kelvin Smith <[email protected]>
Remove italics on type face
https://github.com/oneKelvinSmith/monokai-emacs/issues/30
Previously, the monokai theme applied italics to font-lock-type-face.
I agree that this is not a reasonable default and this behaviour has
been removed. This commit closes #30.
---
monokai-theme.el | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/monokai-theme.el b/monokai-theme.el
index 67e2b02..77a956c 100644
--- a/monokai-theme.el
+++ b/monokai-theme.el
@@ -458,7 +458,7 @@ Also affects 'linum-mode' background."
:foreground ,terminal-monokai-bg))))
`(cua-rectangle
- ((,class (:inherit region
+ ((,class (:inherit region
:background ,magenta
:foreground ,monokai-bg))
(,terminal-class (:inherit region
@@ -850,9 +850,9 @@ Also affects 'linum-mode' background."
`(font-lock-type-face
((,class (:foreground ,blue
- :italic t))
+ :italic nil))
(,terminal-class (:foreground ,terminal-blue
- :italic t))))
+ :italic nil))))
`(font-lock-variable-name-face
((,class (:foreground ,orange))