From 05e2e305e43bb0567fdd8f8db9fa5b2ef3f0d00e Mon Sep 17 00:00:00 2001 From: Jeremy Noesen Date: Mon, 4 Mar 2024 08:45:54 -0600 Subject: [PATCH] Update cast launch screen colors (#19754) --- cast/src/receiver/layout/hc-launch-screen.ts | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/cast/src/receiver/layout/hc-launch-screen.ts b/cast/src/receiver/layout/hc-launch-screen.ts index ba70fb7452..b2fe7d7e95 100644 --- a/cast/src/receiver/layout/hc-launch-screen.ts +++ b/cast/src/receiver/layout/hc-launch-screen.ts @@ -28,7 +28,7 @@ class HcLaunchScreen extends LitElement { :host { display: block; height: 100vh; - background-color: white; + background-color: #f2f4f9; font-size: 24px; } .container { @@ -43,6 +43,9 @@ class HcLaunchScreen extends LitElement { max-width: 80%; object-fit: cover; } + .status { + color: #1d2126; + } `; } }