最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

next.js - next-themes forcedTheme="dark" not working - Stack Overflow

programmeradmin1浏览0评论

I'm using next-themes in my Next.js app. I want to force the theme to dark regardless of user preference.

I've set forcedTheme='dark', but:

  • The theme still changes based on the user's system settings.

  • I can manually switch themes using the DevTools theme emulator.

How can I enforce dark mode completely?

My layout.js:

import { ThemeProvider } from 'next-themes'
import './globals.css'

export default function RootLayout({ children }) {
    return (
        <html suppressHydrationWarning>
            <body>
                <ThemeProvider
                    forcedTheme='dark'
                    defaultTheme='dark'
                    attribute='class'
                    enableSystem={false}
                >
                    {children}
                </ThemeProvider>
            </body>
        </html>
    )
}

GitHub Repo:

Hosted URL: /

(Intent: I want users to use dark mode for now as the light mode is not fully ready yet.)

发布评论

评论列表(0)

  1. 暂无评论