zscript-doc/api/base/Color.md

14 lines
175 B
Markdown

# 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;
}
```
<!-- EOF -->