Reaccione el color del borde de entrada de texto nativo

<TextInput style={styles.textInput} />

const styles = StyleSheet.create({
 textInput: {
  color: 'white',  // or "#fff" 
 },
});
Puzzled Puffin