Skip to content

Instantly share code, notes, and snippets.

@michalbe
Last active August 29, 2015 14:24
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 michalbe/f9b740807eaa6fd6d3e6 to your computer and use it in GitHub Desktop.
Save michalbe/f9b740807eaa6fd6d3e6 to your computer and use it in GitHub Desktop.
get all x11 colors
// run this script here: http://cng.seas.rochester.edu/CNG/docs/x11color.html
var result = [];
Array.prototype.slice.call(
document.querySelectorAll('tr td:nth-child(2n):not([bgcolor=black]):not([valign=top])')
).forEach(function(color){
result.push(color.innerHTML);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment