gabrielf11 — 9/26/2021, 12:38:06 AM

my website (gabrief11.github.io) has dark mode! (on most pages, more coming soon)

♥ 0 ↩ 0 💬 2 comments

comments

gabrielf11:

litterally all i had to do was this (and a couple other things that didn't listen to it):

<style>
    @media (prefers-color-scheme: dark) {
        body {
            background-color: black;
            color: rgb(255, 255, 255);
        }
    }

    @media (prefers-color-scheme: light) {
        body {
            background-color: white;
            color: black;
        }
    }
</style>
9/26/2021, 12:40:10 AM
gabrielf11:

(sorry for the ping @media, @jeffalo should fix that)

9/26/2021, 12:41:08 AM