From 7116940e73632f6d6aa2a7fefa7e91fdfc7d67f6 Mon Sep 17 00:00:00 2001 From: Alberto Furlan Date: Tue, 12 Dec 2023 18:23:17 +0100 Subject: [PATCH] dark mode color fix --- lib/src/theme/theme.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/src/theme/theme.dart b/lib/src/theme/theme.dart index eae3d2bd..e2dc31df 100644 --- a/lib/src/theme/theme.dart +++ b/lib/src/theme/theme.dart @@ -35,7 +35,7 @@ const _darkColorScheme = ColorScheme( error: Colors.red, onError: Color(0xFFF3F3F4), brightness: Brightness.dark, - tertiaryContainer: Color.fromRGBO(58, 58, 58, 1), + tertiaryContainer: Color.fromRGBO(73, 73, 73, 1), ); class AppTheme {