zscript-doc/api/base/Color.md

14 lines
177 B
Markdown

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