Skip to content

Commit

Permalink
ivy: fix removal of blending
Browse files Browse the repository at this point in the history
  • Loading branch information
syl20bnr committed Jan 16, 2016
1 parent 8198b33 commit 9b77891
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions layers/+completion/spacemacs-ivy/packages.el
Original file line number Diff line number Diff line change
Expand Up @@ -244,14 +244,14 @@ Helm hack."
"bb" 'ivy-switch-buffer)
(setq ivy-height 15
ivy-re-builders-alist '((t . ivy--regex-ignore-order))
colir-compose-method 'colir-compose-alpha)
colir-compose-method (lambda (c1 c2) c1))
(with-eval-after-load 'colir
;; override colir-blend to remove bad rendering with spacemacs-dark
;; theme
(defun colir-blend (c1 c2)
"Blend the two colors C1 and C2 using `colir-compose-method'.
C1 and C2 are triples of floats in [0.0 1.0] range."
(apply #'color-rgb-to-hex (cl-mapcar 'colir-compose-method c1 c2))))
(apply #'color-rgb-to-hex (cl-mapcar colir-compose-method c1 c2))))
(with-eval-after-load 'recentf
;; merge recentf and bookmarks into buffer switching. If we set this
;; before recentf loads, then ivy-mode loads recentf for us,
Expand Down

0 comments on commit 9b77891

Please sign in to comment.