import { colors } from '@rocketseat-ignite-ui/tokens'; import { getContrast } from 'polished'; export function ColorsGrid() { return Object.entries(colors).map(([key, color]) => { return (
${key} {color}
); }); }