Vestride / fancy-index

A responsive Apache index page.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Add dark-mode

schliflo opened this issue · comments

As this is for fancy index styling it should absolutely have a fancy darkmode. I suggest using the prefers-color-scheme media-query (see https://developer.mozilla.org/en-US/docs/Web/CSS/@media/prefers-color-scheme) like so:

@media (prefers-color-scheme: dark) {
/* do the dark stuff */
}

Maybe I'll find some time the next days to do a proper PR...