✨ darkmode/lightmode added
This commit is contained in:
parent
d857ecb30a
commit
b19487f928
3 changed files with 46 additions and 55 deletions
|
@ -9,12 +9,12 @@ import ThemeIcon from './ThemeIcon.astro';
|
||||||
<a class="font-bold" href="/">
|
<a class="font-bold" href="/">
|
||||||
{SITE_TITLE}
|
{SITE_TITLE}
|
||||||
</a>
|
</a>
|
||||||
<ThemeIcon />
|
|
||||||
</div>
|
</div>
|
||||||
<nav>
|
<nav class="flex gap-2">
|
||||||
<HeaderLink href="/about">about</HeaderLink>
|
<HeaderLink href="/about">about</HeaderLink>
|
||||||
<HeaderLink href="#">projects</HeaderLink>
|
<HeaderLink href="#">projects</HeaderLink>
|
||||||
<HeaderLink href="#">resume</HeaderLink>
|
<HeaderLink href="#">resume</HeaderLink>
|
||||||
<HeaderLink href="/blog">blog</HeaderLink>
|
<HeaderLink href="/blog">blog</HeaderLink>
|
||||||
|
<ThemeIcon />
|
||||||
</nav>
|
</nav>
|
||||||
</header>
|
</header>
|
|
@ -1,43 +1,43 @@
|
||||||
---
|
---
|
||||||
---
|
---
|
||||||
|
|
||||||
<button id="themeToggle">
|
<button id="themeToggle">
|
||||||
<svg width="18px" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
|
<svg width="20px" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
|
||||||
<path
|
<path class="sun" fill-rule="evenodd" d="M12 17.5a5.5 5.5 0 1 0 0-11 5.5 5.5 0 0 0 0 11zm0 1.5a7 7 0 1 0 0-14 7 7 0 0 0 0 14zm12-7a.8.8 0 0 1-.8.8h-2.4a.8.8 0 0 1 0-1.6h2.4a.8.8 0 0 1 .8.8zM4 12a.8.8 0 0 1-.8.8H.8a.8.8 0 0 1 0-1.6h2.5a.8.8 0 0 1 .8.8zm16.5-8.5a.8.8 0 0 1 0 1l-1.8 1.8a.8.8 0 0 1-1-1l1.7-1.8a.8.8 0 0 1 1 0zM6.3 17.7a.8.8 0 0 1 0 1l-1.7 1.8a.8.8 0 1 1-1-1l1.7-1.8a.8.8 0 0 1 1 0zM12 0a.8.8 0 0 1 .8.8v2.5a.8.8 0 0 1-1.6 0V.8A.8.8 0 0 1 12 0zm0 20a.8.8 0 0 1 .8.8v2.4a.8.8 0 0 1-1.6 0v-2.4a.8.8 0 0 1 .8-.8zM3.5 3.5a.8.8 0 0 1 1 0l1.8 1.8a.8.8 0 1 1-1 1L3.5 4.6a.8.8 0 0 1 0-1zm14.2 14.2a.8.8 0 0 1 1 0l1.8 1.7a.8.8 0 0 1-1 1l-1.8-1.7a.8.8 0 0 1 0-1z"/>
|
||||||
class="sun"
|
<path class="moon" fill-rule="evenodd" d="M16.5 6A10.5 10.5 0 0 1 4.7 16.4 8.5 8.5 0 1 0 16.4 4.7l.1 1.3zm-1.7-2a9 9 0 0 1 .2 2 9 9 0 0 1-11 8.8 9.4 9.4 0 0 1-.8-.3c-.4 0-.8.3-.7.7a10 10 0 0 0 .3.8 10 10 0 0 0 9.2 6 10 10 0 0 0 4-19.2 9.7 9.7 0 0 0-.9-.3c-.3-.1-.7.3-.6.7a9 9 0 0 1 .3.8z"/>
|
||||||
fill-rule="evenodd"
|
|
||||||
d="M12 17.5a5.5 5.5 0 1 0 0-11 5.5 5.5 0 0 0 0 11zm0 1.5a7 7 0 1 0 0-14 7 7 0 0 0 0 14zm12-7a.8.8 0 0 1-.8.8h-2.4a.8.8 0 0 1 0-1.6h2.4a.8.8 0 0 1 .8.8zM4 12a.8.8 0 0 1-.8.8H.8a.8.8 0 0 1 0-1.6h2.5a.8.8 0 0 1 .8.8zm16.5-8.5a.8.8 0 0 1 0 1l-1.8 1.8a.8.8 0 0 1-1-1l1.7-1.8a.8.8 0 0 1 1 0zM6.3 17.7a.8.8 0 0 1 0 1l-1.7 1.8a.8.8 0 1 1-1-1l1.7-1.8a.8.8 0 0 1 1 0zM12 0a.8.8 0 0 1 .8.8v2.5a.8.8 0 0 1-1.6 0V.8A.8.8 0 0 1 12 0zm0 20a.8.8 0 0 1 .8.8v2.4a.8.8 0 0 1-1.6 0v-2.4a.8.8 0 0 1 .8-.8zM3.5 3.5a.8.8 0 0 1 1 0l1.8 1.8a.8.8 0 1 1-1 1L3.5 4.6a.8.8 0 0 1 0-1zm14.2 14.2a.8.8 0 0 1 1 0l1.8 1.7a.8.8 0 0 1-1 1l-1.8-1.7a.8.8 0 0 1 0-1z"
|
|
||||||
></path>
|
|
||||||
<path
|
|
||||||
class="moon"
|
|
||||||
fill-rule="evenodd"
|
|
||||||
d="M16.5 6A10.5 10.5 0 0 1 4.7 16.4 8.5 8.5 0 1 0 16.4 4.7l.1 1.3zm-1.7-2a9 9 0 0 1 .2 2 9 9 0 0 1-11 8.8 9.4 9.4 0 0 1-.8-.3c-.4 0-.8.3-.7.7a10 10 0 0 0 .3.8 10 10 0 0 0 9.2 6 10 10 0 0 0 4-19.2 9.7 9.7 0 0 0-.9-.3c-.3-.1-.7.3-.6.7a9 9 0 0 1 .3.8z"
|
|
||||||
></path>
|
|
||||||
</svg>
|
</svg>
|
||||||
</button>
|
</button>
|
||||||
|
|
||||||
<script>
|
<style>
|
||||||
|
#themeToggle {
|
||||||
|
border: 0;
|
||||||
|
background: none;
|
||||||
|
}
|
||||||
|
.sun { fill: #815B5B; }
|
||||||
|
.moon { fill: transparent; }
|
||||||
|
|
||||||
|
|
||||||
|
:global(.dark) .sun { fill: transparent; }
|
||||||
|
:global(.dark) .moon { fill: #DDE6ED; }
|
||||||
|
</style>
|
||||||
|
|
||||||
|
<script is:inline>
|
||||||
const theme = (() => {
|
const theme = (() => {
|
||||||
if (
|
if (typeof localStorage !== 'undefined' && localStorage.getItem('theme')) {
|
||||||
typeof localStorage != "undefined" &&
|
return localStorage.getItem('theme');
|
||||||
localStorage.getItem("theme")
|
|
||||||
) {
|
|
||||||
return localStorage.getItem("theme");
|
|
||||||
}
|
}
|
||||||
if (window.matchMedia("(prefers-color-scheme: dark)").matches) {
|
if (window.matchMedia('(prefers-color-scheme: dark)').matches) {
|
||||||
return "dark";
|
return 'dark';
|
||||||
} else {
|
|
||||||
return "light";
|
|
||||||
}
|
}
|
||||||
|
return 'light';
|
||||||
})();
|
})();
|
||||||
|
|
||||||
if (theme === "light") {
|
if (theme === 'light') {
|
||||||
document.documentElement.classList.remove("dark");
|
document.documentElement.classList.remove('dark');
|
||||||
} else {
|
} else {
|
||||||
document.documentElement.classList.add("dark");
|
document.documentElement.classList.add('dark');
|
||||||
}
|
}
|
||||||
|
|
||||||
window.localStorage.setItem("theme", theme);
|
window.localStorage.setItem('theme', theme);
|
||||||
|
|
||||||
const handleToggleClick = () => {
|
const handleToggleClick = () => {
|
||||||
const element = document.documentElement;
|
const element = document.documentElement;
|
||||||
|
@ -45,9 +45,7 @@
|
||||||
|
|
||||||
const isDark = element.classList.contains("dark");
|
const isDark = element.classList.contains("dark");
|
||||||
localStorage.setItem("theme", isDark ? "dark" : "light");
|
localStorage.setItem("theme", isDark ? "dark" : "light");
|
||||||
};
|
}
|
||||||
|
|
||||||
document
|
document.getElementById("themeToggle").addEventListener("click", handleToggleClick);
|
||||||
.getElementById("themeToggle")
|
</script>
|
||||||
.addEventListener("click", handleToggleClick);
|
|
||||||
</script>
|
|
|
@ -16,13 +16,6 @@ html.dark {
|
||||||
|
|
||||||
body {
|
body {
|
||||||
font-family: Verdana, sans-serif;
|
font-family: Verdana, sans-serif;
|
||||||
margin: auto;
|
|
||||||
padding: 20px;
|
|
||||||
max-width: 65ch;
|
|
||||||
text-align: left;
|
|
||||||
word-wrap: break-word;
|
|
||||||
overflow-wrap: break-word;
|
|
||||||
line-height: 1.5;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
#themeToggle {
|
#themeToggle {
|
||||||
|
|
Loading…
Add table
Reference in a new issue