zscript-doc/api/base/Color.md

14 lines
177 B
Markdown
Raw Normal View History

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