<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Hackatime Heatmap</title>
<meta name="description" content="Beautiful activity heatmap for your profile!" />
<meta name="author" content="ImShyMike" />
<link rel="icon" href="/favicon.svg" />
<script>
(function () {
const savedTheme = localStorage.getItem('pageTheme');
const prefersDark =
window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches;
const theme =
savedTheme === 'light' || savedTheme === 'dark'
? savedTheme
: prefersDark
? 'dark'
: 'light';
if (theme === 'dark') {
document.documentElement.classList.add('mocha');
}
})();
</script>
%sveltekit.head%
</head>
<body data-sveltekit-preload-data="hover">
<div style="display: contents">%sveltekit.body%</div>
</body>
</html>