mirror of
https://github.com/TheRealOwenRees/echecsfrance.git
synced 2026-07-23 04:26:57 +00:00
themes and dimensions
This commit is contained in:
@@ -0,0 +1,23 @@
|
||||
import { useEffect, useState } from "react";
|
||||
|
||||
function useDarkMode() {
|
||||
const [theme, setTheme] = useState(
|
||||
typeof window !== "undefined" ? localStorage.theme : "dark"
|
||||
);
|
||||
const colorTheme = theme === "dark" ? "light" : "dark";
|
||||
|
||||
useEffect(() => {
|
||||
const root = window.document.documentElement;
|
||||
|
||||
root.classList.remove(colorTheme);
|
||||
root.classList.add(theme);
|
||||
|
||||
if (typeof window !== "undefined") {
|
||||
localStorage.setItem("theme", theme);
|
||||
}
|
||||
}, [theme]);
|
||||
|
||||
return [colorTheme, setTheme];
|
||||
}
|
||||
|
||||
export default useDarkMode;
|
||||
Reference in New Issue
Block a user