Creating a struct of RGB Values

guix:

struct RGB {

uint8_t r;
uint8_t g;
uint8_t b;
};

On revisiting this question I realise I had overlooked your use of uint8_t instead of byte. What was your reason for this?

Thanks,
Ric