1
0
mirror of https://github.com/go-vikunja/app synced 2024-05-31 17:57:14 +00:00

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

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,
),
),
),