commit d91a97b97016b2da8e5920f4b77b15f4284ec254
parent 7c4cb8ad1801b3d2ff6420f6c84109a5eb57e50d
Author: Jorge Israel Peña <jorge.israel.p@gmail.com>
Date: Fri, 25 Aug 2017 12:39:34 -0700
use light-class/dark-class variables
Note that unlike the `class` variables, these specs didn't contain the
`(min-colors 89)` element. I assumed this was unintentional, but if not,
ignore this commit.
Diffstat:
1 file changed, 6 insertions(+), 6 deletions(-)
diff --git a/solarized.el b/solarized.el
@@ -616,19 +616,19 @@ customize the resulting theme."
`(diff-changed ((,class (:foreground ,blue))))
`(diff-removed ((,class (:foreground ,red))))
`(diff-refine-added
- ((((class color) (background light))
+ ((,light-class
(:background ,(solarized-color-blend "#ddffdd" green 0.7)))
- (((class color) (background dark))
+ (,dark-class
(:background ,(solarized-color-blend "#446644" green 0.7)))))
`(diff-refine-changed
- ((((class color) (background light))
+ ((,light-class
(:background ,(solarized-color-blend "#ddddff" blue 0.7)))
- (((class color) (background dark))
+ (,dark-class
(:background ,(solarized-color-blend "#444466" blue 0.7)))))
`(diff-refine-removed
- ((((class color) (background light))
+ ((,light-class
(:background ,(solarized-color-blend "#ffdddd" red 0.7)))
- (((class color) (background dark))
+ (,dark-class
(:background ,(solarized-color-blend "#664444" red 0.7)))))
`(diff-header ((,class (:background ,base03))))
`(diff-file-header