From 1993388d9fb3b20f0be6a1d25b4ccd41c49032f4 Mon Sep 17 00:00:00 2001 From: Vitor Pamplona Date: Tue, 19 Sep 2023 16:47:30 -0400 Subject: [PATCH] Darker Boost Username --- .../java/com/vitorpamplona/amethyst/ui/note/NoteCompose.kt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/app/src/main/java/com/vitorpamplona/amethyst/ui/note/NoteCompose.kt b/app/src/main/java/com/vitorpamplona/amethyst/ui/note/NoteCompose.kt index 616268c11..c72293a44 100644 --- a/app/src/main/java/com/vitorpamplona/amethyst/ui/note/NoteCompose.kt +++ b/app/src/main/java/com/vitorpamplona/amethyst/ui/note/NoteCompose.kt @@ -153,6 +153,7 @@ import com.vitorpamplona.amethyst.ui.theme.StdVertSpacer import com.vitorpamplona.amethyst.ui.theme.UserNameMaxRowHeight import com.vitorpamplona.amethyst.ui.theme.UserNameRowHeight import com.vitorpamplona.amethyst.ui.theme.WidthAuthorPictureModifier +import com.vitorpamplona.amethyst.ui.theme.grayText import com.vitorpamplona.amethyst.ui.theme.lessImportantLink import com.vitorpamplona.amethyst.ui.theme.mediumImportanceLink import com.vitorpamplona.amethyst.ui.theme.newItemBackgroundColor @@ -2627,7 +2628,7 @@ fun FirstUserInfoRow( } } - val textColor = if (isRepost) MaterialTheme.colors.placeholderText else Color.Unspecified + val textColor = if (isRepost) MaterialTheme.colors.grayText else Color.Unspecified if (showAuthorPicture) { NoteAuthorPicture(baseNote, nav, accountViewModel, Size25dp)