diff --git a/ostp-flutter/assets/logo.png b/ostp-flutter/assets/logo.png index da83aeb..b8c1f6a 100644 Binary files a/ostp-flutter/assets/logo.png and b/ostp-flutter/assets/logo.png differ diff --git a/ostp-flutter/lib/ui/home_screen.dart b/ostp-flutter/lib/ui/home_screen.dart index 63e1604..d6f8519 100644 --- a/ostp-flutter/lib/ui/home_screen.dart +++ b/ostp-flutter/lib/ui/home_screen.dart @@ -486,7 +486,9 @@ class _HomeScreenState extends State with TickerProviderStateMixin { child: Image.asset( 'assets/logo.png', width: MediaQuery.of(context).size.shortestSide * 0.6, - color: Colors.white, + // No color tint needed — the asset now carries real alpha + // (background pixels' luminance was baked into alpha, see + // git history), so it's already a pure white silhouette. ), ), ), diff --git a/ostp-flutter/lib/ui/settings_screen.dart b/ostp-flutter/lib/ui/settings_screen.dart index 059185a..5bce972 100644 --- a/ostp-flutter/lib/ui/settings_screen.dart +++ b/ostp-flutter/lib/ui/settings_screen.dart @@ -564,7 +564,9 @@ class _SettingsScreenState extends State { child: Image.asset( 'assets/logo.png', width: MediaQuery.of(context).size.shortestSide * 0.6, - color: Colors.white, + // No color tint needed — the asset now carries real alpha + // (background pixels' luminance was baked into alpha, see + // git history), so it's already a pure white silhouette. ), ), ),