[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[nongnu] elpa/helm de6775100e 3/4: Fix helm-dim-prompt-face
From: |
ELPA Syncer |
Subject: |
[nongnu] elpa/helm de6775100e 3/4: Fix helm-dim-prompt-face |
Date: |
Mon, 7 Apr 2025 13:01:02 -0400 (EDT) |
branch: elpa/helm
commit de6775100ebcbc6ba394dfcf5774f90dbf7eb3c6
Author: Thierry Volpiatto <thievol@posteo.net>
Commit: Thierry Volpiatto <thievol@posteo.net>
Fix helm-dim-prompt-face
---
helm-core.el | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/helm-core.el b/helm-core.el
index eb954bd3c1..710ce789f9 100644
--- a/helm-core.el
+++ b/helm-core.el
@@ -1283,7 +1283,9 @@ Allow specifying the height of this line."
:group 'helm-faces)
(defface helm-dim-prompt
- `((t :inherit shadow))
+ `((((class color) (min-colors 88) (background dark))
+ :foreground "DimGray")
+ (t :inherit shadow))
"Face used for shadowing prompt while updating."
:group 'helm-faces)