Initial commit

This commit is contained in:
2026-03-23 20:59:26 +01:00
commit 16c95f747b
56 changed files with 21177 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
/**
* Lycostorrent - Chargement du thème
* Ce script doit être chargé en premier pour éviter le flash de thème
*/
(function() {
const savedTheme = localStorage.getItem('lycostorrent-theme') || 'dark';
document.documentElement.setAttribute('data-theme', savedTheme);
})();