fix(native): replace #007AFF with colors.brandOrange in dm + room screens

Consistent with chat.tsx refactor — ActivityIndicator, joinBtn, and
avatarEdit badge all now use the theme token.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
chahinebrini 2026-05-16 01:28:08 +02:00
parent a8ccfab274
commit 40ccefab5b
2 changed files with 3 additions and 3 deletions

View File

@ -263,7 +263,7 @@ export default function DmScreen() {
>
{isLoading && messages.length === 0 ? (
<View style={styles.loadingBox}>
<ActivityIndicator color="#007AFF" />
<ActivityIndicator color={colors.brandOrange} />
</View>
) : messages.length === 0 ? (
<View style={styles.loadingBox}>

View File

@ -727,7 +727,7 @@ function makeStyles(colors: ReturnType<typeof useColors>) {
},
joinBtn: {
marginTop: 16,
backgroundColor: '#007AFF',
backgroundColor: colors.brandOrange,
paddingHorizontal: 32,
paddingVertical: 12,
borderRadius: 12,
@ -799,7 +799,7 @@ function makeModalStyles(colors: ReturnType<typeof useColors>) {
width: 28,
height: 28,
borderRadius: 14,
backgroundColor: '#007AFF',
backgroundColor: colors.brandOrange,
borderWidth: 3,
borderColor: colors.bg,
alignItems: 'center',