Skip to content

Commit 270c755

Browse files
committed
Update highlight background colors in StreamDesign
1 parent 6c4a3b9 commit 270c755

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

stream-chat-android-compose/src/main/java/io/getstream/chat/android/compose/ui/theme/StreamDesign.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -339,7 +339,7 @@ public object StreamDesign {
339339
presenceBorder = StreamPrimitiveColors.baseWhite,
340340
overlayBackground = StreamPrimitiveColors.baseBlack.copy(alpha = 0.5f),
341341
overlayBackgroundDark = StreamPrimitiveColors.baseBlack.copy(alpha = 0.6f),
342-
highlightBackground = StreamPrimitiveColors.highlightLight,
342+
highlightBackground = StreamPrimitiveColors.yellow50,
343343
)
344344

345345
/**
@@ -418,7 +418,7 @@ public object StreamDesign {
418418
presenceBorder = StreamPrimitiveColors.baseBlack,
419419
overlayBackground = StreamPrimitiveColors.baseBlack.copy(alpha = 0.2f),
420420
overlayBackgroundDark = StreamPrimitiveColors.baseWhite.copy(alpha = 0.6f),
421-
highlightBackground = StreamPrimitiveColors.highlightDark,
421+
highlightBackground = StreamPrimitiveColors.yellow900,
422422
)
423423
}
424424
}

stream-chat-android-compose/src/main/java/io/getstream/chat/android/compose/ui/theme/StreamPrimitiveColors.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,9 +65,9 @@ internal object StreamPrimitiveColors {
6565
val slate700 = Color(0xFF4A4A4A)
6666
val slate800 = Color(0xFF50565D)
6767
val slate900 = Color(0xFF1E252B)
68+
val yellow50 = Color(0xFFFEF9DA)
6869
val yellow100 = Color(0xFFFFF1C2)
6970
val yellow200 = Color(0xFFFFE8A0)
7071
val yellow800 = Color(0xFF9F7700)
71-
val highlightLight = Color(0xFFFBF4DD)
72-
val highlightDark = Color(0xFF302D22)
72+
val yellow900 = Color(0xFF331302)
7373
}

0 commit comments

Comments
 (0)