我使用volatitle-highlights-mode(VHL)来突出显示最后一个编辑区域。但是 VHL 的背景颜色对于solarized-theme来说太浅了。所以我想改变 VHL 的背景颜色。
我从 VHL 中找到了片段,如下所示:
(defface vhl/default-face
(cond
((or vhl/.xemacsp
(vhl/.face-inheritance-possible-p))
'((((class color) (background light))
(:background "yellow1"))
(((class color) (background dark))
(:background "SkyBlue4"))
(t :inverse-video t)))
(t
'((t
:inherit secondary-selection
))))
"Face used for volatile highlights."
:group 'volatile-highlights)
此片段指定 VHL 背景的颜色,那么如何在我的 .emacs.d 中自定义背景颜色以覆盖默认的 VHL 背景颜色。
欢迎摘录!谢谢。