branch: elpa/apropospriate-theme
commit b7d051af253f6c792631dc6291fe75bdb581bfed
Author: justin talbott <[email protected]>
Commit: justin talbott <[email protected]>
fix latest js2-mode face names
---
apropospriate.el | 26 ++++++++++++++------------
1 file changed, 14 insertions(+), 12 deletions(-)
diff --git a/apropospriate.el b/apropospriate.el
index 91f9e4b..d3456f9 100644
--- a/apropospriate.el
+++ b/apropospriate.el
@@ -454,23 +454,25 @@
(markdown-url-face :inherit link)
(markdown-link-face :foreground ,blue :underline t)
- (js2-warning-face :underline ,orange)
- (js2-error-face :foreground nil :underline ,red)
- (js2-external-variable-face :foreground ,purple)
- (js2-function-param-face :foreground ,blue)
- (js2-instance-member-face :foreground ,blue)
- (js2-private-function-call-face :foreground ,red)
- (js3-warning-face :underline ,orange)
- (js3-error-face :inherit js2-error-face)
- (js3-external-variable-face :inherit js2-external-variable-face)
- (js3-function-param-face :foreground ,blue)
+ (js2-warning :underline ,orange)
+ (js2-error :foreground nil :underline ,red)
+ (js2-external-variable :foreground ,yellow-1)
+ (js2-function-param :foreground ,indigo)
+ (js2-instance-member :foreground ,blue)
+ (js2-private-function-call :foreground ,pink)
+
+ (js3-warning-face :inherit js2-warning)
+ (js3-error-face :inherit js2-error)
+ (js3-external-variable-face :inherit js2-external-variable)
+ (js3-function-param-face :inherit js2-function-param)
+ (js3-instance-member-face :inherit js2-instance-member)
+ (js3-private-function-call-face :inherit
js2-private-function-call)
+
(js3-jsdoc-tag-face :foreground ,orange)
(js3-jsdoc-type-face :foreground ,cyan)
(js3-jsdoc-value-face :foreground ,orange-1)
(js3-jsdoc-html-tag-name-face :foreground ,blue)
(js3-jsdoc-html-tag-delimiter-face :foreground ,green)
- (js3-instance-member-face :foreground ,blue)
- (js3-private-function-call-face :inherit
js2-external-variable-face)
(erb-face :background ,base00+1 :foreground ,base03)
(erb-delim-face :background ,base00+1 :foreground ,red)