Skip to content

Instantly share code, notes, and snippets.

@andrewmcodes
Created March 29, 2023 14:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save andrewmcodes/00d4d67becf2b96d502297cd219af962 to your computer and use it in GitHub Desktop.
Save andrewmcodes/00d4d67becf2b96d502297cd219af962 to your computer and use it in GitHub Desktop.
Paste this into the console to highlight all the elements.
$$('*').forEach(el => el.style.outline=`1px solid hsl(${ el.tagName.split('').reduce((sum, c)=> sum+=c.charCodeAt(0), 0) % 360 },99%,50%)`)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment