Colours In Pygame
There are two types of colours in pygame:
- RGB
- hexadecimal
1. RGB
rgb_color = (red, green, blue)
red_color = (255, 0, 0)
hexadecimal
hex_color = #rrggbb
box_color = #c0e8ec
There are two types of colours in pygame:
rgb_color = (red, green, blue)
red_color = (255, 0, 0)
hex_color = #rrggbb
box_color = #c0e8ec
Search