Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CSS

css color hex to rgb a

hexToRGB(hex, alpha) {

  const r = parseInt(hex.slice(1, 3), 16);
  const g = parseInt(hex.slice(3, 5), 16);
  const b = parseInt(hex.slice(5, 7), 16);

  if (alpha) {
    return `rgba(${r}, ${g}, ${b}, ${alpha})`;
  } else {
    return `rgb(${r}, ${g}, ${b})`;
  }
}
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #css #color #hex #rgb
ADD COMMENT
Topic
Name
2+7 =