import { useContext } from "react"; import { ThemeContext } from "./ThemeContext.js"; export function useTheme() { const ctx = useContext(ThemeContext); if (!ctx) throw new Error("useTheme must be used within ThemeProvider"); return ctx; }