feat: add branded app and web icons
Some checks failed
Android CI / android (push) Failing after 4m20s
Android Release / release (push) Failing after 4m26s
CI / test (push) Failing after 2m22s

Add adaptive and legacy launcher icons for Android.

Replace the default notification icon with a branded monochrome asset.

Add favicon, touch icons, and a web app manifest for the web client.
This commit is contained in:
2026-04-05 15:36:19 +03:00
parent 0f55aef179
commit 29a612dffa
27 changed files with 106 additions and 4 deletions

View File

@@ -3,6 +3,12 @@
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="theme-color" content="#3390ec" />
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png" />
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png" />
<link rel="apple-touch-icon" href="/apple-touch-icon.png" />
<link rel="manifest" href="/site.webmanifest" />
<title>Benya Messenger</title>
</head>
<body class="bg-bg text-text">

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 266 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 430 B

BIN
web/public/favicon.ico Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.3 KiB

13
web/public/favicon.svg Normal file
View File

@@ -0,0 +1,13 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" fill="none">
<defs>
<linearGradient id="bg" x1="256" y1="0" x2="256" y2="512" gradientUnits="userSpaceOnUse">
<stop stop-color="#3390EC"/>
<stop offset="1" stop-color="#1E6FC1"/>
</linearGradient>
</defs>
<rect width="512" height="512" rx="116" fill="url(#bg)"/>
<path d="M154 92C110.922 92 76 126.922 76 170V276C76 319.078 110.922 354 154 354H224.5L210 431L303 354H358C401.078 354 436 319.078 436 276V170C436 126.922 401.078 92 358 92H154Z" fill="white"/>
<rect x="176" y="164" width="184" height="32" rx="16" fill="#1E6FC1"/>
<rect x="176" y="236" width="112" height="32" rx="16" fill="#1E6FC1"/>
<rect x="176" y="308" width="72" height="32" rx="16" fill="#1E6FC1"/>
</svg>

After

Width:  |  Height:  |  Size: 772 B

View File

@@ -0,0 +1,19 @@
{
"name": "Benya Messenger",
"short_name": "Benya",
"icons": [
{
"src": "/android-chrome-192x192.png",
"sizes": "192x192",
"type": "image/png"
},
{
"src": "/android-chrome-512x512.png",
"sizes": "512x512",
"type": "image/png"
}
],
"theme_color": "#3390ec",
"background_color": "#0e1621",
"display": "standalone"
}