emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[elpa] externals/vertico 5188e0e: vertico-quick: Add modus colors


From: ELPA Syncer
Subject: [elpa] externals/vertico 5188e0e: vertico-quick: Add modus colors
Date: Sat, 10 Jul 2021 17:57:15 -0400 (EDT)

branch: externals/vertico
commit 5188e0efd20ac902f5eb5981287d83ebb90208c3
Author: Daniel Mendler <mail@daniel-mendler.de>
Commit: Daniel Mendler <mail@daniel-mendler.de>

    vertico-quick: Add modus colors
---
 extensions/vertico-quick.el | 12 ++++++++++--
 1 file changed, 10 insertions(+), 2 deletions(-)

diff --git a/extensions/vertico-quick.el b/extensions/vertico-quick.el
index e75e1fe..6da93e3 100644
--- a/extensions/vertico-quick.el
+++ b/extensions/vertico-quick.el
@@ -35,13 +35,21 @@
 (require 'vertico)
 
 (defface vertico-quick1
-  '((t :weight bold :background "#d5baff" :foreground "black"))
+  '((((class color) (min-colors 88) (background dark))
+     :background "#7042a2" :weight bold :foreground "white")
+    (((class color) (min-colors 88) (background light))
+     :weight bold :background "#d5baff" :foreground "black")
+    (t :background "magenta" :foreground "white"))
   "Face used for the first quick key."
   :group 'vertico
   :group 'faces)
 
 (defface vertico-quick2
-  '((t :weight bold :background "#8ae4f2" :foreground "black"))
+  '((((class color) (min-colors 88) (background dark))
+     :background "#004065" :weight bold :foreground "white")
+    (((class color) (min-colors 88) (background light))
+     :weight bold :background "#8ae4f2" :foreground "black")
+    (t :background "blue" :foreground "white"))
   "Face used for the second quick key."
   :group 'vertico
   :group 'faces)



reply via email to

[Prev in Thread] Current Thread [Next in Thread]