Use light/dark theme based on system preference (#17051)

Add a new default theme `auto`, which will automatically switch between
`gitea` (light) and `arc-green` (dark) themes depending on the user's
operating system settings.

Closes: #8183
This commit is contained in:
Gwyneth Morgan 2021-09-27 07:47:44 -07:00 committed by GitHub
parent 868e937a53
commit 4e0cca3f7d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
8 changed files with 19 additions and 9 deletions

View file

@ -0,0 +1,3 @@
@media (prefers-color-scheme: dark) {
@import "theme-arc-green.less";
}