// // Created by gwendolyn on 2/2/23. // #include "color.h" clay_color clay_color_rgba(uint8_t r, uint8_t g, uint8_t b, uint8_t a) { clay_color color = {.red = r, .green = g, .blue = b, .alpha = a}; return color; }