meta-theme color matches UI Background

1aa7d1d5a57d31be11562f81145df10dec4253d5

RossAscends <124905043+RossAscends@users.noreply.github.com>

1 files changed, +2 -0Showing whitespace changes
public/scripts/power-user.js+2 -0
@@ -1124,7 +1124,9 @@ function applyThemeColor(type) {
11241124 document.documentElement.style.setProperty('--SmartThemeFastUIBGColor', power_user.fastui_bg_color);
11251125 } */
11261126 if (type === 'blurTint') {
1127+ let metaThemeColor = document.querySelector('meta[name=theme-color]');
11271128 document.documentElement.style.setProperty('--SmartThemeBlurTintColor', power_user.blur_tint_color);
1129+ metaThemeColor.setAttribute('content', power_user.blur_tint_color);
11281130 }
11291131 if (type === 'chatTint') {
11301132 document.documentElement.style.setProperty('--SmartThemeChatTintColor', power_user.chat_tint_color);