Skip to content

Commit f2da1a1

Browse files
committed
Update blurred_button.dart
1 parent da81009 commit f2da1a1

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

lib/app/home/_widgets/blurred_button.dart

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,9 @@ class BlurredIconButton extends StatelessWidget {
139139
style: IconButton.styleFrom(
140140
backgroundColor:
141141
backgroundColor ?? context.colors.surfaceContainerHighest.withValues(alpha: 0.6),
142-
foregroundColor: context.colors.outline,
142+
foregroundColor: Theme.of(context).brightness == Brightness.dark
143+
? const Color.fromARGB(255, 200, 200, 200)
144+
: const Color.fromARGB(255, 70, 70, 70),
143145
),
144146
onPressed: onPressed,
145147
icon: icon,

0 commit comments

Comments
 (0)