Skip to content

Instantly share code, notes, and snippets.

@elkhayder
Last active October 28, 2020 01:12
Show Gist options
  • Save elkhayder/b158efd4de7a89eac79c4ab2776a9171 to your computer and use it in GitHub Desktop.
Save elkhayder/b158efd4de7a89eac79c4ab2776a9171 to your computer and use it in GitHub Desktop.
Auto detect browser theme for custom favicons
const icon = document.createElement('link');
icon.setAttribute('rel', 'icon');
icon.setAttribute('type', 'image/png');
iconLink = (window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches) ? "favicon-white.png" : "favicon-black.png";
icon.setAttribute('href', iconLink);
document.head.appendChild(icon);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment