I have a web application that I would like to make in a pinnable website . The <head> element currently has the following:
<meta name="application-name" content="MyWebApp"> <meta name="msapplication-TileColor" content="#666666"> <meta name="msapplication-TileImage" content="/images/favicons/mstile-144x144.png"> <meta name="msapplication-config" content="/images/favicons/browserconfig.xml"> <meta name="theme-color" content="#ffffff">
And browserconfig.xml looks like this:
<?xml version="1.0" encoding="utf-8"?> <browserconfig> <msapplication> <tile> <square70x70logo src="/images/favicons/mstile-70x70.png"/> <square150x150logo src="/images/favicons/mstile-150x150.png"/> <square310x310logo src="/images/favicons/mstile-310x310.png"/> <wide310x150logo src="/images/favicons/mstile-310x150.png"/> <TileColor>#666666</TileColor> </tile> </msapplication> </browserconfig>
However, the tile is currently displayed with very dark text, not white text.
My problem is similar to How to change the text color of text in real time in Windows 8? , except for native applications this is for web applications.
A similar question on MSDN has no answers.
source share