I have a dictionary with this RGB arrays:
colors = {"blue": [
[0 ,128,255],
[0 ,102,204],
[0 ,76 ,153],
[102,102,255],
[51 ,51 ,255],
[0 ,0 ,255],
[0 ,0 ,204],
[42, 81, 122],
[60, 108, 191]
]
}
Is there some function on Matplotlib that allows me to easily plot these colors (each array represents an RGB code) all together in one plot?
