Custom color for radar chart labels

I want to colorize each label_column with label_color using fig.update_polars(angularaxis_color=color) or fig.update_polars(angularaxis=dict(color=color)) but I canโ€™t.

How can I color each column_label the same color as the label_color? I want aa to be written in pink, bb in blue, cc in pink and dd in blue.

color_palette = {'Target': 'red', 'Current': 'blue'}


fig = px.line_polar(answers_avg, 
                    r = 'value',
                    theta = 'label_column', 
                    line_close = True, 
                    line_dash = 'group')


for group, color in color_palette.items():
    fig.update_traces(
        line=dict(color=color),
        selector=dict(name=group))
    
fig.show()

image

I donโ€™t think individual colors can be changed. If you want to change from the default values, the following code can be used.

fig.update_layout(polar=dict(angularaxis=dict(color='pink')))