Change color or TimelineItemReadMarkerView

This commit is contained in:
Benoit Marty 2025-03-07 18:19:02 +01:00 committed by Benoit Marty
parent 5c6c211bd0
commit b8ef9416ed

View file

@ -37,13 +37,13 @@ internal fun TimelineItemReadMarkerView(
Text( Text(
text = stringResource(id = R.string.screen_room_timeline_read_marker_title).uppercase(), text = stringResource(id = R.string.screen_room_timeline_read_marker_title).uppercase(),
style = ElementTheme.typography.fontBodySmMedium, style = ElementTheme.typography.fontBodySmMedium,
color = ElementTheme.colors.textSecondary, color = ElementTheme.colors.textActionAccent,
) )
HorizontalDivider( HorizontalDivider(
modifier = Modifier modifier = Modifier
.fillMaxWidth() .fillMaxWidth()
.padding(horizontal = 2.dp), .padding(horizontal = 2.dp),
color = ElementTheme.colors.borderInteractivePrimary, color = ElementTheme.colors.textActionAccent,
) )
} }
} }