DIR:/home/mykeywordtracker.com/www/node_modules/tailwindcss/src/util/ |
Current File : //home/mykeywordtracker.com/www/node_modules/tailwindcss/src/util/flattenColorPalette.js |
const flattenColorPalette = (colors) => Object.assign( {}, ...Object.entries(colors ?? {}).flatMap(([color, values]) => typeof values == 'object' ? Object.entries(flattenColorPalette(values)).map(([number, hex]) => ({ [color + (number === 'DEFAULT' ? '' : `-${number}`)]: hex, })) : [{ [`${color}`]: values }] ) ) export default flattenColorPalette |