diff --git a/src/CachedObjects/Struct/CacheColor.cs b/src/CachedObjects/Struct/CacheColor.cs index b3ceee6..fd19836 100644 --- a/src/CachedObjects/Struct/CacheColor.cs +++ b/src/CachedObjects/Struct/CacheColor.cs @@ -106,7 +106,7 @@ namespace Explorer && float.TryParse(b, out float fB) && float.TryParse(a, out float fA)) { - Value = new Color(fR, fB, fG, fA); + Value = new Color(fR, fG, fB, fA); SetValue(); } }