From adea13e85deab38b73fb2f0476873d00a5a3f211 Mon Sep 17 00:00:00 2001 From: Chris Date: Mon, 17 Nov 2025 23:01:54 +0200 Subject: [PATCH] Add blue to low priority tasks (#563) --- frontend/components/Shared/PriorityDropdown.tsx | 2 +- frontend/components/Task/TaskPriorityIcon.tsx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/components/Shared/PriorityDropdown.tsx b/frontend/components/Shared/PriorityDropdown.tsx index edca558..6502170 100644 --- a/frontend/components/Shared/PriorityDropdown.tsx +++ b/frontend/components/Shared/PriorityDropdown.tsx @@ -33,7 +33,7 @@ const PriorityDropdown: React.FC = ({ value: 'low', label: t('priority.low', 'Low'), icon: ( - + ), }, { diff --git a/frontend/components/Task/TaskPriorityIcon.tsx b/frontend/components/Task/TaskPriorityIcon.tsx index b6e6d5d..63b431c 100644 --- a/frontend/components/Task/TaskPriorityIcon.tsx +++ b/frontend/components/Task/TaskPriorityIcon.tsx @@ -66,7 +66,7 @@ const TaskPriorityIcon: React.FC = ({ return 'text-yellow-500'; case 'low': case 0: - return 'text-gray-300'; + return 'text-blue-500'; case null: case undefined: case '':