fix(market): red favorite heart so it pops on the green theme

This commit is contained in:
vjrj 2026-07-13 17:11:31 +02:00
parent 447590862e
commit 7d2d466fee
3 changed files with 3 additions and 2 deletions

View file

@ -180,7 +180,7 @@ class _FavoriteCard extends StatelessWidget {
IconButton(
key: Key('favorites.remove.${offer.authorPubkeyHex}'
'.${offer.id}'),
icon: const Icon(Icons.favorite, color: seedGreen),
icon: const Icon(Icons.favorite, color: seedFavorite),
tooltip: t.favorites.remove,
onPressed: onRemove,
),