Improve a little bit how light/dark theme is inferred, perhaps.
Some checks failed
Deploy Eventually (In)Consistent / build-and-deploy (push) Has been cancelled

This commit is contained in:
Felipe Cotti 2025-02-25 20:25:39 -03:00
parent d13c3aab1e
commit 158d050d00

View file

@ -3,14 +3,22 @@
<noscript>Please enable JavaScript to view comments.</noscript>
<script>
function detectTheme() {
const storedTheme = localStorage.getItem("theme");
if (storedTheme === "dark" || storedTheme === "light") {
return storedTheme;
}
if (window.matchMedia && window.matchMedia("(prefers-color-scheme: dark)").matches) {
return "dark";
}
return "light";
}
const comentarioComments = document.getElementsByTagName("comentario-comments");
if (localStorage.getItem("theme") === "dark") {
for (const commentElement of comentarioComments) {
commentElement.setAttribute("theme", "dark");
}
} else {
for (const commentElement of comentarioComments) {
commentElement.setAttribute("theme", "light");
}
const theme = detectTheme();
for (const commentElement of comentarioComments) {
commentElement.setAttribute("theme", theme);
}
</script>