namespace TProduct.SettingModel
|
{
|
public class Skin
|
{
|
public string ThemeStyle { get; set; } = "The Bezier";
|
|
public string Style { get; set; } = "Office Colorful";
|
|
public string MainFromColor { get; set; } = "#0070C0";
|
|
public string ConfirmButtonColor { get; set; } = "#2960A4";
|
|
public string CancelButtonColor { get; set; } = "#F07409";
|
|
public string StartButtonColor { get; set; } = "#8DB3E2";
|
|
public string FocusRowColor { get; set; } = "#2960A4";
|
|
public string OddRowColor { get; set; } = "#D8D8D8";
|
|
public string EvenRowColor { get; set; } = "#FFFFFF";
|
}
|
}
|