Skip to content

Instantly share code, notes, and snippets.

@Windows81
Last active January 23, 2021 09:33
Show Gist options
  • Save Windows81/fdb34032bc4a56bcc35a83a39a67183f to your computer and use it in GitHub Desktop.
Save Windows81/fdb34032bc4a56bcc35a83a39a67183f to your computer and use it in GitHub Desktop.
Retrieves a list of links to some interesting colours you can name on ColorNames...
// http://www.mieliestronk.com/corncob_caps.txt
document.body.innerText.split('\n').filter(v=>/^[ABCDEFOTIS]{6}$/.test(v)).map(v=>'https://colornames.org/color/'+v
.replaceAll('O','0')
.replaceAll('I','1')
.replaceAll('S','5')
.replaceAll('T','7'))
.join('\n')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment