Function: eww-toggle-colors

eww-toggle-colors is an interactive and byte-compiled function defined in eww.el.gz.

Signature

(eww-toggle-colors)

Documentation

Toggle whether to use HTML-specified colors or not.

Probably introduced at or before Emacs version 26.1.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/net/eww.el.gz
(defun eww-toggle-colors ()
  "Toggle whether to use HTML-specified colors or not."
  (interactive nil eww-mode)
  (message "Colors are now %s"
	   (if (setq shr-use-colors (not shr-use-colors))
	       "on"
	     "off"))
  (eww-reload))