public DisplayColors(string foregroundColorName, string backgroundColorName)
 {
     Foreground = new DisplayColor(foregroundColorName);
     Background = new DisplayColor(backgroundColorName);
 }
 public DisplayColors()
 {
     Foreground = new DisplayColor("Black");
     Background = new DisplayColor("White");
 }