54 lines
1.4 KiB
TypeScript
54 lines
1.4 KiB
TypeScript
|
|
"use client";
|
||
|
|
|
||
|
|
import { useEffect, useState } from "react";
|
||
|
|
import { Button } from "@/components/ui/button";
|
||
|
|
|
||
|
|
type Theme = "light" | "dark";
|
||
|
|
|
||
|
|
function applyTheme(t: Theme) {
|
||
|
|
const html = document.documentElement;
|
||
|
|
html.classList.toggle("dark", t === "dark");
|
||
|
|
html.classList.toggle("light", t === "light");
|
||
|
|
html.style.colorScheme = t;
|
||
|
|
}
|
||
|
|
|
||
|
|
export function ThemeToggle() {
|
||
|
|
const [theme, setTheme] = useState<Theme>("dark");
|
||
|
|
const [mounted, setMounted] = useState(false);
|
||
|
|
|
||
|
|
useEffect(() => {
|
||
|
|
const saved = (localStorage.getItem("theme") as Theme | null) ?? null;
|
||
|
|
const prefers =
|
||
|
|
typeof window !== "undefined" &&
|
||
|
|
window.matchMedia("(prefers-color-scheme: light)").matches
|
||
|
|
? "light"
|
||
|
|
: "dark";
|
||
|
|
const initial: Theme = saved ?? prefers;
|
||
|
|
setTheme(initial);
|
||
|
|
applyTheme(initial);
|
||
|
|
setMounted(true);
|
||
|
|
}, []);
|
||
|
|
|
||
|
|
const toggle = () => {
|
||
|
|
const next: Theme = theme === "dark" ? "light" : "dark";
|
||
|
|
setTheme(next);
|
||
|
|
applyTheme(next);
|
||
|
|
localStorage.setItem("theme", next);
|
||
|
|
};
|
||
|
|
|
||
|
|
return (
|
||
|
|
<Button
|
||
|
|
variant="ghost"
|
||
|
|
size="sm"
|
||
|
|
onClick={toggle}
|
||
|
|
aria-label="Toggle theme"
|
||
|
|
className="px-2 text-muted-foreground"
|
||
|
|
title={mounted ? `${theme === "dark" ? "Light" : "Dark"} mode` : undefined}
|
||
|
|
>
|
||
|
|
<span aria-hidden="true" className="text-base leading-none">
|
||
|
|
{mounted ? (theme === "dark" ? "☀" : "☾") : "☾"}
|
||
|
|
</span>
|
||
|
|
</Button>
|
||
|
|
);
|
||
|
|
}
|