import plotly.express as px
df = px.data.gapminder().query("year == 2007")
fig = px.bar(df, y="continent", x="pop", color="continent", orientation="h", hover_name="country",
color_discrete_sequence=["#B22222CC", "green", "blue", "goldenrod", "magenta"],
title="Explicit color sequence"
)
fig.show()
I canโt seem to use colors with transparency, how can I fix this๏ผ