How to add a simple dark mode
By Flavio Copes
Learn how to add a simple dark mode with a few lines of CSS, using prefers-color-scheme and filter invert(100%) while re-inverting images, code, and emoji.
~~~
I’ve used these few lines of CSS to apply dark mode to my website:
@media (prefers-color-scheme: dark) {
body {
filter: invert(100%);
background-color: rgb(29, 32, 31) !important;
}
img,
.astro-code,
.emoji,
iframe /* for recaptcha */ {
filter: invert(100%) !important;
}
}
Looks pretty good!


~~~
Related posts about tutorial: