using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Windows.Media; namespace SudokuWeek4.Models { public static class Constants { public static Color DefaultSmallCellFontColor = Colors.Green; public static Color DefaultSmallCellReadOnlyFontColor = Colors.Red; public static Color DefaultSmallCellHintFontColor = Colors.Orange; public static Color CheatActivedFontColor = Colors.Blue; } }