diff --git a/assets/icons/notify_icon.svg b/assets/icons/notify_icon.svg
index 7eee2c6..b105462 100644
--- a/assets/icons/notify_icon.svg
+++ b/assets/icons/notify_icon.svg
@@ -1,4 +1,5 @@
diff --git a/assets/icons/notify_icon_active.svg b/assets/icons/notify_icon_active.svg
index f45e8b8..7c02a9d 100644
--- a/assets/icons/notify_icon_active.svg
+++ b/assets/icons/notify_icon_active.svg
@@ -1,4 +1,5 @@
diff --git a/lib/views/notification/pages/d_notification_page.dart b/lib/views/notification/pages/d_notification_page.dart
index 9d04738..0247447 100644
--- a/lib/views/notification/pages/d_notification_page.dart
+++ b/lib/views/notification/pages/d_notification_page.dart
@@ -168,7 +168,10 @@ class _DesktopNotificationPageState extends State
SizedBox(width: 5.0.w()),
SvgPicture.asset(
AssetsManager.arrowDownSmall,
- color: AppColors.grey80,
+ colorFilter: ColorFilter.mode(
+ AppColors.grey80,
+ BlendMode.srcIn,
+ ),
),
SizedBox(width: 5.0.w()),
],
diff --git a/lib/views/notification/pages/t_notification_page.dart b/lib/views/notification/pages/t_notification_page.dart
index afd18e6..2bb9941 100644
--- a/lib/views/notification/pages/t_notification_page.dart
+++ b/lib/views/notification/pages/t_notification_page.dart
@@ -162,7 +162,10 @@ class _TabletNotificationPageState extends State
SizedBox(width: 5.0.w()),
SvgPicture.asset(
AssetsManager.arrowDownSmall,
- color: AppColors.grey80,
+ colorFilter: ColorFilter.mode(
+ AppColors.grey80,
+ BlendMode.srcIn,
+ ),
),
SizedBox(width: 5.0.w()),
],