#include #include typedef struct pixel_type { unsigned char r; unsigned char g; unsigned char b; } pixel_t; typedef struct color_type { char name[64]; struct pixel_type pixel; unsigned char luminance; } color_t;