fix(TaskCard): update background color for improved UI consistency

- Changed the background color of the TaskCard component from '#f0f0f0' to '#E2EAF4' in light mode to enhance visual consistency and user experience.
This commit is contained in:
shancds
2025-07-07 15:17:33 +05:30
parent 5a9ceb4a94
commit 8e62594eff

View File

@@ -210,7 +210,7 @@ const TaskCard: React.FC<TaskCardProps> = memo(({
>
<div className="w-full h-full bg-red-500"style={{
height: 80,
background: themeMode === 'dark' ? '#2a2a2a' : '#f0f0f0',
background: themeMode === 'dark' ? '#2a2a2a' : '#E2EAF4',
borderRadius: 6,
border: `5px`
}}></div>