I'm trying to alter the coloring of something using an unsigned int (0xFF998877 etc...) in the form 0xAABBGGRR where A is Alpha and B, G and R are Blue, Green and Red.
I'm wondering however what the best way would be to alter the color I'm passing in to slowly become darker and or lighter.
As I don't have a lot of experience with unsigned int in this way my solution was simply to decrement the value by 1, but this had weird results. Is there a good method to only alter the RGB elements and keep the Alpha constant? I did, in my scant research, find that I could multiply other unsigned ints together to produce my final result e.g. (0xFF * 0x99 * 0x99 * 0x99) but this still left the alpha value variable in the end result.
Any help is greatly appreciated!