Merge pull request #4554 from nimbleape/pwa-taskbar-colour-follow-theme

set the meta tag for theme-color to the same theme css background
pull/21833/head
Travis Ralston 2020-05-06 11:27:01 -06:00 committed by GitHub
commit 19bb678dd6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 0 deletions

View File

@ -242,6 +242,10 @@ export async function setTheme(theme) {
if (a == styleElements[stylesheetName]) return;
a.disabled = true;
});
const bodyStyles = global.getComputedStyle(document.getElementsByTagName("body")[0]);
if (bodyStyles.backgroundColor) {
document.querySelector('meta[name="theme-color"]').content = bodyStyles.backgroundColor;
}
Tinter.setTheme(theme);
resolve();
};