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