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:
parent
4f3da46146
commit
f7c89b4187
|
@ -136,7 +136,7 @@ class Button extends React.Component {
|
||||||
let defaultBlue = '#2196F3';
|
let defaultBlue = '#2196F3';
|
||||||
if (Platform.OS === 'ios') {
|
if (Platform.OS === 'ios') {
|
||||||
// Measured default tintColor from iOS 10
|
// Measured default tintColor from iOS 10
|
||||||
defaultBlue = '#0C42FD';
|
defaultBlue = '#007AFF';
|
||||||
}
|
}
|
||||||
|
|
||||||
const styles = StyleSheet.create({
|
const styles = StyleSheet.create({
|
||||||
|
|
Loading…
Reference in New Issue