Add faux-bold shadows to logo 'i'

This commit is contained in:
Johan Jongsma 2026-02-01 08:59:50 +00:00
parent 2d4decaea6
commit bcee39c9d9
1 changed files with 9 additions and 3 deletions

View File

@ -354,14 +354,20 @@ class _LoginScreenState extends State<LoginScreen> {
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),
],
),
),
),