diff --git a/src/Files.App/Data/Factories/AppThemeResourcesFactory.cs b/src/Files.App/Data/Factories/AppThemeResourcesFactory.cs
index dbab9954c61b..1042c0451633 100644
--- a/src/Files.App/Data/Factories/AppThemeResourcesFactory.cs
+++ b/src/Files.App/Data/Factories/AppThemeResourcesFactory.cs
@@ -10,102 +10,102 @@ public static class AppThemeResourceFactory
new AppThemeResourceItem
{
BackgroundColor = "#00000000", /* Transparent */
- Name = "Default"
+ Name = "Default".GetLocalizedResource()
},
new AppThemeResourceItem
{
BackgroundColor = "#32FFB900", /* #FFB900 */
- Name = "Yellow Gold"
+ Name = "YellowGold".GetLocalizedResource()
},
new AppThemeResourceItem
{
BackgroundColor = "#32F7630C", /* #F7630C */
- Name = "Orange Bright"
+ Name = "OrangeBright".GetLocalizedResource()
},
new AppThemeResourceItem
{
BackgroundColor = "#32D13438", /* #D13438 */
- Name = "Brick Red"
+ Name = "BrickRed".GetLocalizedResource()
},
new AppThemeResourceItem
{
BackgroundColor = "#32FF4343", /* #FF4343 */
- Name = "Mod Red"
+ Name = "ModRed".GetLocalizedResource()
},
new AppThemeResourceItem
{
BackgroundColor = "#32EA005E", /* #EA005E */
- Name = "Red"
+ Name = "Red".GetLocalizedResource()
},
new AppThemeResourceItem
{
BackgroundColor = "#32EA005E", /* #EA005E */
- Name = "Rose Bright"
+ Name = "RoseBright".GetLocalizedResource()
},
new AppThemeResourceItem
{
BackgroundColor = "#320078D7", /* #0078D7 */
- Name = "Blue"
+ Name = "Blue".GetLocalizedResource()
},
new AppThemeResourceItem
{
BackgroundColor = "#328764B8", /* #8764B8 */
- Name = "Iris Pastel"
+ Name = "IrisPastel".GetLocalizedResource()
},
new AppThemeResourceItem
{
BackgroundColor = "#32B146C2", /* #B146C2 */
- Name = "Violet Red Light"
+ Name = "VioletRedLight".GetLocalizedResource()
},
new AppThemeResourceItem
{
BackgroundColor = "#320099BC", /* #0099BC */
- Name = "Cool Blue Bright"
+ Name = "CoolBlueBright".GetLocalizedResource()
},
new AppThemeResourceItem
{
BackgroundColor = "#3200B7C3", /* #00B7C3 */
- Name = "Seafoam"
+ Name = "Seafoam".GetLocalizedResource()
},
new AppThemeResourceItem
{
BackgroundColor = "#3200B294", /* #00B294 */
- Name = "Mint Light"
+ Name = "MintLight".GetLocalizedResource()
},
new AppThemeResourceItem
{
BackgroundColor = "#327A7574", /* #7A7574 */
- Name = "Gray"
+ Name = "Gray".GetLocalizedResource()
},
new AppThemeResourceItem
{
BackgroundColor = "#32107C10", /* #107C10 */
- Name = "Green"
+ Name = "Green".GetLocalizedResource()
},
new AppThemeResourceItem
{
BackgroundColor = "#32767676", /* #767676 */
- Name = "Overcast"
+ Name = "Overcast".GetLocalizedResource()
},
new AppThemeResourceItem
{
BackgroundColor = "#324C4A48", /* #4C4A48 */
- Name = "Storm"
+ Name = "Storm".GetLocalizedResource()
},
new AppThemeResourceItem
{
BackgroundColor = "#3269797E", /* #69797E */
- Name = "Blue Gray"
+ Name = "BlueGray".GetLocalizedResource()
},
new AppThemeResourceItem
{
BackgroundColor = "#324A5459", /* #4A5459 */
- Name = "Gray Dark"
+ Name = "GrayDark".GetLocalizedResource()
},
new AppThemeResourceItem
{
BackgroundColor = "#327E735F", /* #7E735F */
- Name = "Camouflage"
+ Name = "Camouflage".GetLocalizedResource()
}
};
}
diff --git a/src/Files.App/Strings/en-US/Resources.resw b/src/Files.App/Strings/en-US/Resources.resw
index 6045b7e2f870..4553f1cc77b6 100644
--- a/src/Files.App/Strings/en-US/Resources.resw
+++ b/src/Files.App/Strings/en-US/Resources.resw
@@ -3450,4 +3450,80 @@
Leave app running in the background when the window is closed
+
+ Blue
+ One of the custom color themes
+
+
+ Blue Gray
+ One of the custom color themes
+
+
+ Brick Red
+ One of the custom color themes
+
+
+ Camouflage
+ One of the custom color themes
+
+
+ Cool Blue Bright
+ One of the custom color themes
+
+
+ Gray
+ One of the custom color themes
+
+
+ Gray Dark
+ One of the custom color themes
+
+
+ Green
+ One of the custom color themes
+
+
+ Iris Pastel
+ One of the custom color themes
+
+
+ Mint Light
+ One of the custom color themes
+
+
+ Mod Red
+ One of the custom color themes
+
+
+ Orange Bright
+ One of the custom color themes
+
+
+ Overcast
+ One of the custom color themes
+
+
+ Red
+ One of the custom color themes
+
+
+ Rose Bright
+ One of the custom color themes
+
+
+ Seafoam
+ One of the custom color themes
+
+
+ Storm
+ One of the custom color themes
+
+
+ Violet Red Light
+ One of the custom color themes
+
+
+ Yellow Gold
+ One of the custom color themes
+
\ No newline at end of file