summaryrefslogtreecommitdiffstats
path: root/modules/setting
diff options
context:
space:
mode:
authorsilverwind <me@silverwind.io>2023-04-26 06:56:42 +0200
committerGitHub <noreply@github.com>2023-04-26 00:56:42 -0400
commit517f9f5aa4b02e3f4e41654352014bb604ce76e2 (patch)
tree63b7077819f45dea13609854c308ad6d4529b4db /modules/setting
parent75e35fb03a86e66fbddda30ef2b4d2df892d2b11 (diff)
downloadgitea-517f9f5aa4b02e3f4e41654352014bb604ce76e2.tar.gz
gitea-517f9f5aa4b02e3f4e41654352014bb604ce76e2.zip
Don't set meta `theme-color` by default (#24340)
Fixes https://github.com/go-gitea/gitea/issues/24321. By not setting this meta tag, Safari will use body color for chrome and out-of-viewport areas, which looks much better then static mismatching green. As per [MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/meta/name/theme-color) it's really only Apple browsers who still support this tag, most others have dropped support.
Diffstat (limited to 'modules/setting')
-rw-r--r--modules/setting/ui.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/setting/ui.go b/modules/setting/ui.go
index 90bad50d3b..bf2b2d4bb7 100644
--- a/modules/setting/ui.go
+++ b/modules/setting/ui.go
@@ -77,7 +77,7 @@ var UI = struct {
GraphMaxCommitNum: 100,
CodeCommentLines: 4,
ReactionMaxUserNum: 10,
- ThemeColorMetaTag: `#6cc644`,
+ ThemeColorMetaTag: ``,
MaxDisplayFileSize: 8388608,
DefaultTheme: `auto`,
Themes: []string{`auto`, `gitea`, `arc-green`},