Skip to content

Instantly share code, notes, and snippets.

@Pinche-Dev
Created May 8, 2021 04:08
Show Gist options
  • Save Pinche-Dev/e6ba8777bb6bc770c62a0c9d2c817dfd to your computer and use it in GitHub Desktop.
Save Pinche-Dev/e6ba8777bb6bc770c62a0c9d2c817dfd to your computer and use it in GitHub Desktop.
edge dark mode
var cover = document.createElement("div");
let css = `
position: fixed;
pointer-events: none;
top: 0;
left: 0;
width: 100vw;
height: 100vh;
background-color: black;
mix-blend-mode: difference;
z-index: 1;
`
cover.setAttribute("style", css);
document.body.appendChild(cover);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment