Skip to content

Commit

Permalink
[PBE-5154] fix checkbox visibility in dark mode
Browse files Browse the repository at this point in the history
  • Loading branch information
kanat committed Jul 8, 2024
1 parent 849130c commit 60e659d
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -454,7 +454,10 @@ public fun DefaultMessageComposerFooterContent(
Checkbox(
checked = messageComposerState.alsoSendToChannel,
onCheckedChange = { onAlsoSendToChannelSelected(it) },
colors = CheckboxDefaults.colors(ChatTheme.colors.primaryAccent),
colors = CheckboxDefaults.colors(
ChatTheme.colors.primaryAccent,
ChatTheme.colors.textLowEmphasis,
),
)

Spacer(modifier = Modifier.width(8.dp))
Expand Down

0 comments on commit 60e659d

Please sign in to comment.