From 9c9b47c930fc1415cdb64d554808df3b1d6bb6c2 Mon Sep 17 00:00:00 2001 From: meowarex Date: Tue, 9 Sep 2025 19:33:29 +1000 Subject: [PATCH] Fixed Green HideUI Button --- plugins/radiant-lyrics-luna/src/index.ts | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/plugins/radiant-lyrics-luna/src/index.ts b/plugins/radiant-lyrics-luna/src/index.ts index cf86246..3f02147 100644 --- a/plugins/radiant-lyrics-luna/src/index.ts +++ b/plugins/radiant-lyrics-luna/src/index.ts @@ -225,7 +225,7 @@ const createHideUIButton = function (): void { hideUIButton.setAttribute("aria-label", "Hide UI"); hideUIButton.setAttribute("title", "Hide UI"); hideUIButton.textContent = "Hide UI"; - hideUIButton.style.backgroundColor = "var(--wave-color-solid-accent-fill)"; + hideUIButton.style.backgroundColor = "#ffffff"; hideUIButton.style.color = "black"; hideUIButton.style.border = "none"; hideUIButton.style.borderRadius = "12px"; @@ -245,11 +245,10 @@ const createHideUIButton = function (): void { hideUIButton.style.visibility = "hidden"; hideUIButton.style.pointerEvents = "none"; hideUIButton.addEventListener("mouseenter", () => { - hideUIButton.style.backgroundColor = "lightgray"; + hideUIButton.style.backgroundColor = "#e5e5e5"; }); hideUIButton.addEventListener("mouseleave", () => { - hideUIButton.style.backgroundColor = - "var(--wave-color-solid-accent-fill)"; + hideUIButton.style.backgroundColor = "#ffffff"; }); hideUIButton.onclick = toggleRadiantLyrics; buttonContainer.insertBefore(hideUIButton, fullscreenButton.nextSibling);