Dark mode switch
Add a dark-mode theme toggle with a Bootstrap Custom Switch
**dark mode switch** is Add a dark-mode theme toggle with a Bootstrap Custom Switch The project is written primarily in HTML, distributed under the MIT License license, first published in 2019. Key topics include: bootstrap, custom-switch, dark-mode-switcher, dark-mode-toggle.
๐ Dark Mode Switch
Add a dark-mode theme toggle with a Bootstrap Custom Switch.
- Uses localStorage to save preference
- Only 383 Bytes minified and gzipped!
Quick start
Several quick start options are available:
- Download the latest release
- Clone the repo
git clone https://github.com/coliff/dark-mode-switch.git - Install with npm
npm install dark-mode-switch - Install with yarn
yarn add dark-mode-switch
Usage
- Add your custom switch for the Dark Mode toggle followed by the
dark-mode-switch.min.jsscript:
Bootstrap 4.x
html<div class="custom-control custom-switch"> <input type="checkbox" class="custom-control-input" id="darkSwitch" /> <label class="custom-control-label" for="darkSwitch">Dark Mode</label> </div> <script src="dark-mode-switch.min.js"></script>
Bootstrap 5.x
html<div class="form-check form-switch"> <input type="checkbox" class="form-check-input" id="darkSwitch" /> <label class="custom-control-label" for="darkSwitch">Dark Mode</label> </div> <script src="dark-mode-switch.min.js"></script>
- Edit the
dark-mode.cssto suit your site - the one included here is a basic example.
How it works
Turning dark mode on will add data-theme="dark" to the body tag. You can use CSS to target the elements on the page like so:
css[data-theme="dark"] { background-color: #111 !important; color: #eee; }
Demo
Browser Support
Works well with all the browsers supported by Bootstrap 4 and Bootstrap 5
To Enable DarkMode in Android Webview
- You need DOM Storage API in order to make this work with WebView.
- Inside OnCreate under WebView paste this line.
WebSettings.setDomStorageEnabled(true)
Credits
Created thanks to the excellent dark-theme and local storage tutorials over at codyhouse.co.
Contributors
Showing top 11 contributors by commit count.
