forked from Mirrors/elk
fix(pwa): wrong web manifest colors (#2659)
This commit is contained in:
parent
0f583ece28
commit
df165f0023
1 changed files with 3 additions and 3 deletions
|
@ -217,8 +217,8 @@ export async function createI18n(): Promise<LocalizedWebManifest> {
|
||||||
short_name,
|
short_name,
|
||||||
description,
|
description,
|
||||||
dir,
|
dir,
|
||||||
background_color: '#ffffff',
|
background_color: '#111111',
|
||||||
theme_color: '#ffffff',
|
theme_color: '#fafafa',
|
||||||
...manifestEntries,
|
...manifestEntries,
|
||||||
shortcuts,
|
shortcuts,
|
||||||
screenshots,
|
screenshots,
|
||||||
|
@ -229,7 +229,7 @@ export async function createI18n(): Promise<LocalizedWebManifest> {
|
||||||
short_name,
|
short_name,
|
||||||
description,
|
description,
|
||||||
dir,
|
dir,
|
||||||
background_color: '#111111',
|
background_color: '#fafafa',
|
||||||
theme_color: '#111111',
|
theme_color: '#111111',
|
||||||
...manifestEntries,
|
...manifestEntries,
|
||||||
shortcuts,
|
shortcuts,
|
||||||
|
|
Loading…
Reference in a new issue