1
1
Fork 1
mirror of https://github.com/go-gitea/gitea.git synced 2024-05-07 09:06:09 +02:00
gitea/web_src/less/themes/theme-auto.less
Gwyneth Morgan 4e0cca3f7d
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
2021-09-27 15:47:44 +01:00

4 lines
74 B
Plaintext

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