Shift darkmode class to separate div

This commit is contained in:
Nilay Majorwar 2021-12-17 23:33:54 +05:30
parent c521713b13
commit 2ef2ab5ea6
2 changed files with 15 additions and 18 deletions

View File

@ -13,14 +13,6 @@ body,
Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
}
body {
background-color: #a7b6c2;
}
body.bp3-dark {
background-color: #202b33;
}
a {
color: inherit;
text-decoration: none;

View File

@ -1,10 +1,10 @@
import { Classes } from "@blueprintjs/core";
import React from "react";
import { Colors } from "@blueprintjs/core";
const DarkModeContext = React.createContext<{
isDark: boolean;
toggleDark: () => void;
}>({ isDark: false, toggleDark: () => {} });
}>({ isDark: true, toggleDark: () => {} });
/** Context provider for managing dark mode state */
export const DarkModeProvider = ({
@ -12,16 +12,21 @@ export const DarkModeProvider = ({
}: {
children: React.ReactNode;
}) => {
const [isDark, setIsDark] = React.useState(false);
const toggleDark = () => {
document.body.classList.toggle(Classes.DARK);
setIsDark((d) => !d);
};
const [isDark, setIsDark] = React.useState(true);
return (
<DarkModeContext.Provider value={{ isDark, toggleDark }}>
{children}
<DarkModeContext.Provider
value={{ isDark, toggleDark: () => setIsDark((d) => !d) }}
>
<div
style={{
height: "100%",
backgroundColor: isDark ? Colors.DARK_GRAY2 : Colors.GRAY4,
}}
className={isDark ? "bp3-dark" : ""}
>
{children}
</div>
</DarkModeContext.Provider>
);
};