Skip to content

Instantly share code, notes, and snippets.

@EleotleCram
Created May 15, 2025 10:27
Show Gist options
  • Save EleotleCram/c3aad791c5dff466cbfc38efa23b854d to your computer and use it in GitHub Desktop.
Save EleotleCram/c3aad791c5dff466cbfc38efa23b854d to your computer and use it in GitHub Desktop.
Amiga Scanline Vibes (Youtube, Twitch, etc.)
// Paste in browser console
(() => {
let old = document.getElementById('scanline-overlay');
if (old) old.remove();
document.body.appendChild(Object.assign(document.createElement('div'), {
id: 'scanline-overlay',
style: 'position:fixed;top:0;left:0;width:100vw;height:100vh;pointer-events:none;z-index:999999;background-image:repeating-linear-gradient(to bottom, rgba(0,0,0,0.3) 0px, rgba(0,0,0,0.3) 2px, transparent 2px, transparent 4px);'
}));
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment