How to generate random 'greenish' colors

Viewed 8174

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), randint(120, 255), randint(100, 200))

That mostly works, but I get brownish colors a lot.

9 Answers
Related