Skip to content

Instantly share code, notes, and snippets.

@namklabs
Created June 19, 2014 18:02
Show Gist options
  • Save namklabs/951cb6f0496f81e89261 to your computer and use it in GitHub Desktop.
Save namklabs/951cb6f0496f81e89261 to your computer and use it in GitHub Desktop.
rgb/a color to hex color
// Partial credit for this goes to the broken script I found at http://www.sitepoint.com/jquery-convert-rgb-hex-color/
function rgb2hex(rgb){
rgb = rgb.match(/^rgba?\(\s*(\d+)\s*,\s*(\d+)\s*,\s*(\d+)\s*(,\s*(\d*)\.?(\d*)\s*)?\)$/);
return "#" +
("0" + parseInt(rgb[1],10).toString(16)).slice(-2) +
("0" + parseInt(rgb[2],10).toString(16)).slice(-2) +
("0" + parseInt(rgb[3],10).toString(16)).slice(-2);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment