From 540a0276ab0c75e66271122f84fbf33280ca68ae Mon Sep 17 00:00:00 2001 From: ABykiev Date: Fri, 9 Feb 2024 17:50:03 +0300 Subject: [PATCH] Fix typo olivergreen in IndexedColors Fix typo olivergreen in IndexedColors. Closes #1256 --- main/SS/UserModel/IndexedColors.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main/SS/UserModel/IndexedColors.cs b/main/SS/UserModel/IndexedColors.cs index a8ee19924..932050c35 100644 --- a/main/SS/UserModel/IndexedColors.cs +++ b/main/SS/UserModel/IndexedColors.cs @@ -191,7 +191,7 @@ static IndexedColors() mappingName.Add("darkteal", IndexedColors.DarkTeal); mappingName.Add("seagreen", IndexedColors.SeaGreen); mappingName.Add("darkgreen", IndexedColors.DarkGreen); - mappingName.Add("olivergreen", IndexedColors.OliveGreen); + mappingName.Add("olivegreen", IndexedColors.OliveGreen); mappingName.Add("brown", IndexedColors.Brown); mappingName.Add("plum", IndexedColors.Plum); mappingName.Add("indigo", IndexedColors.Indigo);