Dark mode #25
@ -12,6 +12,17 @@
|
|||||||
/>
|
/>
|
||||||
<link rel="manifest" href="%PUBLIC_URL%/site.webmanifest" />
|
<link rel="manifest" href="%PUBLIC_URL%/site.webmanifest" />
|
||||||
<title>Palette Switcher</title>
|
<title>Palette Switcher</title>
|
||||||
|
<script>
|
||||||
|
if (
|
||||||
|
localStorage.theme === "dark" ||
|
||||||
|
(!("theme" in localStorage) &&
|
||||||
|
window.matchMedia("(prefers-color-scheme: dark)").matches)
|
||||||
|
) {
|
||||||
|
document.documentElement.classList.add("dark");
|
||||||
|
} else {
|
||||||
|
document.documentElement.classList.remove("dark");
|
||||||
|
}
|
||||||
|
</script>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<noscript>You need to enable JavaScript to run this app.</noscript>
|
<noscript>You need to enable JavaScript to run this app.</noscript>
|
||||||
|
@ -33,7 +33,7 @@ function App() {
|
|||||||
};
|
};
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div className="bg-nord-6 dark:bg-nord-0 text-nord-0 dark:text-nord-6 min-h-screen">
|
<div className="bg-nord-6 dark:bg-nord-0 text-nord-0 dark:text-nord-6 min-h-screen">
|
||||||
<Header />
|
<Header />
|
||||||
<main className="container mx-auto pb-5">
|
<main className="container mx-auto pb-5">
|
||||||
<article className="text-xl leading-relaxed max-w-prose space-y-2 mx-auto pb-5 px-2">
|
<article className="text-xl leading-relaxed max-w-prose space-y-2 mx-auto pb-5 px-2">
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
import { faGithub } from "@fortawesome/free-brands-svg-icons";
|
import { faGithub } from "@fortawesome/free-brands-svg-icons";
|
||||||
import { faIgloo } from "@fortawesome/free-solid-svg-icons";
|
import { faIgloo } from "@fortawesome/free-solid-svg-icons";
|
||||||
import { FontAwesomeIcon } from "@fortawesome/react-fontawesome";
|
import { FontAwesomeIcon } from "@fortawesome/react-fontawesome";
|
||||||
|
import ThemeToggler from "./ThemeToggler";
|
||||||
|
|
||||||
function Header() {
|
function Header() {
|
||||||
return (
|
return (
|
||||||
@ -37,6 +38,9 @@ function Header() {
|
|||||||
</a>
|
</a>
|
||||||
. Visit using your own node !
|
. Visit using your own node !
|
||||||
</span>
|
</span>
|
||||||
|
<span className="ml-auto">
|
||||||
|
<ThemeToggler />
|
||||||
|
</span>
|
||||||
</header>
|
</header>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
78
client/src/ThemeToggler.tsx
Normal file
78
client/src/ThemeToggler.tsx
Normal file
@ -0,0 +1,78 @@
|
|||||||
|
import {
|
||||||
|
faMoon,
|
||||||
|
faSun,
|
||||||
|
IconDefinition,
|
||||||
|
} from "@fortawesome/free-solid-svg-icons";
|
||||||
|
import { FontAwesomeIcon } from "@fortawesome/react-fontawesome";
|
||||||
|
import { useEffect, useState } from "react";
|
||||||
|
|
||||||
|
type Theme = "light" | "dark";
|
||||||
|
|
||||||
|
function ThemeToggler() {
|
||||||
|
const userPrefersDarkMode = (): boolean => {
|
||||||
|
return (
|
||||||
|
localStorage.theme === "dark" ||
|
||||||
|
(!("theme" in localStorage) &&
|
||||||
|
window.matchMedia("(prefers-color-scheme: dark)").matches)
|
||||||
|
);
|
||||||
|
};
|
||||||
|
|
||||||
|
const getCurrentTheme = (): Theme => {
|
||||||
|
// We have a theme set
|
||||||
|
if ("theme" in localStorage) {
|
||||||
|
const theme = localStorage.getItem("theme");
|
||||||
|
// Is it valid ?
|
||||||
|
if (theme === "dark" || theme === "light") {
|
||||||
|
return theme;
|
||||||
|
} else {
|
||||||
|
// Invalid theme, remove it and return default
|
||||||
|
localStorage.removeItem("theme");
|
||||||
|
return userPrefersDarkMode() ? "dark" : "light";
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
return userPrefersDarkMode() ? "dark" : "light";
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
const [theme, setTheme] = useState<Theme>(getCurrentTheme());
|
||||||
|
|
||||||
|
const rotateTheme = () => {
|
||||||
|
switch (theme) {
|
||||||
|
case "light":
|
||||||
|
setTheme("dark");
|
||||||
|
break;
|
||||||
|
case "dark":
|
||||||
|
setTheme("light");
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
const getIcon = (): IconDefinition => {
|
||||||
|
switch (theme) {
|
||||||
|
case "light":
|
||||||
|
return faMoon;
|
||||||
|
case "dark":
|
||||||
|
return faSun;
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
useEffect(() => {
|
||||||
|
localStorage.theme = theme;
|
||||||
|
|
||||||
|
if (theme === "dark") {
|
||||||
|
document.documentElement.classList.add("dark");
|
||||||
|
} else if (theme === "light") {
|
||||||
|
document.documentElement.classList.remove("dark");
|
||||||
|
}
|
||||||
|
}, [theme]);
|
||||||
|
|
||||||
|
return (
|
||||||
|
<FontAwesomeIcon
|
||||||
|
icon={getIcon()}
|
||||||
|
onClick={rotateTheme}
|
||||||
|
className="fa-2x hover:text-nord-7 mx-2"
|
||||||
|
/>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
export default ThemeToggler;
|
@ -1,5 +1,6 @@
|
|||||||
module.exports = {
|
module.exports = {
|
||||||
content: ["./src/**/*.{ts,tsx}", "./public/index.html}"],
|
content: ["./src/**/*.{ts,tsx}", "./public/index.html}"],
|
||||||
|
darkMode: "class",
|
||||||
theme: {
|
theme: {
|
||||||
extend: {
|
extend: {
|
||||||
colors: {
|
colors: {
|
||||||
|
Loading…
Reference in New Issue
Block a user