Light effect automation

Hi there, I am currently using the following to act a sort of playlist for WLED light effects, however, is it possible under either under Data or Variableswhere the effect are listed to have home assistants control the brightness, speed and intensity of each individual effect but still randomly play them. If so how.

alias: Christmas Lights effects
  description: Christmas light effects
  trigger:
  - platform: time_pattern
    seconds: '10'
  condition:
  - condition: state
    entity_id: light.wledaj
    state: 'on'
  variables:
    effects:
      - Colorloop
      - Dancing Shadows
      - Glitter
  action:
  - service: light.turn_on
    data:
      effect: "{{ effects | random }}"
    entity_id: light.wledaj
  mode: single
1 Like