diff --git a/lisp/faces.el b/lisp/faces.el index b2d47edca0..0f956b0cde 100644 --- a/lisp/faces.el +++ b/lisp/faces.el @@ -2816,11 +2816,11 @@ help-argument-name :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 "grey85") + (((class color) (min-colors 88) (background dark)) :background "grey25") + (((class color grayscale) (background light)) :background "grey85") + (((class color grayscale) (background dark)) :background "grey25") + (t :background "grey85")) "Face for keybindings in *Help* buffers. This face is added by `substitute-command-keys', which see.