-
-
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...
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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