thekid / dialog

Dialog photoblog
2 stars 1 forks source link

Toggle light and dark modes with button #28

Closed thekid closed 1 year ago

thekid commented 1 year ago

...and remember decision in cookie. Implements #9

Dark mode and light mode

Inspiration taken from https://medium.com/codex/how-to-build-a-dark-mode-toggle-with-css-and-javascript-88a095622aa8

thekid commented 1 year ago

Can we make the initial value depend on the OS user preference?

thekid commented 1 year ago

Can we make the initial value depend on the OS user preference?

In JavaScript, using:

window.matchMedia('(prefers-color-scheme: dark)').matches

However, that would cause the page to flicker.

thekid commented 1 year ago

Released in https://github.com/thekid/dialog/releases/tag/v1.7.0