#ifndef CLAY_CLAY_COLOR_H #define CLAY_CLAY_COLOR_H #include typedef struct { uint8_t r; uint8_t g; uint8_t b; uint8_t a; } clay_color; clay_color clay_color_rgba(uint8_t r, uint8_t g, uint8_t b, uint8_t a); #endif //CLAY_CLAY_COLOR_H