Skip to content

Commit

Permalink
increase track title highlight
Browse files Browse the repository at this point in the history
  • Loading branch information
Chaphasilor committed Nov 8, 2024
1 parent d596560 commit d50e47b
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions lib/components/AlbumScreen/track_list_tile.dart
Original file line number Diff line number Diff line change
Expand Up @@ -723,7 +723,7 @@ class TrackListItemTile extends StatelessWidget {
baseItem.name ?? AppLocalizations.of(context)!.unknownName,
style: TextStyle(
color: Theme.of(context).textTheme.bodyLarge!.color,
fontSize: 15,
fontSize: 15.5,
fontWeight: FontWeight.w500,
height: 1.0),
overflow: TextOverflow.ellipsis,
Expand All @@ -743,7 +743,11 @@ class TrackListItemTile extends StatelessWidget {
AppLocalizations.of(context)!.unknownArtist
: "",
style: TextStyle(
color: Theme.of(context).textTheme.bodyMedium!.color!,
color: Theme.of(context)
.textTheme
.bodyMedium!
.color!
.withOpacity(0.75),
fontSize: 13,
fontWeight: FontWeight.w400,
overflow: TextOverflow.ellipsis),
Expand Down

0 comments on commit d50e47b

Please sign in to comment.