'use client'; import React, { createContext, useContext, ReactNode } from 'react'; import { Theme } from '@/ui/theme/Theme'; import { defaultTheme } from '@/ui/theme/themes/default'; interface ThemeContextType { theme: Theme; } const ThemeContext = createContext(undefined); export function ThemeProvider({ children }: { children: ReactNode }) { // For now, we only have the default theme. // In the future, this could be driven by state, cookies, or user preferences. const value = { theme: defaultTheme, }; return ( {children} ); } export function useTheme() { const context = useContext(ThemeContext); if (context === undefined) { throw new Error('useTheme must be used within a ThemeProvider'); } return context; }