DIY Make the fringe invisible or another color
This is one of our practical examples to override the semantic colors of the Modus themes (Stylistic variants using palette overrides). Here we show how to make the fringe invisible or how to assign to it a different color. The “fringe” is a small area to the right and left side of the Emacs window which shows indicators such as for truncation or continuation lines.
emacs-lisp
;; Make the fringe invisible
(setq modus-themes-common-palette-overrides
'((fringe unspecified)))
;; Make the fringe more intense
(setq modus-themes-common-palette-overrides
'((fringe bg-active)))
;; Make the fringe colorful, but nuanced
(setq modus-themes-common-palette-overrides
'((fringe bg-blue-nuanced)))Reload the theme for changes to take effect.