15 lines
440 B
C#
15 lines
440 B
C#
using System.Drawing;
|
|
|
|
namespace DataTableParsingEngine
|
|
{
|
|
public class TableColors
|
|
{
|
|
public static Color EditingSaved = Color.ForestGreen;
|
|
public static Color PendingEdit = Color.Yellow;
|
|
public static Color RowError = Color.Red;
|
|
public static Color HeaderRow = Color.LightGray;
|
|
public static Color MemberRow = Color.LightBlue;
|
|
public static Color AdSpecial = Color.Silver;
|
|
}
|
|
}
|