using System.Drawing;
namespace Microsoft.Windows.Forms
{
static partial class DefaultTheme
{
///
/// 透明色
///
public static Color Transparent = Color.Transparent;
///
/// 透明色
///
public const string _Transparent = "Transparent";
///
/// 半透明色,透明度高高
///
public static Color DarkDarkTransparent = Color.FromArgb(20, 255, 255, 255);
///
/// 半透明色,透明度高高
///
public const string _DarkDarkTransparent = "20, 255, 255, 255";
///
/// 半透明色,透明度高
///
public static Color DarkTransparent = Color.FromArgb(40, 255, 255, 255);
///
/// 半透明色,透明度高
///
public const string _DarkTransparent = "40, 255, 255, 255";
///
/// 半透明颜色,透明度低
///
public static Color LightTransparent = Color.FromArgb(60, 255, 255, 255);
///
/// 半透明颜色,透明度低
///
public const string _LightTransparent = "60, 255, 255, 255";
///
/// 半透明颜色,透明度低低
///
public static Color LightLightTransparent = Color.FromArgb(80, 255, 255, 255);
///
/// 半透明颜色,透明度低低
///
public const string _LightLightTransparent = "80, 255, 255, 255";
}
}