Last active
October 2, 2016 15:58
-
-
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
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
// 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