From ab6d0961e8071b9f32294b6d04021fd226c38fa9 Mon Sep 17 00:00:00 2001 From: KotlinGeekDev Date: Wed, 24 Sep 2025 11:37:25 +0100 Subject: [PATCH] Even more size and color adjustments. --- .../ui/screen/loggedIn/lists/followsets/FollowSetScreen.kt | 3 ++- .../lists/followsets/FollowSetsManagementDialog.kt | 7 +++++-- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/amethyst/src/main/java/com/vitorpamplona/amethyst/ui/screen/loggedIn/lists/followsets/FollowSetScreen.kt b/amethyst/src/main/java/com/vitorpamplona/amethyst/ui/screen/loggedIn/lists/followsets/FollowSetScreen.kt index 027657365..df54be0f1 100644 --- a/amethyst/src/main/java/com/vitorpamplona/amethyst/ui/screen/loggedIn/lists/followsets/FollowSetScreen.kt +++ b/amethyst/src/main/java/com/vitorpamplona/amethyst/ui/screen/loggedIn/lists/followsets/FollowSetScreen.kt @@ -311,12 +311,13 @@ fun FollowSetListItem( .align(Alignment.CenterVertically) .background( color = MaterialTheme.colorScheme.errorContainer, - shape = RoundedCornerShape(size = 15.dp), + shape = RoundedCornerShape(percent = 80), ), ) { Icon( imageVector = Icons.Default.Delete, contentDescription = null, + modifier = Modifier.size(20.dp), ) } } diff --git a/amethyst/src/main/java/com/vitorpamplona/amethyst/ui/screen/loggedIn/lists/followsets/FollowSetsManagementDialog.kt b/amethyst/src/main/java/com/vitorpamplona/amethyst/ui/screen/loggedIn/lists/followsets/FollowSetsManagementDialog.kt index 47039c36b..b0629981c 100644 --- a/amethyst/src/main/java/com/vitorpamplona/amethyst/ui/screen/loggedIn/lists/followsets/FollowSetsManagementDialog.kt +++ b/amethyst/src/main/java/com/vitorpamplona/amethyst/ui/screen/loggedIn/lists/followsets/FollowSetsManagementDialog.kt @@ -415,11 +415,14 @@ fun FollowSetItem( Icon( imageVector = Icons.Filled.Add, contentDescription = null, - tint = MaterialTheme.colorScheme.onBackground, + tint = Color.White, ) } } - Text(text = stringRes(if (isUserInList) R.string.remove else R.string.add), color = Color.Gray) + Text( + text = stringRes(if (isUserInList) R.string.remove else R.string.add), + color = MaterialTheme.colorScheme.onBackground, + ) } } }