Example #1
0
 private Dictionary <int, Color> createColorMap() => new Dictionary <int, Color>
 {
     [000] = Color.Black,                                    // unoccupied
     [001] = DmcColorProcessor.GetByDmcNumber("820").Color,  // Very Dark Royal Blue
     [010] = DmcColorProcessor.GetByDmcNumber("907").Color,  // Light Parrot Green
     [011] = DmcColorProcessor.GetByDmcNumber("3846").Color, // Light Bright Turquoise
     [100] = DmcColorProcessor.GetByDmcNumber("606").Color,  // Bright Orange-Red
     [101] = DmcColorProcessor.GetByDmcNumber("956").Color,  // Geranium pink
     [110] = DmcColorProcessor.GetByDmcNumber("973").Color,  // Bright Canary yellow
     [111] = Color.White,
 };