]> git.eshelyaron.com Git - emacs.git/commitdiff
* lisp/faces.el (help-argument-name): Use grey background, not foreground
authorJuri Linkov <juri@linkov.net>
Mon, 8 Mar 2021 17:42:44 +0000 (19:42 +0200)
committerJuri Linkov <juri@linkov.net>
Mon, 8 Mar 2021 17:42:44 +0000 (19:42 +0200)
https://lists.gnu.org/archive/html/emacs-devel/2021-03/msg00402.html

lisp/faces.el

index b2d47edca0f78f668ff5ca6049212fb8ce11dabc..1e668a43f43621880c2f3a9b2035c97bdfe863f1 100644 (file)
@@ -2816,11 +2816,11 @@ Note: Other faces cannot inherit from the cursor face."
   :group 'help)
 
 (defface help-key-binding
-  '((((class color) (min-colors 88) (background light)) :foreground "ForestGreen")
-    (((class color) (min-colors 88) (background dark)) :foreground "#44bc44")
-    (((class color grayscale) (background light)) :foreground "grey15")
-    (((class color grayscale) (background dark)) :foreground "grey85")
-    (t :foreground "ForestGreen"))
+  '((((class color) (min-colors 88) (background light)) :background "grey90")
+    (((class color) (min-colors 88) (background dark)) :background "grey25")
+    (((class color grayscale) (background light)) :background "grey90")
+    (((class color grayscale) (background dark)) :background "grey25")
+    (t :background "grey90"))
   "Face for keybindings in *Help* buffers.
 
 This face is added by `substitute-command-keys', which see.