From 07b257e152261352b31a36094a683fbdf32b0c43 Mon Sep 17 00:00:00 2001 From: Fabio Manganiello Date: Sun, 16 Apr 2023 01:51:09 +0200 Subject: [PATCH] Fixed inverted background/theme colors in manifest --- madblog/routes.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/madblog/routes.py b/madblog/routes.py index 1d5e3fa..7940b5f 100644 --- a/madblog/routes.py +++ b/madblog/routes.py @@ -97,8 +97,8 @@ def manifest_route(): "scope": "", "orientation": "portrait", "display": "standalone", - "theme_color": "#ffffff", - "background_color": "#000000", + "theme_color": "#000000", + "background_color": "#ffffff", } )