Adjust colors for some components.

This commit is contained in:
KotlinGeekDev
2025-09-24 09:55:53 +01:00
parent ce81157dad
commit 54963067aa
2 changed files with 6 additions and 6 deletions
@@ -32,7 +32,6 @@ import androidx.compose.foundation.pager.rememberPagerState
import androidx.compose.foundation.shape.CircleShape
import androidx.compose.material3.AlertDialog
import androidx.compose.material3.Button
import androidx.compose.material3.ButtonDefaults
import androidx.compose.material3.FloatingActionButton
import androidx.compose.material3.Icon
import androidx.compose.material3.MaterialTheme
@@ -246,7 +245,7 @@ private fun FollowSetFabsAndMenu(
isSetAdditionDialogOpen.value = true
},
shape = CircleShape,
containerColor = ButtonDefaults.filledTonalButtonColors().containerColor,
containerColor = MaterialTheme.colorScheme.primary,
) {
Icon(
painter = painterResource(R.drawable.lock_plus),
@@ -259,7 +258,7 @@ private fun FollowSetFabsAndMenu(
isSetAdditionDialogOpen.value = true
},
shape = CircleShape,
containerColor = ButtonDefaults.filledTonalButtonColors().containerColor,
containerColor = MaterialTheme.colorScheme.primary,
) {
Icon(
painter = painterResource(R.drawable.earth_plus),
@@ -245,10 +245,11 @@ fun BackActionButton(
OutlinedButton(
onClick = onBack,
shape = ButtonBorder,
colors = ButtonDefaults.filledTonalButtonColors(),
colors = ButtonDefaults.buttonColors(),
border = ButtonDefaults.outlinedButtonBorder(false),
elevation = ButtonDefaults.elevatedButtonElevation(defaultElevation = 6.0.dp),
) {
Text(text = stringRes(R.string.back), fontWeight = FontWeight.SemiBold)
Text(text = stringRes(R.string.back), fontWeight = FontWeight.Bold, color = Color.White)
}
}
@@ -399,7 +400,7 @@ fun FollowSetItem(
if (isUserInList) {
MaterialTheme.colorScheme.errorContainer
} else {
ButtonDefaults.filledTonalButtonColors().containerColor
MaterialTheme.colorScheme.primary
},
shape = RoundedCornerShape(percent = 80),
),