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),
The simplest way to do this is to make sure that the red and blue components are the same, like this: (Forgive my Python)
rb = randint(100, 200) color = (rb, randint(120, 255), rb)