Apple Watch action: which is the best color scheme?

Hello everybody,
What do you think is the best color scheme for Apple Watch actions?
I’m doing various tests but none of them satisfy me.
At the moment I’m using dark gray as a background and white for the text.
The color of the icons changes according to the context (yellow for the lights, blue for the switches and green for the air purifier).

here below an example:

    - name: KITCHEN'S LIGHT
      background_color: "#777777"
      label:
        text: "Kitchen light On/Off"
        color: "#ffffff"
      icon:
        icon: mdi:light-recessed
        color: "#ffff00"

It is obvious that this is a very subjective aspect but I would love to receive your suggestions
Thanks in advance

I just had the same issue.
i decided to use the same colours that i use in lovelace. (mushroom dark theme)
maybe it saves someone a little work :wink:
Unbenannt-3

ios:
  actions:
    - name: aaa # Name der Aktion - wichtig für die Automationen
      background_color: "#1C1C1C" # Hintergrundfarbe des Buttons auf der Watch
      label:
        text: "Öffne Garagentor" # Text auf der Watch
        color: "#ffffff" # Textfarbe auf der Watch
      icon:
        icon: garage # MDI Icon auf der Watch
        color: "#4CAF50" # Farbe des Icons

    - name: bbb # Name der Aktion - wichtig für die Automationen
      background_color: "#1C1C1C" # Hintergrundfarbe des Buttons auf der Watch
      label:
        text: "Entsperre Haustür" # Text auf der Watch
        color: "#ffffff" # Textfarbe auf der Watch
      icon:
        icon: lock-open # MDI Icon auf der Watch
        color: "#2196F3" # Farbe des Icons

    - name: ccc # Name der Aktion - wichtig für die Automationen
      background_color: "#1C1C1C" # Hintergrundfarbe des Buttons auf der Watch
      label:
        text: "Aktiviere Alarmanlage" # Text auf der Watch
        color: "#ffffff" # Textfarbe auf der Watch
      icon:
        icon: shield-lock # MDI Icon auf der Watch
        color: "#F44336" # Farbe des Icons

    - name: ddd # Name der Aktion - wichtig für die Automationen
      background_color: "#1C1C1C" # Hintergrundfarbe des Buttons auf der Watch
      label:
        text: "Licht aus" # Text auf der Watch
        color: "#ffffff" # Textfarbe auf der Watch
      icon:
        icon: lightbulb-group-off # MDI Icon auf der Watch
        color: "#FFC107" # Farbe des Icons
1 Like