//ThemeContext.js // source: https://plainenglish.io/blog/light-and-dark-mode-in-react-web-application-with-tailwind-css-89674496b942 import React, { createContext, useState, useEffect } from 'react'; const getInitialTheme = () => { if (typeof window !== 'undefined' && window.localStorage) { const storedPrefs = window.localStorage.getItem('color-theme'); if (typeof storedPrefs === 'string') { return storedPrefs; } const userMedia = window.matchMedia('(prefers-color-scheme: dark)'); if (userMedia.matches) { return 'dark'; } } return 'light'; // light theme as the default; }; type ProviderValue = { theme: string; setTheme: React.Dispatch>; }; const defaultContextValue: ProviderValue = { theme: getInitialTheme(), setTheme: () => { return; }, }; export const isDark = (theme: string): boolean => { if (theme === 'system') { return window.matchMedia('(prefers-color-scheme: dark)').matches; } return theme === 'dark'; }; export const ThemeContext = createContext(defaultContextValue); export const ThemeProvider = ({ initialTheme, children }) => { const [theme, setTheme] = useState(getInitialTheme); const rawSetTheme = (rawTheme: string) => { const root = window.document.documentElement; const darkMode = isDark(rawTheme); root.classList.remove(darkMode ? 'light' : 'dark'); root.classList.add(darkMode ? 'dark' : 'light'); localStorage.setItem('color-theme', rawTheme); }; useEffect(() => { const mediaQuery = window.matchMedia('(prefers-color-scheme: dark)'); const changeThemeOnSystemChange = () => { rawSetTheme(mediaQuery.matches ? 'dark' : 'light'); }; mediaQuery.addEventListener('change', changeThemeOnSystemChange); return () => { mediaQuery.removeEventListener('change', changeThemeOnSystemChange); }; }, []); if (initialTheme) { rawSetTheme(initialTheme); } useEffect(() => { rawSetTheme(theme); }, [theme]); return {children}; };