You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm using dash to create company compliant graphs so I'm using a custom ste of colors that are provided by the communication team in a company mini-package. I get them as hex colors.
I would like to create a "in between" and thus change the alpha channel of my color to make half transparent.
I cannot rely on the to_rgba function becasue you expect the 3 first digit to be int between 0 and 255 and the alpha channel as float when the matplotlib standard is giving me everything as a float.
What I would love to do is being allowed to add 2 extra digit to my hex chain to provide the alpha channel as :
color=f"{color}1a"
It's compatible with the other plotting tools I'm using (bokeh and matplotlib) but not with yours could you add the support for it ?
The text was updated successfully, but these errors were encountered:
gvwilson
changed the title
[Feature Request]Make it possible to use an alpha channel with Hex colors
Make it possible to use an alpha channel with Hex colors
Mar 14, 2025
I'm using dash to create company compliant graphs so I'm using a custom ste of colors that are provided by the communication team in a company mini-package. I get them as hex colors.
I would like to create a "in between" and thus change the alpha channel of my color to make half transparent.
As in this plotting:
Currently color specifier are supporting:
In my use case that forces me to use this horrible line to create the half transparent color in rgba:
f"rgba({','.join([str(int(c*255)) for c in to_rgb(color)])}, .1)"
I cannot rely on the
to_rgba
function becasue you expect the 3 first digit to be int between 0 and 255 and the alpha channel as float when the matplotlib standard is giving me everything as a float.What I would love to do is being allowed to add 2 extra digit to my hex chain to provide the alpha channel as :
It's compatible with the other plotting tools I'm using (bokeh and matplotlib) but not with yours could you add the support for it ?
The text was updated successfully, but these errors were encountered: