Open
Description
Versions:
- Package Version: 2.6.1
- Tailwindcss Version: 3.3.3
Question:
I'm trying to create the full suite of Tailwind classes into custom props for a package I'm working on.
I've already created the full color palette which look like so:
:root {
--colors-inherit: inherit;
--colors-current: currentColor;
--colors-transparent: transparent;
--colors-black: #000;
--colors-white: #fff;
--colors-slate-50: #f8fafc;
--colors-slate-100: #f1f5f9;
...
}
Now I want to generate other elements with color props, but I want to use the variable obviously as opposed to the hex code again:
:root {
--border-black: var(--colors-black);
--bg-slate-400: var(--colors-slate-400);
...
}
It would be supper unproductive to have to change hexes all over the place wherever the color prop is used.
So in my Tailwind Config I have the variables property as a function passing in theme and colors:
variables: (theme, colors) => ({
DEFAULT: {
bg: {
'': ??? // what to do here to loop through colors
}
}
})
If I do the following:
bg: {
'': theme('colors')
}
I'll get all the colors with hex
:root {
...
--bg-slate-400: #94a3b8;
...
}
How can I dynamically loop through the colors array and generate vars:
`var(--colors-${color}-${number})`
Thanks