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

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

[elpa] master 9d693ec 158/348: Use a lighter color for ivy-remote in dar


From: Oleh Krehel
Subject: [elpa] master 9d693ec 158/348: Use a lighter color for ivy-remote in dark themes
Date: Sat, 8 Apr 2017 11:03:47 -0400 (EDT)

branch: master
commit 9d693ec9bfae584728f34c3dc15f1bce0af9ba2b
Author: Wilfred Hughes <address@hidden>
Commit: GitHub <address@hidden>

    Use a lighter color for ivy-remote in dark themes
    
    Previously, we always used a dark blue, which isn't very visible on dark 
themes.
---
 ivy.el | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/ivy.el b/ivy.el
index a48d63a..3c75de3 100644
--- a/ivy.el
+++ b/ivy.el
@@ -102,7 +102,10 @@
   "Face used by Ivy for highlighting modified file visiting buffers.")
 
 (defface ivy-remote
-  '((t :foreground "#110099"))
+  '((((class color) (background light))
+     :foreground "#110099")
+    (((class color) (background dark))
+     :foreground "#7B6BFF"))
   "Face used by Ivy for highlighting remotes in the alternatives.")
 
 (defface ivy-virtual



reply via email to

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