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:
parent
a8ccfab274
commit
40ccefab5b
@ -263,7 +263,7 @@ export default function DmScreen() {
|
|||||||
>
|
>
|
||||||
{isLoading && messages.length === 0 ? (
|
{isLoading && messages.length === 0 ? (
|
||||||
<View style={styles.loadingBox}>
|
<View style={styles.loadingBox}>
|
||||||
<ActivityIndicator color="#007AFF" />
|
<ActivityIndicator color={colors.brandOrange} />
|
||||||
</View>
|
</View>
|
||||||
) : messages.length === 0 ? (
|
) : messages.length === 0 ? (
|
||||||
<View style={styles.loadingBox}>
|
<View style={styles.loadingBox}>
|
||||||
|
|||||||
@ -727,7 +727,7 @@ function makeStyles(colors: ReturnType<typeof useColors>) {
|
|||||||
},
|
},
|
||||||
joinBtn: {
|
joinBtn: {
|
||||||
marginTop: 16,
|
marginTop: 16,
|
||||||
backgroundColor: '#007AFF',
|
backgroundColor: colors.brandOrange,
|
||||||
paddingHorizontal: 32,
|
paddingHorizontal: 32,
|
||||||
paddingVertical: 12,
|
paddingVertical: 12,
|
||||||
borderRadius: 12,
|
borderRadius: 12,
|
||||||
@ -799,7 +799,7 @@ function makeModalStyles(colors: ReturnType<typeof useColors>) {
|
|||||||
width: 28,
|
width: 28,
|
||||||
height: 28,
|
height: 28,
|
||||||
borderRadius: 14,
|
borderRadius: 14,
|
||||||
backgroundColor: '#007AFF',
|
backgroundColor: colors.brandOrange,
|
||||||
borderWidth: 3,
|
borderWidth: 3,
|
||||||
borderColor: colors.bg,
|
borderColor: colors.bg,
|
||||||
alignItems: 'center',
|
alignItems: 'center',
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user