Currently, if I edit my tailwind.config.js file to set a new theme.colors entry, the .red classes generated are the default one from norska, not the one defined in my custom config.
It seems that this is because the text color plugin loads its config from a shared resources in norska, not from the current tailwind config.
Furthermore, because the plugin disable the default .text-red classes, there is no workaround (even adding corePlugins.textColor: true do not overwrites it.
Currently, if I edit my
tailwind.config.js
file to set a newtheme.colors
entry, the.red
classes generated are the default one from norska, not the one defined in my custom config.It seems that this is because the text color plugin loads its config from a shared resources in norska, not from the current tailwind config.
Furthermore, because the plugin disable the default
.text-red
classes, there is no workaround (even addingcorePlugins.textColor: true
do not overwrites it.