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),
Check out the colorsys module:
colorsys
http://docs.python.org/library/colorsys.html
Use the HSL or HSV color space. Randomize the hue to be close to green, then choose completely random stuff for the saturation and V (brightness).