diff --git a/CHANGELOG.md b/CHANGELOG.md index 9add405c1..fc4106554 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -20,6 +20,7 @@ The format is a modified version of [Keep a Changelog](https://keepachangelog.co ### Fixes - Fix scrollbar sometimes not showing during scroll or not reaching the bottom with few items ([@anirudhsnayak](https://github.com/anirudhsnayak)) ([#2304](https://github.com/mihonapp/mihon/pull/2304)) - Fix local source EPUB files not loading ([@AntsyLich](https://github.com/AntsyLich)) ([#2369](https://github.com/mihonapp/mihon/pull/2369)) +- Fix title text color in light mode on mass migration list ([@AntsyLich](https://github.com/AntsyLich)) ([#2370](https://github.com/mihonapp/mihon/pull/2370)) ## [v0.19.0] - 2025-08-04 ### Added diff --git a/app/src/main/java/mihon/feature/migration/list/MigrationListScreenContent.kt b/app/src/main/java/mihon/feature/migration/list/MigrationListScreenContent.kt index 11655ebb7..de6e5fd6c 100644 --- a/app/src/main/java/mihon/feature/migration/list/MigrationListScreenContent.kt +++ b/app/src/main/java/mihon/feature/migration/list/MigrationListScreenContent.kt @@ -44,7 +44,6 @@ import androidx.compose.ui.Modifier import androidx.compose.ui.draw.clip import androidx.compose.ui.graphics.Brush import androidx.compose.ui.graphics.Color -import androidx.compose.ui.graphics.Shadow import androidx.compose.ui.layout.ContentScale import androidx.compose.ui.text.style.TextOverflow import androidx.compose.ui.unit.DpOffset @@ -200,10 +199,10 @@ fun MigrationListItem( .background( Brush.verticalGradient( 0f to Color.Transparent, - 1f to Color(0xAA000000), + 1f to MaterialTheme.colorScheme.background, ), ) - .fillMaxHeight(0.33f) + .fillMaxHeight(0.4f) .fillMaxWidth() .align(Alignment.BottomCenter), ) @@ -214,8 +213,7 @@ fun MigrationListItem( text = manga.title, overflow = TextOverflow.Ellipsis, maxLines = 2, - style = MaterialTheme.typography.labelMedium - .merge(shadow = Shadow(color = Color.Black, blurRadius = 4f)), + style = MaterialTheme.typography.labelMedium, ) BadgeGroup(modifier = Modifier.padding(4.dp)) { Badge(text = "$chapterCount")