Skip to content

Commit 0483833

Browse files
committed
fix(pwa): replace white-glyph PWA icons with dark glyph + match dark deck splash color
The 'random icon' users saw on mobile home screens was the white glyph icon (logo-light.png clone) rendered on iOS/Android's default light launcher background — visually invisible. Replaces icon-192x192.png and icon-512x512.png with the dark glyph (logo-dark.png) so the app icon is visible on light home screens. Manifest background_color flipped from #ffffff to #0a0b12 so the PWA splash matches the in-app dark deck theme instead of flashing white before first paint. Resolves Task 1 of the mobile-foundations sub-project (deferred 'random icon' report) — root cause was the PWA install icon, not the in-app header logo (which was already correct).
1 parent ed491fb commit 0483833

3 files changed

Lines changed: 1 addition & 1 deletion

File tree

apps/web/public/icon-192x192.png

38.3 KB
Loading

apps/web/public/icon-512x512.png

38.3 KB
Loading

apps/web/public/manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"description": "A collection of developer tools for everyday use.",
55
"start_url": "/",
66
"display": "standalone",
7-
"background_color": "#ffffff",
7+
"background_color": "#0a0b12",
88
"icons": [
99
{
1010
"src": "/icon-192x192.png",

0 commit comments

Comments
 (0)