Plotly Express Line Chart Color

@nicolaskruchten That’s the right direction I believe, but I’m afraid it is not doing what I’m expecting. For example, the following:

fig = px.line(df, x="Date", y=["Averaged", "Raw"],
             color_discrete_map={
                 "Average": "blue",
                 "Raw": "goldenrod"
             })
fig.show()

yields something like:

As you can see, the color of “Averaged” is not really blue… What’s the solution?