Change the color of a plot title?

Here is my plot title:

plot.update_layout(
    title={
        'text': name,
        'y':0.9,
        'x':0.5,
        'xanchor': 'center',    
        'yanchor': 'top'}, 
        font=dict(family="Arial",size=18),
        barmode='stack',
        legend=dict(x=0.4, y=-0.3),
        legend_orientation="h"
        )

Iโ€™ve looked for a while but couldnโ€™t find any documentation. Is it possible to change the color of the title text alone? Not all the text but ONLY the title.

1 Like

Consider adding a color attribute. So, for the example above:

When I put the color attribute in font it changes the color of all text elements, including axis labels and legend. I only want to change the title and let everything else be default color.