Replace placeholder icons with custom image and fix PWA manifest colors
Regenerated all icons (favicon, apple-touch-icon, pwa-192, pwa-512) from manual-icon.png using ImageMagick. Updated manifest and meta theme-color from black to the app's blue (#a8d5e8), and added start_url to the manifest. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
@@ -3,7 +3,7 @@
|
|||||||
<head>
|
<head>
|
||||||
<meta charset="UTF-8" />
|
<meta charset="UTF-8" />
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||||
<meta name="theme-color" content="#000000" />
|
<meta name="theme-color" content="#a8d5e8" />
|
||||||
<link rel="icon" type="image/x-icon" href="/favicon.ico" />
|
<link rel="icon" type="image/x-icon" href="/favicon.ico" />
|
||||||
<link rel="apple-touch-icon" href="/apple-touch-icon.png" />
|
<link rel="apple-touch-icon" href="/apple-touch-icon.png" />
|
||||||
<title>Black 7</title>
|
<title>Black 7</title>
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 3.7 KiB After Width: | Height: | Size: 7.2 KiB |
|
Before Width: | Height: | Size: 4.2 KiB After Width: | Height: | Size: 15 KiB |
@@ -1,9 +0,0 @@
|
|||||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512">
|
|
||||||
<rect width="512" height="512" fill="#0a0a0a"/>
|
|
||||||
<g fill="none" stroke="#f0ede6" stroke-linecap="round" stroke-linejoin="round">
|
|
||||||
<!-- horizontal top bar + diagonal leg of the 7 -->
|
|
||||||
<path d="M 90 120 L 408 112 L 206 450" stroke-width="30"/>
|
|
||||||
<!-- European crossbar -->
|
|
||||||
<path d="M 248 268 L 354 262" stroke-width="23"/>
|
|
||||||
</g>
|
|
||||||
</svg>
|
|
||||||
|
Before Width: | Height: | Size: 413 B |
|
After Width: | Height: | Size: 35 KiB |
|
Before Width: | Height: | Size: 3.9 KiB After Width: | Height: | Size: 7.7 KiB |
|
Before Width: | Height: | Size: 10 KiB After Width: | Height: | Size: 23 KiB |
@@ -12,9 +12,10 @@ export default defineConfig({
|
|||||||
name: 'Black 7',
|
name: 'Black 7',
|
||||||
short_name: 'Black 7',
|
short_name: 'Black 7',
|
||||||
description: 'Scoring app for Last Panther',
|
description: 'Scoring app for Last Panther',
|
||||||
theme_color: '#000000',
|
theme_color: '#a8d5e8',
|
||||||
background_color: '#000000',
|
background_color: '#a8d5e8',
|
||||||
display: 'standalone',
|
display: 'standalone',
|
||||||
|
start_url: '/',
|
||||||
icons: [
|
icons: [
|
||||||
{
|
{
|
||||||
src: 'pwa-192x192.png',
|
src: 'pwa-192x192.png',
|
||||||
|
|||||||