I want to create a System.Drawing.Color from a value like #FF00FF or FF00FF without needing to write code for that. There is any .NET
System.Drawing.Color
#FF00FF
FF00FF
The FromName method worked for me
System.Drawing.Color.FromName("#FF00FF");