branch: elpa/apropospriate-theme
commit 713f5dd7609f86e19d54a40fc7c0fcf1bbff6773
Author: justin talbott <[email protected]>
Commit: justin talbott <[email protected]>

    increase contrast of base inverted colors
    
    this makes the region more clear and the current-line less bright when
    using `hl-line-mode` in the dark variant.
    
    closes #7
---
 apropospriate.el | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/apropospriate.el b/apropospriate.el
index 1dc897b..d86df1e 100644
--- a/apropospriate.el
+++ b/apropospriate.el
@@ -66,14 +66,14 @@
                        (color-lighten-name base00 10)
                      (color-darken-name base00 10)))
          (base00+1 (if (eq variant 'light)
-                       (color-darken-name base00 3)
-                     (color-lighten-name base00 3)))
+                       (color-darken-name base00 2)
+                     (color-lighten-name base00 2)))
          (base00+2 (if (eq variant 'light)
-                       (color-darken-name base00 5)
-                     (color-lighten-name base00 5)))
+                       (color-darken-name base00 8)
+                     (color-lighten-name base00 8)))
          (base00+3 (if (eq variant 'light)
-                       (color-darken-name base00 10)
-                     (color-lighten-name base00 10)))
+                       (color-darken-name base00 12)
+                     (color-lighten-name base00 12)))
          (light-emphasis (if (eq variant 'light) base00+3 base00-3))
          (light-emphasis-1 (if (eq variant 'light) base00+2 base00-2))
          (light-emphasis-2 (if (eq variant 'light) base00+1 base00-1))

Reply via email to