LedStrip set color and temperature based on time

Hello,
I’ve a ledstrip that is triggered by a zigbee wireless rocket switch, however, I’m not able to set up static configuration so it will use some color, or white temperature based on the daytime

This is the current automation

alias: ZHA - Remote Lights - LedStrip time color
description: Adjust led strip color and temperature based on time
triggers:
  - type: turned_on
    device_id: 2621877605c84ad0c5c331c6d4eb7b06
    entity_id: fdca0654b238874643adb4ecb7f1a703
    domain: light
    trigger: device
conditions: []
actions:
  - choose:
      - conditions:
          - condition: time
            after: "06:00:00"
            before: "12:00:00"
        sequence:
          - target:
              entity_id: light.ledstrip
            data:
              brightness: 254
              color_temp: 153
            action: light.turn_on
      - conditions:
          - condition: time
            after: "12:00:00"
            before: "20:00:00"
        sequence:
          - target:
              entity_id: light.ledstrip
            data:
              brightness: 254
              color_temp: 400
            action: light.turn_on
      - conditions:
          - condition: or
            conditions:
              - condition: time
                after: "20:00:00"
              - condition: time
                before: "06:00:00"
        sequence:
          - target:
              entity_id: light.ledstrip
            data:
              brightness: 100
              hs_color:
                - 0
                - 100
            action: light.turn_on
    default: []
mode: single

I’ve been trying with hs_color and color_temp & brightness however when is triggered the automation the color is not set.
additionally the startup-behaviour es set to Off and those are the attributes of the entity:

min_color_temp_kelvin: 2000
max_color_temp_kelvin: 6535
min_mireds: 153
max_mireds: 500
supported_color_modes: color_temp, xy
color_mode: null
brightness: null
color_temp_kelvin: null
color_temp: null
hs_color: null
rgb_color: null
xy_color: null
off_with_transition: false
off_brightness: 254
friendly_name: LedStrip Light
supported_features: 40

Anyone have some idea what could be wrong or what would be the correct approach ?

BTW - I know there is Flux extension however I was never able to make it work properly, so I prefer use this static approach