reactjs-nextjs-darkmode
v2.1.4
Published
![63d5ae97684108e603c87bcd_1__l0vaIoI0RQu9_io9pJJIw](https://github.com/mosenn/toggel-npm-package/assets/91747908/dbd62166-c9c9-4e24-8e6c-6348e6eb2318)
Downloads
2
Maintainers
Readme
simpel dark mode package
This is simpel package for dark mode
so much project need dark mode this package helpful to fast create dark mode in you project ,
this package work for reactjs and nextjs you can customize backgroundColor and Color
install:
npm i reactjs-nextjs-darkmode
NOTE
For nextjs, this package runs on the client, you can't use it on the server side
Add "use client" at the top level of your function then you can use this package in nextjs
import:
import { Toggel } from "reactjs-nextjs-darkmode";
take darkMode from Toggel()
function App() {
const darkMode = Toggel();
const { isDark, activeDarkMode, styleOption } = darkMode;
}
you can check them with console.log:
console.log(isDark);
console.log(activeDarkMode);
console.log(styleOption.backgroundColor);
| Tables | type | | -------------- | -------- | | isDark | boolean | | activeDarkMode | function | | styleOption | object |
You can customize the background color and dark mode
note : you can set rgb or rgba
function App() {
styleOption.backgroundColor = "red";
styleOption.color = "blue";
}
set style in parent in your code
<div style={{ backgroundColor: isDark && styleOption.backgroundColor, color:
isDark && styleOption.color,}} >
</div>
button for call function dark mode
<button onClick="{activeDarkMode}">toggel</button>