Function: color-complement-hex

color-complement-hex is a byte-compiled function defined in color.el.gz.

Signature

(color-complement-hex COLOR)

Documentation

Return the color that is the complement of COLOR, in hexadecimal format.

Source Code

;; Defined in /usr/src/emacs/lisp/color.el.gz
(defun color-complement-hex (color)
  "Return the color that is the complement of COLOR, in hexadecimal format."
  (apply 'color-rgb-to-hex (color-complement color)))