Creates a Color.
Here is a list of colors already cached by the game
| Variable | Color (RGBA) |
|---|---|
| color_white | Color(255, 255, 255, 255) |
| color_black | Color(0, 0, 255, 255) |
| color_transparent | Color(255, 255, 255, 0) |
0-255 describing the alpha (transparency) of the color.(default 255)Creates a color and prints the components to the console.
Color variables can have individual channels set using the arguments.
Transforms a color object to a string, then prints it.