Are you using tailwind css in your project with nextjs??
If Yes, then please check the below things:
Check _app.js file, whether you have imported the ThemeProvider or not.
You have to add a Key value pair , the tailwindc.config.js, which is darkMode:"class" and also be sure that you have added path for all the pages inside the content filed of the tailwindcss like this
content: [ "./pages//*.{js,ts,jsx,tsx}", "./components//*.{js,ts,jsx,tsx}", ],
darkMode:"class",
<div className="bg-gray-50 dark:bg-gray-900"> <p className="text-lg text-gray-900 dark:text-gray- 100"> This is a text. </p> </div>
Check all these , solutions, if it helps
James Carly
I am a positive and competent Web Developer who, over the years, has built up a diverse range of skills, qualities and attributes
Please help me. only background color is changing to the dark/light mode