When viewing a page in the Google Chrome browser on Windows, I noticed that card suit symbols (spades, hearts, diamonds, clubs) were correctly colorized using the "style" attribute. However, upon viewing the same page in Google Chrome on Android, the colors I had defined were not displayed and instead default black and red colors were used. This issue was clearly visible in the attached picture.
Here is the HTML code: (and link to project https://stackblitz.com/edit/web-platform-z2cs3t?file=index.html)
<span style="color: #114bb8">♠ spades</span><br />
<span style="color: #f10d0d">♥ hearts</span><br />
<span style="color: #ff9100">♦ diamonds</span><br />
<span style="color: #0da510">♣ clubs</span><br />
https://i.sstatic.net/1nu8K.png
I am curious if there is a way to make Google Chrome on Android display the selected colors as well?
Additionally, I am interested in understanding why Chrome on Android defaults to predefined colors rather than user-defined colors.