I know how to customize dark and light themes in tailwind, but I'm curious about extending this functionality to include additional themes such as pink, blue, red, etc. Is there a way to achieve this with regular tailwind CSS?
<p className="text-black dark:text-white orange:text-orange blue:text-blue">Color</p>
Additionally, I am using next-themes for switching between dark and light themes. The setup requires passing different themes like so:
<ThemeProvider themes={['pink', 'red', 'blue', 'light', 'dark']}>
Although I can switch between these themes successfully, I would like tailwind to recognize the selected theme and apply the corresponding styles such as pink:text-pink
.