Dark mode
How to switch to dark mode
Switch to dark mode
To switch to dark mode, you need to add .dark class to your document
document.documentElement.classList.add("dark");
Switch to light mode
To switch to dark mode, you need to remove .dark class to your document
document.documentElement.classList.remove("dark");
Example
This in the code of the theme swith button i use on this website.

"use client";
import React, { useEffect } from "react";
import { useLocalStorage } from "@mantine/hooks";
import { IconButton } from "@repo/react-ui";
import { IconMoon, IconSun } from "@tabler/icons-react";

const themeKey = "theme";

const lightThemeName = "light";
const darkThemeName = "dark";

const ThemeSwitch = () => {
  const [theme, setTheme] = useLocalStorage({
    key: themeKey,
  });

  const changeTheme = () => {
    if (theme === lightThemeName) {
      setTheme(darkThemeName);
    } else {
      setTheme(lightThemeName);
    }
  };

  useEffect(() => {
    if (theme === lightThemeName) {
      document.documentElement.classList.remove(darkThemeName);
    } else {
      document.documentElement.classList.add(darkThemeName);
    }
  }, [theme]);

  return (
    <IconButton
      variant="ghost"
      colorScheme="black"
      size="sm"
      onClick={changeTheme}
    >
      {theme === lightThemeName ? (
        <IconSun size={22} />
      ) : (
        <IconMoon size={22} />
      )}
    </IconButton>
  );
};

export { ThemeSwitch };