Skip to content

Commit

Permalink
fix(pwa): wrong web manifest colors (#2659)
Browse files Browse the repository at this point in the history
  • Loading branch information
userquin authored Mar 7, 2024
1 parent 0f583ec commit df165f0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions modules/pwa/i18n.ts
Original file line number Diff line number Diff line change
Expand Up @@ -217,8 +217,8 @@ export async function createI18n(): Promise<LocalizedWebManifest> {
short_name,
description,
dir,
background_color: '#ffffff',
theme_color: '#ffffff',
background_color: '#111111',
theme_color: '#fafafa',
...manifestEntries,
shortcuts,
screenshots,
Expand All @@ -229,7 +229,7 @@ export async function createI18n(): Promise<LocalizedWebManifest> {
short_name,
description,
dir,
background_color: '#111111',
background_color: '#fafafa',
theme_color: '#111111',
...manifestEntries,
shortcuts,
Expand Down

0 comments on commit df165f0

Please sign in to comment.