#ifndef UTIL_H #define UTIL_H #include #include struct color { float r; float g; float b; float a; }; struct color hex_to_color(const char *hex); #endif /* UTIL_H */