style: update TaskCard badge colors to use CSS variables
- Changed badge text and border colors from hardcoded values to CSS variables for improved theming and consistency.
This commit is contained in:
@@ -527,7 +527,7 @@ const TaskCard = forwardRef<HTMLDivElement, TaskCardProps>(
|
||||
|
||||
{/* Nombre de todos reliés */}
|
||||
{todosCount !== undefined && todosCount > 0 && (
|
||||
<Badge variant="outline" size="sm" className="text-cyan-400 border-cyan-400/30">
|
||||
<Badge variant="outline" size="sm" className="text-[var(--primary)] border-[var(--primary)]/30">
|
||||
📝 {todosCount}
|
||||
</Badge>
|
||||
)}
|
||||
|
||||
Reference in New Issue
Block a user