How to modify the colour of a subplot

How can I modify the bar colour in the following subplot

fig.add_trace(go.Bar(x=df_plot.date,
    y=df_plot.market),
    row=2,
    col=1
)

You can use the marker_color property inside go.Bar()

Like this: