diff --git a/src/app/pwa-head.tsx b/src/app/pwa-head.tsx
index eae2de5..32aebf1 100644
--- a/src/app/pwa-head.tsx
+++ b/src/app/pwa-head.tsx
@@ -3,7 +3,9 @@ const PWAHead = () => (
-
+
+
+
diff --git a/src/app/theme-provider.tsx b/src/app/theme-provider.tsx
index 1e74f37..449665a 100644
--- a/src/app/theme-provider.tsx
+++ b/src/app/theme-provider.tsx
@@ -20,7 +20,7 @@ const MetaThemeProvider = ({
document.head.appendChild(themeColorMeta);
}
- themeColorMeta.content = resolvedTheme === 'dark' ? '#171717' : '#fff';
+ themeColorMeta.content = resolvedTheme === 'dark' ? '#0a0a0a' : '#ffffff';
}, [resolvedTheme]);
return children;