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);