gbowne1 / spmssite

The code for my old business website.
GNU General Public License v3.0
8 stars 31 forks source link

feat: Light Mode / Dark Mode toggle #50

Closed gbowne1 closed 2 years ago

gbowne1 commented 2 years ago

Prerequisites

Describe the Feature Request

Add a Bootstrap 5.2 & FontAwesome 6.1.2 Toggle Button

Possibly use:

and a bootstrap bg-dark & bg-light class

Describe the Use Case

Switch the page theme to dark or light

Describe Preferred Solution

No response

Describe Alternatives

Or something like:

https://stackoverflow.com/questions/50840168/how-to-detect-if-the-os-is-in-dark-mode-in-browsers

Related Code

From the answer in the above link:

/ Light mode / @media (prefers-color-scheme: light) { body { background-color: white; color: black; } }

/ Dark mode / @media (prefers-color-scheme: dark) { body { background-color: black; color: white; } }

Additional Information

No response