Skip to content

Instantly share code, notes, and snippets.

@AshUK
Created April 1, 2019 14:02
Show Gist options
  • Save AshUK/b79444086615ed56103687a58e7d57d2 to your computer and use it in GitHub Desktop.
Save AshUK/b79444086615ed56103687a58e7d57d2 to your computer and use it in GitHub Desktop.
import { colors } from '@material-ui/core';
let pallete = [];
for (const color in colors) {
for (const hue in colors[color]) {
pallete.push(`$${color}${hue}: ${colors[color][hue]};`);
}
}
console.log(pallete.join('\n'));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment