Skip to content

Instantly share code, notes, and snippets.

@pixelchar
Created September 27, 2013 19:57
Show Gist options
  • Select an option

  • Save pixelchar/6734335 to your computer and use it in GitHub Desktop.

Select an option

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
<?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>
<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