Bin
2025-12-17 262fecaa75b2909ad244f12c3b079ed3ff4ae329
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<base href="/storybook/" />
<script>
  function handleThemeColor() {
    let themeColor = window.localStorage.getItem("theme-toggle:prefers-color-scheme");
    themeColor = themeColor ? JSON.parse(themeColor) : "auto";
    if (themeColor === "auto") {
      themeColor = window.matchMedia && window.matchMedia("(prefers-color-scheme: dark)").matches ? "dark" : "light"
    } else if (!themeColor) {
      themeColor = "light";
    }
    document.documentElement.setAttribute("data-color-scheme", themeColor);
  }
  handleThemeColor();
</script>