style(sidebar): use white text for New Agent button

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
Mohamed Boudra
2026-01-04 10:29:04 +07:00
parent 9c09f32dca
commit 74ed95cc08

View File

@@ -244,7 +244,7 @@ export function SlidingSidebar({ selectedAgentId }: SlidingSidebarProps) {
style={styles.newAgentButton}
onPress={handleCreateAgentMobile}
>
<Plus size={18} color={theme.colors.mutedForeground} />
<Plus size={18} color={theme.colors.foreground} />
<Text style={styles.newAgentButtonText}>New Agent</Text>
</Pressable>
</View>
@@ -352,7 +352,7 @@ const styles = StyleSheet.create((theme) => ({
newAgentButtonText: {
fontSize: theme.fontSize.base,
fontWeight: theme.fontWeight.normal,
color: theme.colors.mutedForeground,
color: theme.colors.foreground,
},
sidebarFooter: {
paddingHorizontal: theme.spacing[4],