diff options
author | Gwyneth Morgan <gwymor@tilde.club> | 2021-09-27 07:47:44 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-09-27 15:47:44 +0100 |
commit | 4e0cca3f7d9dd227df161e3548cc374c169d3dc6 (patch) | |
tree | a21ca6ae0f8ecab4de9f805771f3b7e453e73b2c /web_src/less/themes | |
parent | 868e937a5354d4d8d9fd754fc80be26a5f345ba6 (diff) | |
download | gitea-4e0cca3f7d9dd227df161e3548cc374c169d3dc6.tar.gz gitea-4e0cca3f7d9dd227df161e3548cc374c169d3dc6.zip |
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
Diffstat (limited to 'web_src/less/themes')
-rw-r--r-- | web_src/less/themes/theme-auto.less | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/web_src/less/themes/theme-auto.less b/web_src/less/themes/theme-auto.less new file mode 100644 index 0000000000..f49e194e1d --- /dev/null +++ b/web_src/less/themes/theme-auto.less @@ -0,0 +1,3 @@ +@media (prefers-color-scheme: dark) { + @import "theme-arc-green.less"; +} |