fixed color in light mode for kanban view

This commit is contained in:
Benimautner 2023-01-06 17:14:12 +01:00
parent db336be2d3
commit 93f162fe07
1 changed files with 2 additions and 1 deletions

View File

@ -89,7 +89,8 @@ class _BucketTaskCardState extends State<BucketTaskCard> with AutomaticKeepAlive
child: Text(
widget.task.title,
style: (theme.textTheme.titleMedium ?? TextStyle(fontSize: 16)).copyWith(
color: widget.task.textColor,
color: theme.brightness == Brightness.dark
? Colors.white : Colors.black,
),
),
),