From 1d702eb699f10a3d1f00ce1b79ffa745cb72b438 Mon Sep 17 00:00:00 2001 From: Ashley Date: Thu, 16 Nov 2023 17:59:10 +0000 Subject: [PATCH] add ambient mode --- html/lite.ejs | 23 ++++++++++++++++++++++- 1 file changed, 22 insertions(+), 1 deletion(-) diff --git a/html/lite.ejs b/html/lite.ejs index 90a45436..04bed845 100644 --- a/html/lite.ejs +++ b/html/lite.ejs @@ -244,6 +244,27 @@ background: none !important; word-break: break-all; white-space: normal; } + + <% if (lightOrDark(color) == "light") { %> + .player.video-ambient-container { + box-shadow: 0 -8px 5.9em <%=color%>; + } + + <% } %> + + <% if (lightOrDark(color) == "dark") { %> + .player.video-ambient-container { + box-shadow: 0 -8px 5.9em <%=color2%>; + } + + <% } %> + <% if (a) { %> + + .player.video-ambient-container { + box-shadow: 0 0 0em <%=color%>; + } + + <% } %> @@ -301,7 +322,7 @@ background: none !important;
-
+