Skip to content

Instantly share code, notes, and snippets.

View elkhayder's full-sized avatar

ZAKARIA EL KHAYDER elkhayder

View GitHub Profile
@elkhayder
elkhayder / Favicon.js
Last active October 28, 2020 01:12
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);