I need to generate random color names e.g. \"Red\", \"White\" etc. How can I do it? I am able to generate random color like this:
Random randonGen = new Ran
private string getRandColor() { Random rnd = new Random(); string hexOutput = String.Format("{0:X}", rnd.Next(0, 0xFFFFFF)); while (hexOutput.Length < 6) hexOutput = "0" + hexOutput; return "#" + hexOutput; }