From aa4fb384c6bccdb87b8dc26e2fc57c708b5255ce Mon Sep 17 00:00:00 2001 From: Dorian Date: Fri, 15 May 2026 21:53:53 -0500 Subject: [PATCH] Set mobile system bars to black --- index.html | 4 ++-- public/manifest.webmanifest | 4 ++-- src/style.css | 22 +++++++++++----------- 3 files changed, 15 insertions(+), 15 deletions(-) diff --git a/index.html b/index.html index 4c375f1..03e84c8 100644 --- a/index.html +++ b/index.html @@ -3,11 +3,11 @@ - + - + diff --git a/public/manifest.webmanifest b/public/manifest.webmanifest index 5dd8ae2..e94b5e2 100644 --- a/public/manifest.webmanifest +++ b/public/manifest.webmanifest @@ -8,8 +8,8 @@ "display": "standalone", "display_override": ["fullscreen", "standalone"], "orientation": "portrait", - "background_color": "#0a0a0a", - "theme_color": "#0a0a0a", + "background_color": "#000000", + "theme_color": "#000000", "icons": [ { "src": "/images/app-icon-192.png", diff --git a/src/style.css b/src/style.css index 39f4d7d..33d3321 100644 --- a/src/style.css +++ b/src/style.css @@ -38,7 +38,7 @@ html, body { min-height: 100%; margin: 0; - background: #0a0a0a; + background: #000; } .intro-header > div { @@ -85,11 +85,11 @@ body.menu-open { background: linear-gradient( to bottom, - #0a0a0a 0%, - rgba(10, 10, 10, 0.98) 18%, - rgba(10, 10, 10, 0.78) 42%, - rgba(10, 10, 10, 0.36) 70%, - rgba(10, 10, 10, 0) 100% + #000 0%, + rgba(0, 0, 0, 0.98) 18%, + rgba(0, 0, 0, 0.78) 42%, + rgba(0, 0, 0, 0.36) 70%, + rgba(0, 0, 0, 0) 100% ); padding-bottom: clamp(2.75rem, 8vw, 7rem); pointer-events: none; @@ -249,11 +249,11 @@ body.menu-open { background: linear-gradient( to bottom, - #0a0a0a 0%, - #0a0a0a 30%, - rgba(10, 10, 10, 0.96) 48%, - rgba(10, 10, 10, 0.62) 72%, - rgba(10, 10, 10, 0) 100% + #000 0%, + #000 30%, + rgba(0, 0, 0, 0.96) 48%, + rgba(0, 0, 0, 0.62) 72%, + rgba(0, 0, 0, 0) 100% ); }