Anyone have any suggestions on how to make randomized colors that are all greenish? Right now I\'m generating the colors by this:
color = (randint(100, 200),
So in this case you are lucky enough to want variations on a primary color, but for artistic uses like this it is better to specify color wheel coordinates rather than primary color magnitudes.
You probably want something from the colorsys
module like:
colorsys.hsv_to_rgb(h, s, v)
Convert the color from HSV coordinates to RGB coordinates.