Block a user
Dark/light mode toggle on the header bar
Having said that, my website is loading the light version when my browser is set to dark, could be a mistake in my code though...
Dark/light mode toggle on the header bar
Your website obviously, but I think @media would be fine, you can also set it so it the person has 'no-preference' then that is the same as dark mode, so dark mode is default, only if the person…
Dark/light mode toggle on the header bar
Seems like you can do it without css, it wouldn't have a button but can use the system choice @media (prefers-color-scheme: dark) { /* Dark theme styles go here */ } @media (prefers-col…