diff --git a/bicorder-app/index.html b/bicorder-app/index.html index 1369c72..0a00566 100644 --- a/bicorder-app/index.html +++ b/bicorder-app/index.html @@ -2,11 +2,12 @@ - + + + - - + Protocol Bicorder diff --git a/bicorder-app/public/favicon.ico b/bicorder-app/public/favicon.ico index b3a4252..4e0f8fc 100644 Binary files a/bicorder-app/public/favicon.ico and b/bicorder-app/public/favicon.ico differ diff --git a/bicorder-app/public/icon.svg b/bicorder-app/public/icon.svg index ea20bf5..c2f8424 100644 --- a/bicorder-app/public/icon.svg +++ b/bicorder-app/public/icon.svg @@ -1,11 +1,47 @@ - - - - Protocol - - - BICORDER - - - + + + + + + + + + + + + + + + + + + + + + + | + + + # + + + | + + + + + + + + + + + + + + + + + + diff --git a/bicorder-app/vite.config.ts b/bicorder-app/vite.config.ts index c9dfd49..d04a5b6 100644 --- a/bicorder-app/vite.config.ts +++ b/bicorder-app/vite.config.ts @@ -15,15 +15,27 @@ export default defineConfig({ svelte(), VitePWA({ registerType: 'autoUpdate', - includeAssets: ['favicon.ico'], + includeAssets: ['favicon.ico', 'favicon.svg', 'icon-192.png', 'icon-512.png'], manifest: { name: 'Protocol Bicorder', short_name: 'Bicorder', description: 'A diagnostic tool for the study of protocols', - theme_color: '#ffffff', - background_color: '#ffffff', + theme_color: '#1a1a2e', + background_color: '#1a1a2e', display: 'standalone', icons: [ + { + src: '/icon-192.png', + sizes: '192x192', + type: 'image/png', + purpose: 'any' + }, + { + src: '/icon-512.png', + sizes: '512x512', + type: 'image/png', + purpose: 'any' + }, { src: '/icon.svg', sizes: 'any',