From: Juri Linkov Date: Mon, 8 Mar 2021 17:42:44 +0000 (+0200) Subject: * lisp/faces.el (help-argument-name): Use grey background, not foreground X-Git-Tag: emacs-28.0.90~3361 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=7ec870c5383d08b965aae898bbdc206cb9056638;p=emacs.git * lisp/faces.el (help-argument-name): Use grey background, not foreground https://lists.gnu.org/archive/html/emacs-devel/2021-03/msg00402.html --- diff --git a/lisp/faces.el b/lisp/faces.el index b2d47edca0f..1e668a43f43 100644 --- a/lisp/faces.el +++ b/lisp/faces.el @@ -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.