Skip to content

Commit f794d46

Browse files
committed
Fix StreamSnackbar content colors
1 parent b942906 commit f794d46

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

  • stream-chat-android-compose/src/main/java/io/getstream/chat/android/compose/ui/util

stream-chat-android-compose/src/main/java/io/getstream/chat/android/compose/ui/util/StreamSnackbar.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ internal fun StreamSnackbar(
6464
modifier = modifier.shadow(4.dp, shape = SnackbarShape),
6565
shape = SnackbarShape,
6666
color = ChatTheme.colors.backgroundCoreInverse,
67-
contentColor = ChatTheme.colors.textOnAccent,
67+
contentColor = ChatTheme.colors.textOnDark,
6868
) {
6969
Row(
7070
modifier = Modifier.padding(
@@ -88,7 +88,7 @@ internal fun StreamSnackbar(
8888
StreamTextButton(
8989
onClick = snackbarData::performAction,
9090
style = StreamButtonStyleDefaults.secondaryOutline.copy(
91-
contentColor = ChatTheme.colors.textOnAccent,
91+
contentColor = ChatTheme.colors.textOnDark,
9292
),
9393
size = StreamButtonSize.Small,
9494
text = actionLabel,

0 commit comments

Comments
 (0)