#ifndef _COLOR_H_
#define _COLOR_H_
typedef union {
struct {
u8 r, g, b;
};
u32 rgb;
} Color_RGB8;
u8 r, g, b, a;
u32 rgba;
} Color_RGBA8;
typedef struct {
f32 r, g, b, a;
} Color_RGBAf;
#endif