meta-theme color matches UI Background

1aa7d1d5a57d31be11562f81145df10dec4253d5

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

1 files changed, +2 -0Ignore whitespace
public/scripts/power-user.js+2 -0
@@ -1124,7 +1124,9 @@ function applyThemeColor(type) {
1124 document.documentElement.style.setProperty('--SmartThemeFastUIBGColor', power_user.fastui_bg_color);1124 document.documentElement.style.setProperty('--SmartThemeFastUIBGColor', power_user.fastui_bg_color);
1125 } */1125 } */
1126 if (type === 'blurTint') {1126 if (type === 'blurTint') {
1127 let metaThemeColor = document.querySelector('meta[name=theme-color]');
1127 document.documentElement.style.setProperty('--SmartThemeBlurTintColor', power_user.blur_tint_color);1128 document.documentElement.style.setProperty('--SmartThemeBlurTintColor', power_user.blur_tint_color);
1129 metaThemeColor.setAttribute('content', power_user.blur_tint_color);
1128 }1130 }
1129 if (type === 'chatTint') {1131 if (type === 'chatTint') {
1130 document.documentElement.style.setProperty('--SmartThemeChatTintColor', power_user.chat_tint_color);1132 document.documentElement.style.setProperty('--SmartThemeChatTintColor', power_user.chat_tint_color);