Skip to content

Commit

Permalink
Fixed text inside tiers to be constant black (#173)
Browse files Browse the repository at this point in the history
  • Loading branch information
iByteABit256 authored Oct 25, 2024
1 parent c17f45b commit ef3f9df
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -374,7 +374,7 @@ fun TierSection(
fontStyle = if (editTierList) FontStyle.Italic else FontStyle.Normal,
fontSize = textSize,
style = MaterialTheme.typography.headlineLarge,
color = MaterialTheme.colorScheme.onBackground,
color = Color.Black,
maxLines = 2,
overflow = TextOverflow.Ellipsis,
)
Expand All @@ -399,7 +399,7 @@ fun TierSection(
text = item.name,
style = MaterialTheme.typography.bodySmall,
modifier = Modifier.padding(vertical = SMALL_PADDING),
color = MaterialTheme.colorScheme.onBackground,
color = Color.Black,
)
}
}
Expand Down

0 comments on commit ef3f9df

Please sign in to comment.