style: update color theming in Kanban components

- Replaced hardcoded colors with CSS variables in ObjectivesBoard and TaskCard for improved theme consistency.
- Updated status icon in STATUS_CONFIG for better visual representation.
- Adjusted global CSS variables for enhanced contrast and clarity across components.
This commit is contained in:
Julien Froidefond
2025-09-15 16:35:16 +02:00
parent c062fcd592
commit 49ab6f0ea4
4 changed files with 11 additions and 11 deletions

View File

@@ -19,7 +19,7 @@ export const STATUS_CONFIG: Record<TaskStatus, StatusConfig> = {
in_progress: {
key: 'in_progress',
label: 'En cours',
icon: '🔄',
icon: '⚙️',
color: 'blue',
order: 2
},