From d59f37c902720d84d1f6604f3697e6e1dc2c5a1f Mon Sep 17 00:00:00 2001 From: Josh de Kock Date: Tue, 7 Jan 2020 08:05:44 +0000 Subject: [PATCH] Add ivy-mode support (#87) Added support for the "ivy-mode" of the "ivy" package [1,2]. It makes use of background to foreground color shading as main accent to highlight matches. [1]: https://github.com/abo-abo/swiper [2]: https://melpa.org/#/ivy Co-Authored-By: Arctic Ice Studio Closes GH-85 --- nord-theme.el | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/nord-theme.el b/nord-theme.el index 6ed11c0..6b0353c 100644 --- a/nord-theme.el +++ b/nord-theme.el @@ -697,7 +697,15 @@ `(org-agenda-date-weekend ((,class (:foreground ,nord9)))) `(org-agenda-date-today ((,class (:foreground ,nord8 :weight bold)))) `(org-agenda-done ((,class (:foreground ,nord14)))) - `(org-verbatim ((,class (:foreground ,nord7)))))) + `(org-verbatim ((,class (:foreground ,nord7)))) + + ;; > ivy-mode + `(ivy-current-match ((,class (:inherit region)))) + `(ivy-minibuffer-match-face-1 ((,class (:inherit default)))) + `(ivy-minibuffer-match-face-2 ((,class (:background ,nord7 :foreground ,nord0)))) + `(ivy-minibuffer-match-face-3 ((,class (:background ,nord8 :foreground ,nord0)))) + `(ivy-minibuffer-match-face-4 ((,class (:background ,nord9 :foreground ,nord0)))) + `(ivy-remote ((,class (:foreground ,nord14)))))) ;;;###autoload (when (and (boundp 'custom-theme-load-path) load-file-name)