Created
September 27, 2013 19:57
-
-
Save pixelchar/6734335 to your computer and use it in GitHub Desktop.
XML method for specifying tile color and icons for different sizes of IE 11/Windows 8 Metro tiles (subject to change). http://msdn.microsoft.com/en-US/library/ie/bg183312
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?xml version="1.0" encoding="utf-8"?> | |
| <browserconfig> | |
| <msapplication> | |
| <tile> | |
| <square70x70logo src="images/smalltile.png" /> | |
| <square150x150logo src="images/mediumtile.png" /> | |
| <wide310x150logo src="images/widetile.png" /> | |
| <square310x310logo src="images/largetile.png" /> | |
| <TileColor>#009900</TileColor> | |
| </tile> | |
| </msapplication> | |
| </browserconfig> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <meta name="msapplication-config" content="IEconfig.xml"> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment