Created
April 11, 2018 10:39
-
-
Save cortesben/f5956149a4b74de5cacc215ab858c1e5 to your computer and use it in GitHub Desktop.
get the colors from pallet lab tab in chrome
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
var colors = document.querySelectorAll('.sweet-color'); | |
colors.forEach(e => { | |
let styles = window.getComputedStyle(e); | |
console.log(styles["background-color"]); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment