using System.Windows.Media;
namespace BPA.UIControl.Models
{
///
/// 主题配色
///
public class ThemeColor
{
///
/// 主色调
///
public Brush Primary { get; set; }
///
/// 亮色调
///
public Brush Light { get; set; }
///
/// 暗色调
///
public Brush Dark { get; set; }
///
/// 强调色调
///
public Brush Accent { get; set; }
}
}