import { useEffect, useState } from 'react' import { ThemeProviderContext, type Theme } from '../hooks/useTheme' type ThemeProviderProps = { children: React.ReactNode defaultTheme?: Theme storageKey?: string } export function ThemeProvider({ children, defaultTheme = 'light', storageKey = 'tabungin-ui-theme', }: ThemeProviderProps) { const [theme, setTheme] = useState(() => { const stored = localStorage.getItem(storageKey) as Theme // If system theme is stored, convert to light if (stored === 'system') { return 'light' } return stored || defaultTheme }) const [actualTheme, setActualTheme] = useState<'dark' | 'light'>('light') useEffect(() => { const root = window.document.documentElement root.classList.remove('light', 'dark') // Only support light and dark, no system const themeToApply = theme === 'system' ? 'light' : theme root.classList.add(themeToApply) setActualTheme(themeToApply) }, [theme]) const value = { theme, setTheme: (theme: Theme) => { localStorage.setItem(storageKey, theme) setTheme(theme) }, actualTheme, } return ( {children} ) }