/** * ───────────────────────────────────────────── * SPB Drive — Personal Cloud Drive * ───────────────────────────────────────────── * Author : Simon-Pierre Boucher * Contact : contact@spboucher.ai * File : src/web/assets/js/theme.js * Purpose : Apply the saved theme before first paint (external file — * inline scripts are blocked by the strict CSP) * License : MIT © Simon-Pierre Boucher * ───────────────────────────────────────────── */ (() => { try { const saved = localStorage.getItem('spbdrive-theme'); if (saved === 'dark' || saved === 'light') { document.documentElement.dataset.theme = saved; } const meta = document.getElementById('metaTheme'); if (meta) { meta.content = document.documentElement.dataset.theme === 'dark' ? '#131210' : '#f6f5f1'; } } catch { /* private mode — keep the default light theme */ } })();