diff --git a/apps/pwa/index.html b/apps/pwa/index.html index 5eca05e..dfd1854 100644 --- a/apps/pwa/index.html +++ b/apps/pwa/index.html @@ -3,8 +3,10 @@ - + + + diff --git a/apps/pwa/src/styles/tokens.css b/apps/pwa/src/styles/tokens.css index 38927ba..8f5a53c 100644 --- a/apps/pwa/src/styles/tokens.css +++ b/apps/pwa/src/styles/tokens.css @@ -38,7 +38,7 @@ * 10% accent band — ONLY for event chip fills and color legend swatches. * ───────────────────────────────────────────────────────────────────────── */ - --color-member-0: #4a90d9; + --color-member-0: #e8915a; /* brand accent — warm amber (approved 17-02 checkpoint) */ --color-member-1: #50c878; --color-member-2: #f5a623; --color-member-3: #9b59b6; diff --git a/apps/pwa/vite.config.ts b/apps/pwa/vite.config.ts index ede94d0..6e2081f 100644 --- a/apps/pwa/vite.config.ts +++ b/apps/pwa/vite.config.ts @@ -30,7 +30,7 @@ export default defineConfig({ name: 'FamilySync', short_name: 'FamilySync', description: 'Family calendar and lists', - theme_color: '#4A90D9', + theme_color: '#e8915a', background_color: '#ffffff', display: 'standalone', scope: '/', @@ -38,7 +38,7 @@ export default defineConfig({ icons: [ { src: '/icon-192.png', sizes: '192x192', type: 'image/png' }, { src: '/icon-512.png', sizes: '512x512', type: 'image/png' }, - { src: '/icon-512.png', sizes: '512x512', type: 'image/png', purpose: 'maskable' }, + { src: '/icon-maskable-512.png', sizes: '512x512', type: 'image/png', purpose: 'maskable' }, ], }, }),