Skip to content

Commit 44868ac

Browse files
committed
fix quoted card contrast
1 parent e3d667c commit 44868ac

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/tweet/tweet.dart

+2-2
Original file line numberDiff line numberDiff line change
@@ -396,8 +396,8 @@ class TweetTileState extends State<TweetTile> with SingleTickerProviderStateMixi
396396
if (tweet.isQuoteStatus ?? false) {
397397
if (tweet.quotedStatusWithCard != null) {
398398
quotedTweet = Container(
399-
decoration:
400-
BoxDecoration(border: Border.all(color: theme.primaryColor), borderRadius: BorderRadius.circular(8)),
399+
decoration: BoxDecoration(
400+
border: Border.all(color: theme.colorScheme.primary), borderRadius: BorderRadius.circular(8)),
401401
margin: const EdgeInsets.all(8),
402402
child: TweetTile(
403403
clickable: true,

0 commit comments

Comments
 (0)