A cheap attempt at a native Bluesky client for Android

LikeRepostRowView: Color icons based on notification type

Color the like and repost icons in the notification row to match their standard colors elsewhere in the app.

- Likes are now colored with `MaterialTheme.colorScheme.error` (typically red).
- Reposts are now colored with `MaterialTheme.colorScheme.inverseSurface` (typically green).

+6 -1
+6 -1
app/src/main/java/industries/geesawra/monarch/LikeRepostRowView.kt
··· 221 221 Icons.Default.Repeat 222 222 } 223 223 }, 224 - colorFilter = ColorFilter.tint(MaterialTheme.colorScheme.onSurface), 224 + colorFilter = ColorFilter.tint( 225 + when (data.kind) { 226 + RepeatableNotification.Like -> MaterialTheme.colorScheme.error 227 + RepeatableNotification.Repost -> MaterialTheme.colorScheme.inverseSurface 228 + } 229 + ), 225 230 contentDescription = "${ 226 231 when (data.kind) { 227 232 RepeatableNotification.Like -> "Like"