Gauge Card - Severity and Segments

Hi all,

Creating a gauge card and when using severity it creates segments.
I want the color of the gauge to change based on the value of the sensor.

My code:

    entity: sensor.d7_power_consumption
    name: Consumption
    unit: W
    min: 0
    max: 6000
    needle: true
    severity:
      green: 0
      yellow: 400
      red: 600

My result:
image

I don’t want segments, rather I want the whole gauge color to change.
What have I done wrong?
The demo in the docs seems to indicate (in a CPU use%) that it should be possible

Thank you

Remove the line with “needle: true”, or set it to false.