Increases the contrast of placeholder text

This commit is contained in:
Vitor Pamplona
2025-11-13 10:45:58 -05:00
parent c9370f8d02
commit 05af3a78e4
@@ -104,8 +104,8 @@ private val LightMediumImportantLink = LightColorPalette.primary.copy(alpha = 0.
private val DarkGrayText = DarkColorPalette.onSurface.copy(alpha = 0.52f)
private val LightGrayText = LightColorPalette.onSurface.copy(alpha = 0.52f)
private val DarkPlaceholderText = DarkColorPalette.onSurface.copy(alpha = 0.32f)
private val LightPlaceholderText = LightColorPalette.onSurface.copy(alpha = 0.32f)
private val DarkPlaceholderText = DarkColorPalette.onSurface.copy(alpha = 0.52f)
private val LightPlaceholderText = LightColorPalette.onSurface.copy(alpha = 0.52f)
private val DarkOnBackgroundColorFilter = ColorFilter.tint(DarkColorPalette.onBackground)
private val LightOnBackgroundColorFilter = ColorFilter.tint(LightColorPalette.onBackground)