Skip to content

Instantly share code, notes, and snippets.

@nolanamy
Created April 3, 2013 06:10
Show Gist options
  • Save nolanamy/5298826 to your computer and use it in GitHub Desktop.
Save nolanamy/5298826 to your computer and use it in GitHub Desktop.
static String colorToString(int color)
{
return new String(
" a:" + Color.alpha(color) +
" r:" + Color.red(color) +
" g:" + Color.green(color) +
" b:" + Color.blue(color)
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment