Embrace macOS’s dark mode with Safari

This story might be outdated:
This blog now uses tailwindCSS to handle dark mode; the screenshots also are a bit outdated.

This last Monday (March 25, 2019), Apple released the last version of macOS 10.14.4, along with Safari 12.1. This last version of Safari expose a CSS api using the @media tag allowing you to support a Dark theme for your site, working along with macOS’s dark mode.

If you’re using Safari 12.1 right now, enable the Dark Mode on your Mac, and you’ll find that this very blog post is now in “Dark Mode”, using the very same css method I’m going to provide you.

You may also want to play with this interactive comparative screenshot of the blog:

Just a bit of CSS

Let’s say we’re starting with a very simple CSS website:

body {
    color: #333;
    background: #f8f8f8;
}

You’ll just have to provide extra declaration for the dark-mode alternative:

body {
    color: #333;
    background: #f8f8f8;
}

@media (prefers-color-scheme: dark) {
    body {
        color: #eee;
        background: #111;
    }
}

What about dark websites?

For website that are dark by default, you may provide a “light” alternative to your site, allowing user that prefers light content to use it!

body {
    color: #eee;
    background: #111;
}

@media (prefers-color-scheme: light) {
    body {
        color: #333;
        background: #f8f8f8;
    }
}

Legibility & Contrast

When designing your dark theme alternative, make sure to test every webpage for illegible content. Colored links, syntax highlighting, tables… There are many places where you may find unadapted color schemes and illegible text.

All of them should have their own dark-mode alternative to keep your website legible whatever the user’s color-scheme preference is.

To help you with colors and legibility, you may want to read this cool article: Color Contrast for Better Readability

Cross-compatibility

For now, this feature is only implemented for Safari 12.1
No other browser supports-it yet, but Firefox will introduce it starting with version 67.

As of today, this CSS media query is currently a W3C draft, and we can hope it’ll be more supported by browsers in the future. Until then, you’ll have a working dark-mode for true Apple addicts that still use Safari as their main browser.


Don’t miss a thing!

Don't miss any of my indie dev stories, app updates, or upcoming creations!
Stay in the loop and be the first to experience my apps, betas and stories of my indie journey.

Thank you for registering!
You’ll retrieve all of my latest news!

Your email is sadly invalid.
Can you try again?

An error occurred while registering.
Please try again