From a73d58aad5b9f06b43e42703048b9c4039a7e90f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20Guillot?= Date: Mon, 11 Sep 2023 19:46:42 -0700 Subject: [PATCH] Status bar is unreadable when using PWA in dark mode on Firefox Android Fixes #2055 --- internal/ui/static_manifest.go | 2 -- 1 file changed, 2 deletions(-) diff --git a/internal/ui/static_manifest.go b/internal/ui/static_manifest.go index a3ed0f81..ad41be05 100644 --- a/internal/ui/static_manifest.go +++ b/internal/ui/static_manifest.go @@ -40,7 +40,6 @@ func (h *handler) showWebManifest(w http.ResponseWriter, r *http.Request) { Icons []webManifestIcon `json:"icons"` ShareTarget webManifestShareTarget `json:"share_target"` Display string `json:"display"` - ThemeColor string `json:"theme_color"` BackgroundColor string `json:"background_color"` } @@ -60,7 +59,6 @@ func (h *handler) showWebManifest(w http.ResponseWriter, r *http.Request) { Description: "Minimalist Feed Reader", Display: displayMode, StartURL: route.Path(h.router, "login"), - ThemeColor: themeColor, BackgroundColor: themeColor, Icons: []webManifestIcon{ {Source: route.Path(h.router, "appIcon", "filename", "icon-120.png"), Sizes: "120x120", Type: "image/png", Purpose: "any"},