emacs-长线强光颜色太暗

emacs-长线强光颜色太暗,emacs,whitespace,Emacs,Whitespace,我使用下面的代码突出显示长度超过78的字符 (setq whitespace-style '(face empty tabs lines-tail trailing)) (setq whitespace-line-column 78) (global-whitespace-mode 1) 它的作品很好,但背景颜色太暗! 如何更改突出显示字符的背景色?只需自定义空白行面。如下所示: (setq whitespace-style '(face empty tabs lines-tail trai

我使用下面的代码突出显示长度超过78的字符

(setq whitespace-style '(face empty tabs lines-tail trailing))
(setq whitespace-line-column 78)
(global-whitespace-mode 1)
它的作品很好,但背景颜色太暗!


如何更改突出显示字符的背景色?

只需自定义
空白行
面。

如下所示:

(setq whitespace-style '(face empty tabs lines-tail trailing))
(setq whitespace-line-column 78)
(global-whitespace-mode 1)

(custom-set-faces
  '(whitespace-line ((t (:background "#eff0f1"))))