branch: elpa/spacemacs-theme
commit 1c3080cdab1d75c6fc1a872028a7040cdfe2a397
Author: nashamri <[email protected]>
Commit: nashamri <[email protected]>
Fix (#54) avy highlighting in terminal
---
spacemacs-common.el | 8 +++++++-
1 file changed, 7 insertions(+), 1 deletion(-)
diff --git a/spacemacs-common.el b/spacemacs-common.el
index 97b8b39279..b6ff182e27 100644
--- a/spacemacs-common.el
+++ b/spacemacs-common.el
@@ -127,7 +127,7 @@
(red-bg (if (eq variant 'dark) (if (true-color-p) "#3c2a2c"
"#262626") (if (true-color-p) "#faede4" "#ffffff")))
(red-bg-s (if (eq variant 'dark) (if (true-color-p) "#512e31"
"#262626") (if (true-color-p) "#eed9d2" "#ffffff")))
(blue (if (eq variant 'dark) (if (true-color-p) "#4f97d7"
"#268bd2") (if (true-color-p) "#3a81c3" "#268bd2")))
- (blue-bg (if (eq variant 'dark) (if (true-color-p) "#293239"
"#262626") (if (true-color-p) "#edf1ed" "#ffffff")))
+ (blue-bg (if (eq variant 'dark) (if (true-color-p) "#293239"
"#262626") (if (true-color-p) "#edf1ed" "#d7d7ff")))
(magenta (if (eq variant 'dark) (if (true-color-p) "#a31db1"
"#af00df") (if (true-color-p) "#a31db1" "#800080")))
(yellow (if (eq variant 'dark) (if (true-color-p) "#b1951d"
"#875f00") (if (true-color-p) "#b1951d" "#875f00")))
(yellow-bg (if (eq variant 'dark) (if (true-color-p) "#32322c"
"#262626") (if (true-color-p) "#f6f1e1" "#ffffff")))
@@ -188,6 +188,12 @@
;;;;; auto-complete
`(ac-completion-face ((,class (:background ,ttip-bg :foreground ,ttip))))
+;;;;; avy
+ `(avy-lead-face ((,class (:background ,blue-bg :foreground ,magenta))))
+ `(avy-lead-face-0 ((,class (:background ,blue-bg :foreground ,blue))))
+ `(avy-lead-face-1 ((,class (:background ,blue-bg :foreground ,magenta))))
+ `(avy-lead-face-2 ((,class (:background ,blue-bg :foreground ,blue))))
+
;;;;; cider
`(cider-enlightened ((,class (:background nil :box (:color ,yellow
:line-width -1 :style nil) :foreground ,yellow))))
`(cider-enlightened-local ((,class (:foreground ,yellow))))