From 1bb95c394dadda07a848252d4f6b6f81bb7e145b Mon Sep 17 00:00:00 2001 From: Alex Date: Sun, 24 Mar 2024 14:22:54 -0500 Subject: [PATCH] styling --- mobile/lib/modules/settings/views/settings_page.dart | 2 +- mobile/lib/utils/immich_app_theme.dart | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/mobile/lib/modules/settings/views/settings_page.dart b/mobile/lib/modules/settings/views/settings_page.dart index eeb4b379f..4c7211975 100644 --- a/mobile/lib/modules/settings/views/settings_page.dart +++ b/mobile/lib/modules/settings/views/settings_page.dart @@ -67,7 +67,7 @@ class _MobileLayout extends StatelessWidget { title: Text( s.title, style: const TextStyle( - fontWeight: FontWeight.bold, + fontWeight: FontWeight.w500, ), ).tr(), leading: Icon(s.icon), diff --git a/mobile/lib/utils/immich_app_theme.dart b/mobile/lib/utils/immich_app_theme.dart index b852b8cb3..d62eb3256 100644 --- a/mobile/lib/utils/immich_app_theme.dart +++ b/mobile/lib/utils/immich_app_theme.dart @@ -52,7 +52,7 @@ final ThemeData immichLightTheme = ThemeData( titleTextStyle: TextStyle( fontFamily: 'BeVietnamPro', color: Colors.indigo, - fontWeight: FontWeight.bold, + fontWeight: FontWeight.w500, fontSize: 18, ), backgroundColor: immichBackgroundColor, @@ -178,7 +178,7 @@ final ThemeData immichDarkTheme = ThemeData( titleTextStyle: TextStyle( fontFamily: 'BeVietnamPro', color: immichDarkThemePrimaryColor, - fontWeight: FontWeight.bold, + fontWeight: FontWeight.w500, fontSize: 18, ), backgroundColor: Color.fromARGB(255, 32, 33, 35),