Skip to content

Instantly share code, notes, and snippets.

@AshKyd
Last active October 2, 2016 15:58
Show Gist options
  • Save AshKyd/9441234ac8fbff9317b586d1a4e4ac06 to your computer and use it in GitHub Desktop.
Save AshKyd/9441234ac8fbff9317b586d1a4e4ac06 to your computer and use it in GitHub Desktop.
Extract colours from Adobe Colour Wheel https://color.adobe.com/create/color-wheel
// Extract colours from Adobe Colour Wheel https://color.adobe.com/create/color-wheel
Array.from(document.querySelectorAll('[data-mode="hex"] input')).map(input => '#'+input.value).join('\n');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment