From 71cbfc59687011fc10f2c4d273362ae539fc0ef4 Mon Sep 17 00:00:00 2001 From: Paul Chote Date: Tue, 28 Jan 2020 19:26:22 +0000 Subject: [PATCH] Change default player color to dark red. --- OpenRA.Game/Settings.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/OpenRA.Game/Settings.cs b/OpenRA.Game/Settings.cs index 486f3a467c..fdcf4685a7 100644 --- a/OpenRA.Game/Settings.cs +++ b/OpenRA.Game/Settings.cs @@ -205,7 +205,7 @@ namespace OpenRA { [Desc("Sets the player nickname.")] public string Name = "Commander"; - public Color Color = Color.FromAhsl(75, 255, 180); + public Color Color = Color.FromArgb(200, 32, 32); public string LastServer = "localhost:1234"; public Color[] CustomColors = { }; }