From bcee39c9d9a339ae61208bb1ca00836d7fce77d0 Mon Sep 17 00:00:00 2001 From: Johan Jongsma Date: Sun, 1 Feb 2026 08:59:50 +0000 Subject: [PATCH] Add faux-bold shadows to logo 'i' --- lib/features/auth/login_screen.dart | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/lib/features/auth/login_screen.dart b/lib/features/auth/login_screen.dart index 4809a1f..9868067 100644 --- a/lib/features/auth/login_screen.dart +++ b/lib/features/auth/login_screen.dart @@ -354,14 +354,20 @@ class _LoginScreenState extends State { color: InouColors.accent, borderRadius: BorderRadius.circular(16), ), - child: const Center( + child: Center( child: Text( 'i', style: TextStyle( color: Colors.white, - fontSize: 56, + fontSize: 54, fontWeight: FontWeight.w900, - fontFamily: 'sans-serif-black', + // Faux-bold effect using shadows + shadows: const [ + Shadow(offset: Offset(0.5, 0), color: Colors.white), + Shadow(offset: Offset(-0.5, 0), color: Colors.white), + Shadow(offset: Offset(0, 0.5), color: Colors.white), + Shadow(offset: Offset(0, -0.5), color: Colors.white), + ], ), ), ),