[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: dark images on a dark bad
- From: Katsumi Yamaoka <yamaoka@xxxxxxx>
- Date: Tue, 15 Jul 2008 09:14:54 +0900
- X-ml-name: emacs-w3m
- X-mail-count: 10291
- References: <87abgki82w.fsf@xxxxxxxxxxx>
>>>>> In [emacs-w3m : No.10289] jidanni@xxxxxxxxxxx wrote:
> Using
> $ cat .Xresources
> Emacs*Background: DarkSlateGray
> Emacs*Foreground: Wheat
> Browsing http://en.wikipedia.org/wiki/Earthing_system is difficult, as
> the images end up being dark lines on dark background. One needs to
> use emacs --reverse-video to see them.
> There should be a command that can add a white etc. background to all
> images on the page, or some other remedy.
Aren't the commands `set-background-color' and `set-foreground-color'
enough for you?
M-x set-background-color RET White RET
Otherwise:
(defun my-set-frame-color ()
(interactive)
(set-background-color "White")
(set-foreground-color "Black"))
Those commands work per frame.