Have got emacs running on a dark background. Would like to change the background to orange colour when I am using Emacs Help. Can this be done?
Asked
Active
Viewed 29 times
help-mode-hook
and attach a function containing a call toface-remap-add-relative
; e.g.,(add-hook 'help-mode-hook (lambda () (face-remap-add-relative ...)))
. The face at issue is likelydefault
and the spec is:background
. Does this answer your question? How to modify-face for a specific buffer? – lawlist Jun 13 '22 at 23:24