Moes smart button change through color

Hello everyone,

I am new to blueprint and have not found a suitable solution to my problem using the search function. I apologize if I have overlooked something and for my beginner’s question.

I have integrated a Moes smart button in ZHA and would like to change the color of my LED strip to a specific color every time I press a button. The LED strip is connected to a Zigbee RGBCCT controller and is also integrated in ZHA.

I hope you can help me or maybe you have a suitable link which I have overlooked in my search.

I do this with one of my buttons.
I have an input_select helper that has the colors I want to use in a list. Then on the button press automation I use the value of the input_select to set the color then advance the input_select to the next choice.

metadata: {}
data:
  color_name: "{{ states('input_select.color_choice') }}"
target:
  entity_id: light.master_bedroom_light
action: light.turn_on
metadata: {}
data:
  cycle: true
target:
  entity_id: input_select.color_choice
action: input_select.select_next