Variable: ansi-color-names-vector

ansi-color-names-vector is a customizable variable defined in ansi-color.el.gz.

Value

["black" "red3" "green3" "yellow3" "blue2" "magenta3" "cyan3" "gray90"]

Documentation

Colors used for SGR control sequences determining a color.

This vector holds the colors used for SGR control sequence parameters
30 to 37 (foreground colors) and 40 to 47 (background colors).

This variable is obsolete. To customize the display of colors used by ansi-color, change ansi-color-COLOR, e.g. ansi-color-red. To customize the actual faces used (e.g. to temporarily display SGR control sequences differently), use ansi-color-normal-colors-vector.

This variable was added, or its default value changed, in Emacs 24.4.

Source Code

;; Defined in /usr/src/emacs/lisp/ansi-color.el.gz
(defcustom ansi-color-names-vector
  ["black" "red3" "green3" "yellow3" "blue2" "magenta3" "cyan3" "gray90"]
  "Colors used for SGR control sequences determining a color.
This vector holds the colors used for SGR control sequence parameters
30 to 37 (foreground colors) and 40 to 47 (background colors).

This variable is obsolete.  To customize the display of colors used by
ansi-color, change `ansi-color-COLOR', e.g. `ansi-color-red'.  To
customize the actual faces used (e.g. to temporarily display SGR
control sequences differently), use `ansi-color-normal-colors-vector'."
  :type '(vector (choice color (cons color color))
                 (choice color (cons color color))
                 (choice color (cons color color))
                 (choice color (cons color color))
                 (choice color (cons color color))
                 (choice color (cons color color))
                 (choice color (cons color color))
                 (choice color (cons color color)))
  :version "24.4" ; default colors copied from `xterm-standard-colors'
  :group 'ansi-colors)