using System.Drawing;
using Microsoft.Drawing;
namespace Microsoft.Windows.Forms
{
///
/// 默认值方案
///
public static partial class DefaultTheme
{
///
/// 深深背景色
///
public static Color DarkDarkBackColor = Color.FromArgb(30, 30, 30);
///
/// 深深背景色
///
public const string _DarkDarkBackColor = "30, 30, 30";
///
/// 深背景色
///
public static Color DarkBackColor = Color.FromArgb(37, 37, 37);
///
/// 深背景色
///
public const string _DarkBackColor = "37, 37, 37";
///
/// 背景色
///
public static Color BackColor = Color.FromArgb(45, 45, 45);
///
/// 背景色
///
public const string _BackColor = "45, 45, 45";
///
/// 浅背景色
///
public static Color LightBackColor = Color.FromArgb(51, 51, 51);
///
/// 浅背景色
///
public const string _LightBackColor = "51, 51, 51";
///
/// 浅浅背景色
///
public static Color LightLightBackColor = Color.FromArgb(62, 62, 62);
///
/// 浅浅背景色
///
public const string _LightLightBackColor = "62, 62, 62";
///
/// 背景鼠标移上颜色向量
///
public static ColorVector BackColorHoveredVector = ColorVector.FromArgb(10, 10, 10);
///
/// 背景鼠标移上颜色向量
///
public const string _BackColorHoveredVector = "10, 10, 10";
///
/// 背景鼠标按下颜色向量
///
public static ColorVector BackColorPressedVector = ColorVector.FromArgb(20, 20, 20);
///
/// 背景鼠标按下颜色向量
///
public const string _BackColorPressedVector = "20, 20, 20";
///
/// 背景拥有焦点颜色向量
///
public static ColorVector BackColorFocusedVector = ColorVector.FromArgb(0, 0, 0);
///
/// 背景拥有焦点颜色向量
///
public const string _BackColorFocusedVector = "0, 0, 0";
///
/// 背景状态禁用颜色向量
///
public static ColorVector BackColorDisabledVector = ColorVector.FromArgb(-255, 255, 255, 255);
///
/// 背景状态禁用颜色向量
///
public const string _BackColorDisabledVector = "-255, 255, 255, 255";
///
/// 背景高亮颜色向量
///
public static ColorVector BackColorHighlightVector = ColorVector.FromArgb(-255, 60, -142);
///
/// 背景高亮颜色向量
///
public const string _BackColorHighlightVector = "-255, 60, -142";
}
}