From 23299b5ef3f71078e7e793dd7a2e265236a48140 Mon Sep 17 00:00:00 2001 From: Vitor Pamplona Date: Thu, 13 Nov 2025 18:25:49 -0500 Subject: [PATCH] half-way contrast for placeholder texts --- .../main/java/com/vitorpamplona/amethyst/ui/theme/Theme.kt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/amethyst/src/main/java/com/vitorpamplona/amethyst/ui/theme/Theme.kt b/amethyst/src/main/java/com/vitorpamplona/amethyst/ui/theme/Theme.kt index 2ffb582e7..5f876fb25 100644 --- a/amethyst/src/main/java/com/vitorpamplona/amethyst/ui/theme/Theme.kt +++ b/amethyst/src/main/java/com/vitorpamplona/amethyst/ui/theme/Theme.kt @@ -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.52f) -private val LightPlaceholderText = LightColorPalette.onSurface.copy(alpha = 0.52f) +private val DarkPlaceholderText = DarkColorPalette.onSurface.copy(alpha = 0.42f) +private val LightPlaceholderText = LightColorPalette.onSurface.copy(alpha = 0.42f) private val DarkOnBackgroundColorFilter = ColorFilter.tint(DarkColorPalette.onBackground) private val LightOnBackgroundColorFilter = ColorFilter.tint(LightColorPalette.onBackground)