Is it possible to change the color of an ikea bulb in an automation? I see no documentation on it.
Yes if your light supports it.
action:
- service: light.turn_on
target:
entity_id: light.your_ikea_light_here
data:
rgb_color: '[233,150,122]'
There are other ways you can define the colour. e.g.
action:
- service: light.turn_on
target:
entity_id: light.your_ikea_light_here
data:
color_name: 'darksalmon'
See: https://www.home-assistant.io/integrations/light/#service-lightturn_on
Thankyou Sir