From 1aa7d1d5a57d31be11562f81145df10dec4253d5 Mon Sep 17 00:00:00 2001 From: RossAscends <124905043+RossAscends@users.noreply.github.com> Date: Wed, 21 May 2025 21:01:28 +0900 Subject: [PATCH] meta-theme color matches UI Background --- public/scripts/power-user.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/public/scripts/power-user.js b/public/scripts/power-user.js index bc6eab15a..707ae2b27 100644 --- a/public/scripts/power-user.js +++ b/public/scripts/power-user.js @@ -1124,7 +1124,9 @@ function applyThemeColor(type) { document.documentElement.style.setProperty('--SmartThemeFastUIBGColor', power_user.fastui_bg_color); } */ if (type === 'blurTint') { + let metaThemeColor = document.querySelector('meta[name=theme-color]'); document.documentElement.style.setProperty('--SmartThemeBlurTintColor', power_user.blur_tint_color); + metaThemeColor.setAttribute('content', power_user.blur_tint_color); } if (type === 'chatTint') { document.documentElement.style.setProperty('--SmartThemeChatTintColor', power_user.chat_tint_color);