Variable: tty-color-mode-alist
tty-color-mode-alist is a variable defined in tty-colors.el.gz.
Value
((never . -1) (no . -1) (default . 0) (auto . 0) (ansi8 . 8)
(always . 8) (yes . 8))
Documentation
An alist of supported standard tty color modes and their aliases.
Source Code
;; Defined in /usr/src/emacs/lisp/term/tty-colors.el.gz
;; This is used by term.c
(defconst tty-color-mode-alist
'((never . -1)
(no . -1)
(default . 0)
(auto . 0)
(ansi8 . 8)
(always . 8)
(yes . 8))
"An alist of supported standard tty color modes and their aliases.")