You are reading documentation for the unreleased version of Matplotlib. Try searching for the released version of this page instead?
Version 2.0.0b1.post7580.dev0+ge487118
matplotlib
Fork me on GitHub

Table Of Contents

This Page

matplotlib.colors.to_rgba

matplotlib.colors.to_rgba(c, alpha=None)

Convert c to an RGBA color.

Parameters:

c : Matplotlib color

alpha : scalar, optional

If alpha is not None, it forces the alpha value, except if c is "none" (case-insensitive), which always maps to (0, 0, 0, 0).

Returns:

tuple

Tuple of (r, g, b, a) scalars.