I have this color with transparency:
rgba(150, 117, 117, 0.31);
My question is how can I convert the color rgba to hexa?
I have this color with transparency:
rgba(150, 117, 117, 0.31);
My question is how can I convert the color rgba to hexa?
Would moving the 0.31 to the css opacity setting be what you need?
So:
color: rgb(150, 117, 117);
color: #967575;
opacity: 0.31;
Or, are you looking for a formula to do this?