tune
Configuration
FOREGROUND
Upload Foreground
Drag & Drop or Click
contrast
Mono Icon
Android 13+
Upload Mono Layer
Or auto-convert from foreground
50%
150%
100%
TV BANNER (320×180)
Upload TV Banner
320×180px recommended
If not uploaded, will generate from icon automatically
Sync with icon background
visibility
Preview
Switch theme mode to preview themed monochrome icons
download
Export
0
Files
3
Platforms
PLATFORMS
FILE STRUCTURE
code
Code Snippets
AndroidManifest.xml
<application
android:icon="@mipmap/ic_launcher"
android:roundIcon="@mipmap/ic_launcher_round"
android:banner="@drawable/ic_launcher_tv_banner">
ic_launcher.xml
<adaptive-icon xmlns:android="http://schemas.android.com/apk/res/android">
<background android:drawable="@color/ic_launcher_background"/>
<foreground android:drawable="@mipmap/ic_launcher_foreground"/>
<monochrome android:drawable="@mipmap/ic_launcher_monochrome"/>
</adaptive-icon>
ic_launcher_background.xml
<resources>
<color name="ic_launcher_background">#1a1a1a</color>
</resources>
manifest.json (PWA)
{
"name": "MyApp",
"short_name": "MyApp",
"theme_color": "#1a1a1a",
"icons": [
{ "src": "/icons/icon-192.png", "sizes": "192x192" },
{ "src": "/icons/icon-512.png", "sizes": "512x512" }
]
}