@robsob(View Post) #!/usr/bin/env python # Prints out all possible RGB combinations. (Red, Green, Blue) for red in range (0, 256): for green in range(0, 256): for blue in range(0, 256): print ("(" + red + ", " + green + ", " + blue + ")") # Or just... 0x000000 to 0xFFFFF Or... http://www.w3schools.com/html/html_colornames.asp