# Color Colors simply store red, green, blue and alpha components. Each component has a range 0 to 255, inclusive. ``` struct Color { uint8 a, r, g, b; } ```