Variable: highlight-changes-colors

highlight-changes-colors is a customizable variable defined in hilit-chg.el.gz.

Value

("yellow" "magenta" "blue" "maroon" "firebrick" "green4" "DarkOrchid")

Documentation

Colors used by highlight-changes-rotate-faces.

The newest rotated change will be displayed in the first element of this list, the next older will be in the second element etc.

This list is used if highlight-changes-face-list is nil, otherwise that variable overrides this list. If you only care about foreground colors then use this, if you want fancier faces then set highlight-changes-face-list.

Source Code

;; Defined in /usr/src/emacs/lisp/hilit-chg.el.gz
;; A (not very good) default list of colors to rotate through.
(defcustom highlight-changes-colors
  (if (eq (frame-parameter nil 'background-mode) 'light)
      ;; defaults for light background:
      '("magenta" "blue" "darkgreen" "chocolate" "sienna4" "NavyBlue")
      ;; defaults for dark background:
    '("yellow" "magenta" "blue" "maroon" "firebrick" "green4" "DarkOrchid"))
  "Colors used by `highlight-changes-rotate-faces'.
The newest rotated change will be displayed in the first element of this list,
the next older will be in the second element etc.

This list is used if `highlight-changes-face-list' is nil, otherwise that
variable overrides this list.  If you only care about foreground
colors then use this, if you want fancier faces then set
`highlight-changes-face-list'."
  :type '(repeat color))