{"version":3,"sources":["../../src/utils/ThemeContext.tsx"],"names":["createContext"],"mappings":";;;;AAUO,MAAM,YAAA,GAAeA,oBAAwC,IAAI","file":"ThemeContext.cjs","sourcesContent":["import { createContext } from \"react\";\nimport type { Theme } from \"./themeHelpers\";\n\nexport interface ThemeContextValue {\n  theme: Theme;\n  resolvedMode: \"light\" | \"dark\";\n  setTheme: (next: Theme) => void;\n  toggle: () => void;\n}\n\nexport const ThemeContext = createContext<ThemeContextValue | null>(null);\n"]}