From ce0a253369fa0373b84d7f45fc7e005241771b40 Mon Sep 17 00:00:00 2001 From: Thibault Deckers Date: Sat, 24 Sep 2022 18:53:58 +0200 Subject: [PATCH] changed selection overlay tint --- lib/widgets/common/grid/overlay.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/widgets/common/grid/overlay.dart b/lib/widgets/common/grid/overlay.dart index a7fc392de..a1ba82ad8 100644 --- a/lib/widgets/common/grid/overlay.dart +++ b/lib/widgets/common/grid/overlay.dart @@ -47,7 +47,7 @@ class GridItemSelectionOverlay extends StatelessWidget { alignment: AlignmentDirectional.topEnd, padding: padding, decoration: BoxDecoration( - color: isSelected ? Colors.black54 : Colors.transparent, + color: isSelected ? Theme.of(context).colorScheme.secondary.withOpacity(.6) : Colors.transparent, borderRadius: borderRadius, ), duration: duration,