minus-squareorzechod@alien.topBtoEmacs@communick.news•Eat Background ColorlinkfedilinkEnglisharrow-up1·1 year agoit is possible! add a lambda to eat-mode-hook which calls face-remap-add-relative for default and, optionally, fringe faces. here’s an example taken from my own dotfiles: (add-hook 'eat-mode-hook (lambda () (face-remap-add-relative 'default :foreground "#ffffff" :background "#000000") (face-remap-add-relative 'fringe :foreground "#ffffff" :background "#000000"))) and here’s what it looks like in practice: https://imgur.com/a/9gPCio5 linkfedilink
it is possible! add a lambda to
eat-mode-hook
which callsface-remap-add-relative
fordefault
and, optionally,fringe
faces. here’s an example taken from my own dotfiles:(add-hook 'eat-mode-hook (lambda () (face-remap-add-relative 'default :foreground "#ffffff" :background "#000000") (face-remap-add-relative 'fringe :foreground "#ffffff" :background "#000000")))
and here’s what it looks like in practice: https://imgur.com/a/9gPCio5