What is the Favicon Multi-Preview Workspace?
The Favicon Multi-Preview Workspace is a client-side tool for web developers, UI/UX designers, and brand managers. It eliminates the guesswork of deploying a new favicon by showing you exactly how your logo scales and renders in the places where users actually see it.
Unlike favicon generators that just export .ico files, this tool focuses on contextual visual testing. You get pixel-perfect CSS mockups of a real Google SERP listing, Chrome browser tabs in both dark and light mode, and an iOS home screen with surrounding app icons for realistic size comparison — all without uploading anything to a server.
Step-by-Step Guide
- Upload Your Asset: Drag your master logo file (ideally a 512px+ PNG or SVG) into the dropzone. It loads instantly in-browser with zero server contact.
- Set the Background Color: If your logo has a transparent background, pick a fill color. This is critical for iOS — Apple does not support transparency on home screen icons and will fill it with black by default.
- Adjust Padding: The padding slider adds a safe zone around your logo. Google wraps SERP favicons in a circle; padding stops your icon from being clipped at the edges.
- Set Corner Radius: 22.5% matches the iOS squircle mask. Try 0% for a sharp-cornered Android-style icon and 50% for a full circle.
- Review All Mockups: Check the SERP preview at ~16px equivalent, both Chrome dark/light tabs, and the iOS grid for contrast and legibility.
Supported Formats & Best Source Files
Start with a square image at least 512×512 pixels. The workspace supports:
- SVG: The gold standard in 2026. Resolution-independent (infinitely sharp on 4K displays), tiny file size, and supports
@media (prefers-color-scheme: dark)inside the file — one SVG that changes its own color depending on light or dark mode. - PNG: Best for logos with gradients, drop shadows, or photography. Export with an alpha transparency channel.
- WebP: Superior compression to PNG. Supported by all modern browsers. A good choice for complex raster logos.
- JPG: Supported, but avoid for favicons — no transparency channel.
Google Search Favicon Requirements
Google shows favicons in mobile and desktop SERP listings. A clear, recognisable icon measurably increases Click-Through Rate (CTR). If you break Google's rules, they replace your icon with a generic grey globe — permanently reducing your brand visibility in search.
- Multiple of 48px: PNG must be 48×48, 96×96, or 144×144. SVG is exempt.
- Perfect square: Google rejects non-square icons.
- Contrast on both backgrounds: Your icon must be readable on the white background of a light-mode SERP and on the dark grey of a dark-mode SERP. Test both in the Chrome tab mockups above.
- Stable URL: Frequent favicon URL changes delay re-indexing by months.
Mastering Dark Mode — The Most Common Mistake
The single most frequent favicon problem: uploading a black logo on a transparent background. It looks perfect on a light Chrome tab, then completely disappears the moment a user switches to Dark Mode.
- Solid Brand Background: Use the background color picker to fill transparency with your brand color. This is the safest, fastest fix.
- White Outline Trick: Add a 2px white stroke around a transparent black logo. Invisible on light themes, it acts as a glowing outline on dark ones.
- SVG CSS Media Queries (Advanced): Embed
@media (prefers-color-scheme: dark) { path { fill: #fff; } }directly inside your SVG file. One file, both themes, zero JavaScript.
Favicon Sizes & Target Breakdown
| Use Case | Size | Format | Notes |
|---|---|---|---|
| Browser tab / SERP | 16×16 | .ico / .svg | Rendered at 16px — keep it simple |
| Google SERP (HiDPI) | 48×48 | .png | Minimum for Google indexing |
| iOS Home Screen | 180×180 | .png | No transparency — solid background required |
| Android PWA | 192×192 | .png | Declared in manifest.webmanifest |
| All platforms | Any | .svg | Best choice — one file covers all sizes |