Files
shadcn-ui/apps/www/content/docs/dark-mode.mdx
2023-06-22 22:44:52 +04:00

58 lines
1.3 KiB
Plaintext

---
title: Dark Mode
description: Adding dark mode to your site.
---
## Next.js
<Steps>
### Create a theme provider
```tsx title="components/theme-provider.tsx"
"use client"
import * as React from "react"
import { ThemeProvider as NextThemesProvider } from "next-themes"
import { type ThemeProviderProps } from "next-themes/dist/types"
export function ThemeProvider({ children, ...props }: ThemeProviderProps) {
return <NextThemesProvider {...props}>{children}</NextThemesProvider>
}
```
### Wrap your root layout
Add the `ThemeProvider` to your root layout.
```tsx {1,9-11} title="app/layout.tsx"
import { ThemeProvider } from "@/components/theme-provider"
export default function RootLayout({ children }: RootLayoutProps) {
return (
<>
<html lang="en" suppressHydrationWarning>
<head />
<body>
<ThemeProvider attribute="class" defaultTheme="system" enableSystem>
{children}
</ThemeProvider>
</body>
</html>
</>
)
}
```
### Add a mode toggle
Place a mode toggle on your site to toggle between light and dark mode.
<ComponentPreview name="mode-toggle" className="[&_.preview]:items-start" />
</Steps>
## Other frameworks
I'm looking for help writing guides for other frameworks. Help me write guides for Remix, Astro and Vite by [opening an PR](https://github.com/shadcn/ui).