Variable: xterm-standard-colors

xterm-standard-colors is a variable defined in xterm.el.gz.

Value

(("black" 0 (0 0 0)) ("red" 1 (205 0 0)) ("green" 2 (0 205 0))
 ("yellow" 3 (205 205 0)) ("blue" 4 (0 0 238))
 ("magenta" 5 (205 0 205)) ("cyan" 6 (0 205 205))
 ("white" 7 (229 229 229)) ("brightblack" 8 (127 127 127))
 ("brightred" 9 (255 0 0)) ("brightgreen" 10 (0 255 0))
 ("brightyellow" 11 (255 255 0)) ("brightblue" 12 (92 92 255))
 ("brightmagenta" 13 (255 0 255)) ("brightcyan" 14 (0 255 255))
 ("brightwhite" 15 (255 255 255)))

Documentation

Names of 16 standard xterm/aixterm colors, their numbers, and RGB values.

Source Code

;; Defined in /usr/src/emacs/lisp/term/xterm.el.gz
;; Set up colors, for those versions of xterm that support it.
(defvar xterm-standard-colors
  ;; The names in the comments taken from XTerm-col.ad in the xterm
  ;; distribution, see https://invisible-island.net/xterm/.  RGB values are
  ;; from rgb.txt.
  '(("black"          0 (  0   0   0))	; black
    ("red"            1 (205   0   0))	; red3
    ("green"          2 (  0 205   0))	; green3
    ("yellow"         3 (205 205   0))	; yellow3
    ("blue"           4 (  0   0 238))	; blue2
    ("magenta"        5 (205   0 205))	; magenta3
    ("cyan"           6 (  0 205 205))	; cyan3
    ("white"          7 (229 229 229))	; gray90
    ("brightblack"    8 (127 127 127))	; gray50
    ("brightred"      9 (255   0   0))	; red
    ("brightgreen"   10 (  0 255   0))	; green
    ("brightyellow"  11 (255 255   0))	; yellow
    ("brightblue"    12 (92   92 255))	; rgb:5c/5c/ff
    ("brightmagenta" 13 (255   0 255))	; magenta
    ("brightcyan"    14 (  0 255 255))	; cyan
    ("brightwhite"   15 (255 255 255)))	; white
  "Names of 16 standard xterm/aixterm colors, their numbers, and RGB values.")