Skip to content

Instantly share code, notes, and snippets.

@hinst
Last active September 26, 2016 14:48
Show Gist options
  • Save hinst/8a95942efd5536d41796 to your computer and use it in GitHub Desktop.
Save hinst/8a95942efd5536d41796 to your computer and use it in GitHub Desktop.
DWord to HTML color string
DWordToHTMLColorString =
function(a)
{
var red = a & 0x00FF0000;
var green = a & 0x0000FF00;
var blue = a & 0x000000FF;
var result = 'rgb(' + red + ', ' + green + ', ' + blue + ')';
return result;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment