I'm testing cross compatibility between Safari and Chrome on both desktop and mobile. I've set something relatively simple for font color.
/* JS inline style...something along the lines of this */
const style = {
color: 'black',
WebkitTextFillColor: 'black',
}
<input style={style} value={1}/>
The text shows up black for desktop Chrome and Safari. It shows up as gray on mobile Chrome and Safari though. What's up with that?