โ† Back to Blog

Favicon Sizes: The Complete Guide โ€” All Platform Specs

2026-04-26 ยท 5 min read

โ† Back to Blog

Favicon Sizes (2026): The 3 Sizes You Must Have

ยท 7 min read

**โšก Quick answer: 3 favicon sizes you must have**

Add 512ร—512 PNG (PWA splash screen) and favicon.ico (legacy browser fallback) to cover 99% of cases.

Different platforms require very different favicon sizes. Below is a complete reference table + copy-paste HTML code to get every platform covered in 5 minutes.

Favicon Size Reference Table โ€” All Platforms

The table below covers favicon size specifications for all major platforms, including format requirements:

Use Case Size Format
Browser tab (standard) 16ร—16 ICO / PNG
Browser tab (HiDPI) 32ร—32 PNG
Apple Touch Icon (iOS home screen) 180ร—180 PNG
Android Chrome (home screen) 192ร—192 PNG
Android Chrome (splash screen) 512ร—512 PNG
Windows tile 144ร—144 PNG
Safari pinned tab Any (SVG) SVG
Web App Manifest icon 192, 512 PNG

Platform-by-Platform Size Details

Browser Tab: 16ร—16 and 32ร—32

16ร—16 pixels is the most common favicon size for browser tabs and the historical standard for favicon.ico files. The 32ร—32 version is used for high-DPI (Retina) screens to keep the icon sharp on high-resolution displays. It's recommended to pack both sizes into a multi-resolution ICO file and also provide a separate 32ร—32 PNG.

At such small sizes, design simplicity is critical: simple shapes and high-contrast colors work far better than complex logos. Many brands design a simplified version specifically for 16ร—16 rather than directly scaling down the full logo.

iOS Home Screen: 180ร—180

When users add a website to their iPhone or iPad home screen, iOS uses the apple-touch-icon. The current Apple recommendation is 180ร—180 pixels (for iPhone 6 and above @3x displays). iOS automatically applies rounded corners to the icon, so your image should be a plain square โ€” no need to add corners yourself.

Older devices support 152ร—152 (iPad Retina) and 120ร—120 (iPhone Retina). If you only provide one size, 180ร—180 is backward compatible with all scenarios.

Android Chrome: 192ร—192 and 512ร—512

Android Chrome uses icons declared in the Web App Manifest file. 192ร—192 is used for home screen shortcut icons, and 512ร—512 is used for the splash screen. Both sizes are required for PWAs (Progressive Web Apps) โ€” without a 512ร—512 icon, Chrome won't generate a splash screen, degrading the user experience.

Windows Tile: 144ร—144

Windows 8/10 Start menu tiles and Edge browser use 144ร—144 icons, specified via the `` tag. Modern Windows 11 and Edge also accept icons from the standard Web App Manifest, so 192ร—192 is typically sufficient.

Safari Pinned Tab: SVG Format

Safari's pinned tab uses a single-color SVG icon referenced via the `` tag. SVG's advantage is that it's a vector graphic, staying sharp at any display size. The icon should be a pure black silhouette shape (Safari automatically fills it with the user's accent color).

Complete HTML head Code Example

Add the following code to your page's `` section to cover all major platforms:



site.webmanifest File Example

The Web App Manifest file declares icon sizes used by Android Chrome and PWAs:

{
  "name": "Your Site Name",
  "short_name": "Site",
  "icons": [
    {
      "src": "/android-chrome-192x192.png",
      "sizes": "192x192",
      "type": "image/png"
    },
    {
      "src": "/android-chrome-512x512.png",
      "sizes": "512x512",
      "type": "image/png"
    }
  ],
  "theme_color": "#ffffff",
  "background_color": "#ffffff",
  "display": "standalone"
}

How to Create a Favicon (Fastest Method)

The fastest method: use the Favicon Generator โ€” upload a square image, get all sizes + webmanifest automatically in one step.

If your image isn't square yet, two steps:

  1. Crop to square: Use the Image Crop Tool to crop your logo to 1:1, download PNG.
  2. Generate all sizes at once: Upload the square PNG to the Favicon Generator โ€” auto-exports 16ร—16, 32ร—32, 180ร—180, 192ร—192, 512ร—512, and ICO.
  3. Drop into project root: Put the exported files in your site root, paste the HTML code below into ``.

No account required, no software to install. Your image data never leaves the browser.

Generate all favicon sizes in one click โ€” outputs ICO + PNG + webmanifest automatically, no software needed.

Generate Favicon Free โ†’

Favicon Design Best Practices

FAQ

Which is better: favicon.ico or PNG favicon?

Modern browsers all support PNG favicons, which are lighter and easier to generate. However, favicon.ico still has value: it can bundle multiple sizes (16ร—16 and 32ร—32) into a single file, and browsers automatically look for /favicon.ico at the site root, loading it even without any HTML declaration. The recommended approach is to provide both: an ICO file at the root as a default fallback, and PNG versions declared with `` tags in HTML.

Why does my browser still show the old favicon after I updated it?

Browsers aggressively cache favicons โ€” this is the most common cause of "update not taking effect." Solutions: check "Disable cache" in developer tools and refresh; add a version query parameter to the favicon URL (e.g., href="/favicon.png?v=2") to force re-download; or directly navigate to the favicon file URL in the address bar and hard-refresh it.

Can SVG be used directly as a favicon?

Yes, but browser compatibility is still incomplete. Modern versions of Chrome, Firefox, and Edge support SVG favicons (via ``), while Safari only supports SVG for pinned tabs (via mask-icon). SVG favicons are extremely small in file size and perfectly sharp at any size. The current recommended approach: provide both SVG and PNG versions and let browsers choose based on support, keeping favicon.ico as a final fallback.

What is the minimum favicon size to display clearly?

The minimum display size for a favicon in browser tabs is typically 16ร—16 pixels โ€” this is the minimum size you must provide. On high-DPI screens, browsers prefer the 32ร—32 version. If you only provide a 32ร—32 PNG without a 16ร—16, browsers will scale it down automatically, which usually looks acceptable, but a version specifically optimized for 16ร—16 will be sharper.

How do I create a favicon without design software?

No software installation required. Use the Favicon Generator on this site โ€” upload a square image and get all sizes (16ร—16, 32ร—32, 180ร—180, 192ร—192, 512ร—512) plus a webmanifest file in one click. If your image isn't square, crop it first with the Image Crop Tool. No account needed, everything runs in your browser.

Try the free tool now

Use Free Tool โ†’