I want to use the value DBFC6E12
but it ends up being a multi step process since in Plasmic when you paste the value into the color value field, it only takes the hex value. It would save me time if it took the value and then understood that the 12
value was the opacity value and automatically put it in. Instead, I find myself going to chatgpt for easy conversion myself and then putting the value in manually.
The hexadecimal value DBFC6E12
is an 8-character hex color code, where:
- The first six characters (
DBFC6E
) represent the RGB (Red, Green, Blue) values. - The last two characters (
12
) represent the alpha channel, which defines the opacity.
The alpha channel value is a two-digit hexadecimal number ranging from 00
(completely transparent) to FF
(completely opaque).
In this case:
12
in hexadecimal equals 18 in decimal.- This represents the opacity as a percentage of
18/255 ≈ 7.06%
.
Conclusion:
The opacity of this hex value is approximately 7%, meaning it is very close to fully transparent.