Open
Description
In the M3 Theme Web Generator, it is possible to set not only the primary color but also secondary, tertiary, and neutral.
How can I set them to generate the theme?
This is the current function:
const theme = themeFromSourceColor(argbFromHex(primary), [{},]);
How can I add something like:
const theme = themeFromSourceColor(argbFromHex(primary), argbFromHex(secondary), argbFromHex(tertiary), argbFromHex(error), argbFromHex(neutral), [{},]);
or something similar?
Thanks 🙏