diff --git a/mobile/lib/theme/colors.dart b/mobile/lib/theme/colors.dart index be8ed8e7e4..f46e4e6fbf 100644 --- a/mobile/lib/theme/colors.dart +++ b/mobile/lib/theme/colors.dart @@ -163,8 +163,8 @@ const Color backgroundElevatedLight = Color.fromRGBO(255, 255, 255, 1); const Color backgroundElevated2Light = Color.fromRGBO(251, 251, 251, 1); const Color backgroundBaseDark = Color.fromRGBO(0, 0, 0, 1); -const Color backgroundElevatedDark = Color.fromRGBO(27, 27, 27, 1); -const Color backgroundElevated2Dark = Color.fromRGBO(37, 37, 37, 1); +const Color backgroundElevatedDark = Color.fromRGBO(9, 9, 9, 1); +const Color backgroundElevated2Dark = Color.fromRGBO(18, 18, 18, 1); // Backdrop Colors const Color backdropBaseLight = Color.fromRGBO(255, 255, 255, 0.92); diff --git a/mobile/lib/ui/home/home_app_bar_widget.dart b/mobile/lib/ui/home/home_app_bar_widget.dart index 60b512b7ea..31ed26db2f 100644 --- a/mobile/lib/ui/home/home_app_bar_widget.dart +++ b/mobile/lib/ui/home/home_app_bar_widget.dart @@ -78,7 +78,7 @@ class _HomeAppBarWidgetState extends State { AppBar build(BuildContext context) { final colorScheme = getEnteColorScheme(context); return AppBar( - backgroundColor: colorScheme.backgroundBase, + backgroundColor: colorScheme.backgroundElevated, elevation: 4, surfaceTintColor: Colors.transparent, shadowColor: Colors.black.withOpacity(0.2),