I just picked up image processing in python this past week at the suggestion of a friend to generate patterns of random colors. I found this piece of script online that gene
With custom colours (for example, dark red, dark green and dark blue):
import random COLORS = [(139, 0, 0), (0, 100, 0), (0, 0, 139)] def random_color(): return random.choice(COLORS)