Skip to content

Instantly share code, notes, and snippets.

@jokroese
Last active January 29, 2025 16:15
Show Gist options
  • Save jokroese/71b72af2835240efd92ef153a1228b46 to your computer and use it in GitHub Desktop.
Save jokroese/71b72af2835240efd92ef153a1228b46 to your computer and use it in GitHub Desktop.
Create favicons

Create favicons

Following https://evilmartians.com/chronicles/how-to-favicon-in-2021-six-files-that-fit-most-needs

Create svg

Open your SVG file in a text editor. Find a with a dark or missing fill. Add a CSS media query that will trigger on theme changes and change fill to the colors you want:

 <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 500 500">
  <style>
    @media (prefers-color-scheme: dark) {
    .a { fill: #f0f0f0 }
    }
  </style>
  <path fill="#0f0f0f" d="" />
  <path class="a" fill="#0f0f0f" d="" />
 </svg>

Create the rest of the icons

inkscape ./icon.svg --export-width=32 --export-filename="./tmp.png"
convert ./tmp.png ./favicon.ico
rm ./tmp.png
convert ./icon-32.png ./icon-16.png ./favicon.ico
inkscape --export-type="png" --export-width=512 --export-filename="./icon-512.png" ./icon.svg
inkscape --export-type="png" --export-width=192 --export-filename="./icon-192.png" ./icon.svg
npx svgo --multipass icon.svg
convert icon-512.png -resize 140x140 -background none -gravity center -extent 180x180 apple-touch-icon.png
touch manifest.webmanifest
cat <<EOL > manifest.webmanifest
{
  "name": "My website",
  "icons": [
    { "src": "/icon-192.png", "type": "image/png", "sizes": "192x192" },
    { "src": "/icon-512.png", "type": "image/png", "sizes": "512x512" }
  ]
}
EOL

Link them to your html

<title>My website</title>
<link rel="manifest" href="/manifest.webmanifest">
<link rel="icon" href="/favicon.ico" sizes="32x32">
<link rel="icon" href="/icon.svg" type="image/svg+xml">
<link rel="apple-touch-icon" href="/apple-touch-icon.png">
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment