From c91290fac28eaa4b5773d2c9e73709cee45c832c Mon Sep 17 00:00:00 2001 From: Bruno Windels Date: Mon, 14 Sep 2020 17:10:52 +0200 Subject: [PATCH] set theme color as well for pwa --- scripts/build.mjs | 1 + 1 file changed, 1 insertion(+) diff --git a/scripts/build.mjs b/scripts/build.mjs index da2c7b2f..7084ebc0 100644 --- a/scripts/build.mjs +++ b/scripts/build.mjs @@ -295,6 +295,7 @@ async function buildOffline(version, assetPaths) { {"src": assetPaths.iconPngPath(), "sizes": "384x384", "type": "image/png"}, {"src": assetPaths.iconSvgPath(), "type": "image/svg+xml"}, ], + theme_color: "#0DBD8B" }; const manifestJson = JSON.stringify(webManifest); const manifestPath = resource("manifest.json", manifestJson);