Function: vtable--compute-colors
vtable--compute-colors is a byte-compiled function defined in
vtable.el.gz.
Signature
(vtable--compute-colors ROW-COLORS COLUMN-COLORS)
Source Code
;; Defined in /usr/src/emacs/lisp/emacs-lisp/vtable.el.gz
(defun vtable--compute-colors (row-colors column-colors)
(cond
((null column-colors)
(mapcar #'vtable--make-color-face row-colors))
((null row-colors)
(mapcar #'vtable--make-color-face column-colors))
(t
(cl-loop for row in row-colors
collect (cl-loop for column in column-colors
collect (vtable--face-blend
(vtable--make-color-face row)
(vtable--make-color-face column)))))))