Skip to content

Instantly share code, notes, and snippets.

@hofmannsven
Last active January 25, 2023 10:47
Show Gist options
  • Star 5 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save hofmannsven/62ebf7e2e244341bfe11 to your computer and use it in GitHub Desktop.
Save hofmannsven/62ebf7e2e244341bfe11 to your computer and use it in GitHub Desktop.
Notes on Favicons, Tile Icon and Tab Icons

Favicons and more

Favicon

Install imagemagick: brew install imagemagick

Creating the .ico file with multiple sizes:

macOS

convert favicon-16.png favicon-24.png favicon-32.png favicon-48.png favicon-64.png favicon.ico

Windows

magick convert favicon-16.png favicon-24.png favicon-32.png favicon-48.png favicon-64.png favicon.ico

Alternatives

Tab Icon

Tutorial: https://yoast.com/dev-blog/safari-pinned-tab-icon-mask-icon/

Clear Safari browser cached icons: ~/Library/Safari/Template Icons

<head>
<link rel="shortcut icon" sizes="16x16 24x24 32x32 48x48 64x64" href="http://domain.com/favicon.ico">
<link rel="apple-touch-icon" sizes="57x57" href="/img/icons/favicon-57.png">
<link rel="apple-touch-icon-precomposed" sizes="57x57" href="/img/icons/favicon-57.png">
<link rel="apple-touch-icon" sizes="72x72" href="/img/icons/favicon-72.png">
<link rel="apple-touch-icon" sizes="114x114" href="/img/icons/favicon-114.png">
<link rel="apple-touch-icon" sizes="120x120" href="/img/icons/favicon-120.png">
<link rel="apple-touch-icon" sizes="144x144" href="/img/icons/favicon-144.png">
<link rel="apple-touch-icon" sizes="152x152" href="/img/icons/favicon-152.png">
<meta name="application-name" content="My website">
<meta name="msapplication-TileImage" content="/img/icons/favicon-144.png">
<meta name="msapplication-TileColor" content="#000000">
<link rel="mask-icon" color="#000000" href="/img/icons/pinned.svg">
</head>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment