summaryrefslogtreecommitdiffstats
path: root/layouts/partials/scripts-front.html
blob: c28912ad16fe34e81e54f3959cdb478d32f69204 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
<script data-cfasync="false">
  // detect theme data in localStorage
  var fujiThemeData = localStorage.getItem('fuji_data-theme');
  // if first look, set theme mode to auto
  if (!fujiThemeData) {
    localStorage.setItem('fuji_data-theme', 'auto');
  } else {
    // if not auto mode, change the data-theme attribute of body
    if (fujiThemeData !== 'auto') {
      document.body.setAttribute('data-theme', fujiThemeData === 'dark' ? 'dark' : 'light');
    }
  }
</script>