From d84a9892c814a8141f84d14ce99f25aa2ece13e3 Mon Sep 17 00:00:00 2001 From: Kima Date: Wed, 1 May 2024 19:56:11 +0200 Subject: [PATCH] fix pfp color --- refilc_mobile_ui/lib/common/profile_image/profile_image.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/refilc_mobile_ui/lib/common/profile_image/profile_image.dart b/refilc_mobile_ui/lib/common/profile_image/profile_image.dart index d5e4691..440702b 100644 --- a/refilc_mobile_ui/lib/common/profile_image/profile_image.dart +++ b/refilc_mobile_ui/lib/common/profile_image/profile_image.dart @@ -89,7 +89,7 @@ class _ProfileImageState extends State { clipBehavior: Clip.hardEdge, shape: const CircleBorder(), color: widget.name != null && widget.name! == 'Rendszerüzenet' - ? widget.backgroundColor?.withOpacity(0.5) ?? + ? widget.backgroundColor?.withOpacity(0.8) ?? AppColors.of(context).text.withOpacity(0.5) : widget.backgroundColor ?? AppColors.of(context).text.withOpacity(.15),