Convert any CSS color to RGB
were you ever like dang.. i want to get the RGB color from ... anything
well now you can
function getRGB(color) {
var elm = document.createElement('span');
elm.style.color = color;
document.body.appendChild(elm);
return getComputedStyle(elm).color
}
Written by Sam Saccone
Related protips
Have a fresh tip? Share with Coderwall community!
Post
Post a tip
Best
#Css
Authors
Sponsored by #native_company# — Learn More
#native_title#
#native_desc#