PaperMate / frontend /js /theme.js
ntphuc149's picture
feat: move theme toggle into account dropdown, add scroll-to-top float button
ad38f4e
Raw
History Blame
280 Bytes
(function () {
// Apply saved theme immediately (before paint) to avoid flash.
// Toggle logic lives in nav-auth.js (inside the account dropdown).
const saved = localStorage.getItem("pr-theme");
if (saved) document.documentElement.setAttribute("data-theme", saved);
})();