From df165f0023c64856683a7e01a005bd665c8e14bc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Joaqu=C3=ADn=20S=C3=A1nchez?= Date: Thu, 7 Mar 2024 15:55:27 +0100 Subject: [PATCH] fix(pwa): wrong web manifest colors (#2659) --- modules/pwa/i18n.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/modules/pwa/i18n.ts b/modules/pwa/i18n.ts index f8e2b1e6..02c5643f 100644 --- a/modules/pwa/i18n.ts +++ b/modules/pwa/i18n.ts @@ -217,8 +217,8 @@ export async function createI18n(): Promise { short_name, description, dir, - background_color: '#ffffff', - theme_color: '#ffffff', + background_color: '#111111', + theme_color: '#fafafa', ...manifestEntries, shortcuts, screenshots, @@ -229,7 +229,7 @@ export async function createI18n(): Promise { short_name, description, dir, - background_color: '#111111', + background_color: '#fafafa', theme_color: '#111111', ...manifestEntries, shortcuts,