Is there a way to change a single-color light entity color?

I have a mirror light with single color LED strip in Cold White.
When I add that entity - It will only show as Yellow/Warm White. Is there a way to change this?

In the past it was a simple Sonoff switch (Tasmota), later I change that to Tuya LED strip controller & now it’s a ZigBee LED strip controller - so it’s not related to the device - but to the concept of a light entity.

Examples:
On the right - my Bathroom Yeelight lights that have color temperature control - so it’s exactly how it should be.

Thanks!

Have you ever figured out a solution to this? I also have a single-color light (red) that’s controlled by a switch, and it looks strange in Home Assistant that it shows up as the default yellow color when it’s turned on.

image

image

I’ve found CSS-based solutions for settings the color of the light within a single place, like in an entities card, but it’s far from a general solution:

entities:
  - light.some_other_light
  - entity: light.my_red_light
    state_color: false
    style: |
      :host {
        {% if states(config.entity)=='on' %}
          --paper-item-icon-color: red;
        {% endif %}
      }