Skip to content

Instantly share code, notes, and snippets.

@vicapow
Created November 12, 2012 06:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save vicapow/4057823 to your computer and use it in GitHub Desktop.
Save vicapow/4057823 to your computer and use it in GitHub Desktop.
unsigned char red = ((color & 0xE0) >> 5) * (36.42857142857143);
unsigned char green = ((color & 0x1C) >> 2) * (36.42857142857143);
unsigned char blue = (color & 0x03) * 85;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment