From 3bd522df6e3b355f81af29e5b9464fef68e13afa Mon Sep 17 00:00:00 2001 From: mathiskirchner Date: Sun, 16 Nov 2025 18:29:27 +0100 Subject: [PATCH] change colors to fit home page --- lib/presentation/views/main_menu/groups_view.dart | 4 ++-- lib/presentation/widgets/group_tile.dart | 8 +++----- 2 files changed, 5 insertions(+), 7 deletions(-) diff --git a/lib/presentation/views/main_menu/groups_view.dart b/lib/presentation/views/main_menu/groups_view.dart index c5f8def..6a3f404 100644 --- a/lib/presentation/views/main_menu/groups_view.dart +++ b/lib/presentation/views/main_menu/groups_view.dart @@ -69,8 +69,8 @@ class _GroupsViewState extends State { : (snapshot.data ?? []); return Skeletonizer( effect: PulseEffect( - from: Colors.grey[100]!, - to: Colors.grey[400]!, + from: Colors.grey[800]!, + to: Colors.grey[600]!, duration: const Duration(milliseconds: 800), ), enabled: isLoading, diff --git a/lib/presentation/widgets/group_tile.dart b/lib/presentation/widgets/group_tile.dart index a317248..f61d3ce 100644 --- a/lib/presentation/widgets/group_tile.dart +++ b/lib/presentation/widgets/group_tile.dart @@ -15,7 +15,8 @@ class GroupTile extends StatelessWidget { margin: const EdgeInsets.symmetric(horizontal: 20, vertical: 10), padding: const EdgeInsets.symmetric(vertical: 5, horizontal: 10), decoration: BoxDecoration( - color: CustomTheme.secondaryColor, + color: CustomTheme.boxColor, + border: Border.all(color: CustomTheme.boxBorder), borderRadius: BorderRadius.circular(12), ), child: Column( @@ -30,7 +31,6 @@ class GroupTile extends StatelessWidget { style: const TextStyle( fontWeight: FontWeight.bold, fontSize: 20, - color: Colors.white, ), ), const Spacer(), @@ -39,11 +39,10 @@ class GroupTile extends StatelessWidget { style: const TextStyle( fontWeight: FontWeight.w900, fontSize: 20, - color: Colors.white, ), ), const SizedBox(width: 3), - const Icon(Icons.group), + Icon(Icons.group), ], ), const SizedBox(height: 5), @@ -69,7 +68,6 @@ class GroupTile extends StatelessWidget { style: const TextStyle( fontSize: 17, fontWeight: FontWeight.bold, - color: Colors.white, ), ), ),