Update default blue on iOS

Summary:
Hey,

The `defaultBlue` variable is currently `#0C42FD`. We can see that it's not the same as iOS. According to the official Apple website it's supposed to be `#007AFF`.
See the `Blue` color on [this page](https://developer.apple.com/ios/human-interface-guidelines/visual-design/color/)

No code added.
Closes https://github.com/facebook/react-native/pull/14339

Differential Revision: D5199906

Pulled By: hramos

fbshipit-source-id: c06b0081556dddbfe7fecd255eff941cbbfb95ee
This commit is contained in:
Xavier Villelégier 2017-06-07 08:38:05 -07:00 committed by Facebook Github Bot
parent 4f3da46146
commit f7c89b4187
1 changed files with 1 additions and 1 deletions

View File

@ -136,7 +136,7 @@ class Button extends React.Component {
let defaultBlue = '#2196F3';
if (Platform.OS === 'ios') {
// Measured default tintColor from iOS 10
defaultBlue = '#0C42FD';
defaultBlue = '#007AFF';
}
const styles = StyleSheet.create({