Hello, In my program I have a color hex value that I want to put an alpha mask on it. For Example
int hex = 0xFFFFFF;
int alphaHex = 0x00FFFFFF;
I need to add the '00' in front of the hex, well it could be any value from 0-255 in hex form too. I read about using bitwise operators and stuff like that, but still a little confused about.

