mirror of
https://github.com/supabase/supabase.git
synced 2026-05-06 22:18:00 +08:00
This PR fixes a bug where a user might choose `classic-dark` as a theme in `studio` but then `docs` and `marketing` apps will look weird. To test: - Change the localStorage value of `theme` to `classic-dark` - Open `www` and `docs` apps, they should look ok <!-- This is an auto-generated comment: release notes by coderabbit.ai --> ## Summary by CodeRabbit * **New Features** * Added a new "classic-dark" theme option for enhanced visual customization. * **Improvements** * Unified and simplified theme handling across apps for more consistent behavior. * Improved system-theme detection and smoother transitions when switching themes. <!-- end of auto-generated comment: release notes by coderabbit.ai -->
20 lines
530 B
TypeScript
20 lines
530 B
TypeScript
'use client'
|
|
|
|
import { ThemeProvider } from 'common'
|
|
import { Provider as JotaiProvider } from 'jotai'
|
|
import { TooltipProvider } from 'ui'
|
|
|
|
import { MobileSidebarProvider } from '@/context/mobile-sidebar-context'
|
|
|
|
export function Providers({ children }: { children: React.ReactNode }) {
|
|
return (
|
|
<JotaiProvider>
|
|
<ThemeProvider>
|
|
<TooltipProvider delayDuration={0}>
|
|
<MobileSidebarProvider>{children}</MobileSidebarProvider>
|
|
</TooltipProvider>
|
|
</ThemeProvider>
|
|
</JotaiProvider>
|
|
)
|
|
}
|