Skip to content

Instantly share code, notes, and snippets.

@tfeldmann
Created June 24, 2024 15:19
Show Gist options
  • Save tfeldmann/c87effd886834a7c2bf37fe9407291f4 to your computer and use it in GitHub Desktop.
Save tfeldmann/c87effd886834a7c2bf37fe9407291f4 to your computer and use it in GitHub Desktop.
Find the currently active django admin mode (light / dark)
function currentTheme() {
const currentTheme = localStorage.getItem("theme") || "auto";
const prefersDark = window.matchMedia("(prefers-color-scheme: dark)").matches;
if (currentTheme === "auto") {
return prefersDark ? "dark" : "light";
}
return currentTheme;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment