From ae34640a80f64c571aaf6272ebe7656263d8ce9d Mon Sep 17 00:00:00 2001 From: Andrey Date: Tue, 31 Oct 2017 14:30:50 +0200 Subject: [PATCH] Use theme color in loading screen. (#10248) --- homeassistant/components/frontend/templates/index.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/homeassistant/components/frontend/templates/index.html b/homeassistant/components/frontend/templates/index.html index 8ff3c64ef90..41d17347de8 100644 --- a/homeassistant/components/frontend/templates/index.html +++ b/homeassistant/components/frontend/templates/index.html @@ -38,7 +38,7 @@ display: block; content: ""; height: 48px; - background-color: #03A9F4; + background-color: {{ theme_color }}; } #ha-init-skeleton .message { @@ -52,7 +52,7 @@ } #ha-init-skeleton a { - color: #03A9F4; + color: {{ theme_color }}; text-decoration: none; font-weight: bold; }