Function: org-normalize-color

org-normalize-color is a byte-compiled function defined in org.el.gz.

Signature

(org-normalize-color VALUE)

Documentation

Return string to be used as color value for an RGB component.

Source Code

;; Defined in /usr/src/emacs/lisp/org/org.el.gz
(defun org-normalize-color (value)
  "Return string to be used as color value for an RGB component."
  (format "%g" (/ value 65535.0)))