public IEnumerable<ConsolePixel> RelatedColors(ConsoleColor cc)
 {
     ConsoleColor c1 = cc.MakeBright();
     return _pixels.Where(p => p.BackgroundColor.MakeBright() == c1 || p.ForegroundColor.MakeBright() == c1);
 }