How can I add ranges to the go.Indicator?

Is it possible to add ranges to the Indicator?

example:

import plotly.graph_objects as go

fig = go.Figure(go.Indicator(
    mode = "gauge+number",
    value = 450,
    title = {'text': "Speed"},
    domain = {'x': [0, 1], 'y': [0, 1]}
))

fig.show()

in this image, add a different colour between 200 - 500

hi I found how to.

Gauge charts in Python (plotly.com)