A cheap attempt at a native Bluesky client for Android

RichText: Use primary color for links

Change the color of links, mentions, and tags in rich text from `onSurfaceVariant` to the theme's `primary` color to make them more prominent.

+3 -3
+3 -3
app/src/main/java/industries/geesawra/monarch/datalayer/Models.kt
··· 408 408 is FacetFeatureUnion.Link -> withLink( 409 409 LinkAnnotation.Url( 410 410 f.value.uri.uri, 411 - TextLinkStyles(style = SpanStyle(color = MaterialTheme.colorScheme.onSurfaceVariant)) 411 + TextLinkStyles(style = SpanStyle(color = MaterialTheme.colorScheme.primary)) 412 412 ) 413 413 ) { 414 414 append(content.content) ··· 417 417 is FacetFeatureUnion.Mention -> withLink( 418 418 LinkAnnotation.Url( 419 419 f.value.did.did, 420 - TextLinkStyles(style = SpanStyle(color = MaterialTheme.colorScheme.onSurfaceVariant)) 420 + TextLinkStyles(style = SpanStyle(color = MaterialTheme.colorScheme.primary)) 421 421 ) 422 422 ) { 423 423 append( ··· 427 427 428 428 is FacetFeatureUnion.Tag -> withStyle( 429 429 SpanStyle( 430 - color = MaterialTheme.colorScheme.onSurfaceVariant 430 + color = MaterialTheme.colorScheme.primary 431 431 ) 432 432 ) 433 433 {