Best method for default theme?

not sure if this is what you want - but to set a default theme that any device will see when they open HASS, this worked for me…

in automations.yaml

- alias: 'Set theme at startup'
  trigger:
    platform: homeassistant
    event: start
  action:
    service: frontend.set_theme
    data:
      name: THEME_YOU_WANT
2 Likes