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
Some checks failed
Deploy Eventually (In)Consistent / build-and-deploy (push) Has been cancelled
This commit is contained in:
parent
d13c3aab1e
commit
158d050d00
1 changed files with 16 additions and 8 deletions
|
@ -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>
|
||||
|
|
Loading…
Add table
Reference in a new issue