Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Change Tile Color for Non Windows Store Apps?

With Windows 8.1, the background color for desktop application tiles on the start screen are no longer grey but colored. It appears to me that the background color of the tile is selected by Windows by calculating the average icon color and selecting the closest matching color of the default tile color palette (e.g. one of our applications has a deep blue and grey icon but the tile background is still turqouise). Is it possible to change this color for non Windows Store (Desktop) Apps (perhaps within the application manifest)?

like image 636
humbagumba Avatar asked Oct 08 '13 13:10

humbagumba


People also ask

How do I change the color of my Start menu tiles?

To change the color of your Start menu, Start screen, taskbar and window borders, go to Settings > Personalization > Colors > Show color on Start, taskbar, and action center. Turn this option on and pick the accent color you'd like to use from the options above.

How do you change the color of the Microsoft store?

Select Start > Settings . Select Personalization > Colors. Under Choose your color, select Custom. Under Choose your default Windows mode, select Dark.


1 Answers

This is documented in MSDN under How to customize Start screen tiles for desktop apps.

Sample XML:

<Application xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    <VisualElements
        BackgroundColor="#FF0000" 
        ... other required attributes omitted for expository purposes...
    />
</Application>
like image 71
Raymond Chen Avatar answered Nov 03 '22 01:11

Raymond Chen