Adaptive icon support in PWAs with maskable icons

App icons that adapt to platforms.

What are maskable icons?

If you've installed a Progressive Web App on a recent Android phone, you might notice the icon shows up with a white background. Android Oreo introduced adaptive icons, which display app icons in a variety of shapes across different device models. Icons that don't follow this new format are given white backgrounds.

PWA icons in white circles on Android
Transparent PWA icons appear inside white circles on Android.

Maskable icons are a new icon format that give you more control and let your Progressive Web App use adaptive icons. If you supply a maskable icon, your icon can fill up the entire shape and look great on all Android devices. Firefox and Chrome have recently added support for this new format, and you can adopt it in your apps.

PWA icons covering the entire circle on Android
Maskable icons cover the entire circle instead.

Are my current icons ready?

Since maskable icons need to support a variety of shapes, you supply an opaque image with some padding that the browser can crop to the required shape and size. It's best not to rely on any particular shape, since the ultimate shape varies by browser and platform.

Different platform-specific shapes.

Luckily, there's a well-defined and standardized "minimum safe zone" that all platforms respect. The important parts of your icon, such as your logo, should be within a circular area in the center of the icon with a radius equal to 40% of the icon width. The outer 10% edge may be cropped.

You can check which parts of your icons land within the safe zone with Chrome DevTools. With your Progressive Web App open, launch DevTools and navigate to the Application panel. In the Icons section, you can choose to Show only the minimum safe area for maskable icons. Your icons will be trimmed so that only the safe area is visible. If your logo is visible within this safe area, you're good to go.

Applications panel in DevTools displaying PWA icons with edges cropped
The Applications panel.

To test your maskable icon with the variety of Android shapes, use the Maskable.app tool Tiger created. Open an icon, then Maskable.app will let you try various shapes and sizes, and you can share the preview with others on your team.

How do I adopt maskable icons?

If you want to create a maskable icon based on an existing icon, you can use the Maskable.app Editor. Upload your icon, adjust the color and size, then export the image.

Maskable.app Editor screenshot
Creating icons in the Maskable.app Editor.

Once you've created a maskable icon and tested it in DevTools, you'll need to update your web app manifest to point to the new asset. The web app manifest provides information about your web app in a JSON file, and includes an icons array.

For the inclusion of maskable icons, the purpose field tells the browser how your icon should be used. By default, icons will have a purpose of "any". These icons will be resized on top of a white background on Android.

{
  …
  "icons": [
    …
    {
      "src": "path/to/regular_icon.png",
      "sizes": "196x196",
      "type": "image/png",
      "purpose": "any"
    },
    {
      "src": "path/to/maskable_icon.png",
      "sizes": "196x196",
      "type": "image/png",
      "purpose": "maskable" // <-- New property value `"maskable"`
    },
    …
  ],
  …
}

Maskable icons should use a different value for purpose: "maskable". This indicates that an image is meant to be used with icon masks, giving you more control over the result. This way, your icons will not have a white background. You can also specify multiple space-separated purposes (for example, "any maskable"), if you want your maskable icon to be used without a mask on other devices.

With this, you can go forth and create your own maskable icons, making sure your app looks great edge-to-edge (and for what it's worth, circle-to-circle, oval-to-oval 😄).

Acknowledgements

This article was reviewed by Joe Medley.