I'm wondering how to convert rgba
into hex
in a way that translates the visible rgba-color (including transparency) into a hex value.
Say I have this:
rgba(0,129,255,.4)
Which is sort of a "light blue"...
I would like to know if there is a way to get the same light blue "visible" color in hex, so I don't want the converted #0081ff
but something close to the color visible on screen.
Question:
How to convert rgba to a transparency-adjusted-hex?