From 5274b03dc2ce43650a54e3ea0f956f079f7dda66 Mon Sep 17 00:00:00 2001
From: Bashir <37988348+Brahmah@users.noreply.github.com>
Date: Sun, 27 Sep 2020 20:51:41 +1000
Subject: [PATCH] Resolve Frontend Services.yaml Minor Oversight (#40659)

The Default Values Suggest That The User enters 'light' as a parameter for the theme name. 'Light' is, however, not a valid option on a fresh install of HA unless a user manually downloads a theme with the name 'light'.
---
 homeassistant/components/frontend/services.yaml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/homeassistant/components/frontend/services.yaml b/homeassistant/components/frontend/services.yaml
index 31eb4d5d1ca..cc0d6bde216 100644
--- a/homeassistant/components/frontend/services.yaml
+++ b/homeassistant/components/frontend/services.yaml
@@ -5,7 +5,7 @@ set_theme:
   fields:
     name:
       description: Name of a predefined theme, 'default' or 'none'.
-      example: "light"
+      example: "default"
     mode:
       description: The mode the theme is for, either 'dark' or 'light' (default).
       example: "dark"