from colorspace import rainbow_hcl, tritan, palette
from colorspace import specplot, swatchplot
# Drawing 100 colors along the HCL rainbow color palette
cols = rainbow_hcl()(100)
specplot(cols);
Documentation built with Python 3.11.10, pyp2qmd 0.1.1 and quarto 1.5.57 on GitHub.
Transformation of R colors by simulating color vision deficiencies, based on a CVD transform matrix. This function is an interface to the CVD object and returns simulated colors for tritanope vision.
See also deutan, protan, desaturate, and cvd_image.
tritan(cols, severity=1.0, linear=True)
colslist, colorobject, matplotlib.colors.LinearSegmentedColormap
severityfloat
[0., 1.]. Zero means no deficiency, one maximum deficiency, defaults to 1..
linearbool
False, the transformation is applied to the gamma-corrected sRGB coordinates (as in the Machado et al. 2009 supplementary materials).
colorobject: Returns an object of the same type as the input object cols with modified colors as people with tritanomaly see these colors (simulated).
from colorspace import rainbow_hcl, tritan, palette
from colorspace import specplot, swatchplot
# Drawing 100 colors along the HCL rainbow color palette
cols = rainbow_hcl()(100)
specplot(cols);
# Visualize original and simulated color swatches
swatchplot([cols, tritan(cols)],
show_names = False, figsize = (5, 1.5));
['#FF4A97', '#FF000F', '#FF8E8D', '#FFE2CE', '#60E9CE', '#489A88']