Tailwind's typography plugin provides prose class which is good to implement markdown like styling.
I want to create another class which overrides some of the styling of this prose class but not mutate the original prose class.
And I want to do this inside tailwind.config.js since I use css-in-js styling and no global css file.
Suppose I currently use prose (provided by tailwind) to apply styles to nested blockquote and code elements.
I would want to use a new custom-prose class with new styling for say nested blockquote but retaining the old styling for nested code (that was provided by prose).
So yes looking for a composable way of doing this. custom-prose should keep applying prose styling where it's not overridden.
Any tips on how to achieve the same ?