In .NET there is a class to cast a text HTML colour name to a Color (in this case "Red"):
Color col=(Color)ColorConverter.ConvertFromString("Red");
Brush brush=new SolidColorBrush(col);
(Which I took from here: Cast Color Name to SolidColorBrush)
This works for pretty much all the colours that can be found on wikipedia
Is there an equivalent class/library for Windows Store Apps
that can do the same thing?