From ab2c1c36c28f3e68f5feb9eee4c792ba74800d88 Mon Sep 17 00:00:00 2001 From: SomnusVeritas Date: Mon, 2 Oct 2023 19:09:41 +0200 Subject: [PATCH] fixed huge mistake in theming --- lib/theme.dart | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/lib/theme.dart b/lib/theme.dart index 0d29213..59929b4 100644 --- a/lib/theme.dart +++ b/lib/theme.dart @@ -13,7 +13,8 @@ final lightTheme = _baseTheme.copyWith( ); final darkTheme = _baseTheme.copyWith( - colorScheme: ColorScheme.fromSeed( - seedColor: Colors.purple.shade100, - brightness: Brightness.dark, -)); + colorScheme: ColorScheme.fromSeed( + seedColor: Colors.purple.shade100, + brightness: Brightness.dark, + ), +);