Skip to content

Instantly share code, notes, and snippets.

@cortesben
Created April 11, 2018 10:39
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 cortesben/f5956149a4b74de5cacc215ab858c1e5 to your computer and use it in GitHub Desktop.
Save cortesben/f5956149a4b74de5cacc215ab858c1e5 to your computer and use it in GitHub Desktop.
get the colors from pallet lab tab in chrome
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