Next: Q3.2.4, Previous: Q3.2.2, Up: Customisation
How can I set the background/foreground colors when highlighting a region?
You can change the face zmacs-region
either in your
.Xresources:
Emacs.zmacs-region.attributeForeground: firebrick Emacs.zmacs-region.attributeBackground: lightseagreen
or in your init.el:
(set-face-background 'zmacs-region "red") (set-face-foreground 'zmacs-region "yellow")