using System; using System.Text; using System.Drawing; namespace DevComponents.DotNetBar.Rendering { /// /// Defines colors for the WarningBox control. /// public class Office2007WarningBoxColorTable { #region Default /// /// Gets or sets the background color of WarningBox control. /// public Color BackColor = Color.FromArgb(255, 196, 219, 249); /// /// Gets or sets the border color of the warning panel. /// public Color WarningBorderColor = Color.FromArgb(255, 162, 188, 213); /// /// Gets or sets the back color of the warning panel. /// public Color WarningBackColor1 = Color.FromArgb(255, 255, 255, 255); /// /// Gets or sets the end gradient back color of the warning panel. /// public Color WarningBackColor2 = Color.FromArgb(255, 229, 244, 254); #endregion #region Green /// /// Gets or sets the background color of WarningBox control. /// public Color GreenBackColor = ColorScheme.GetColor(0xC6E5B8); /// /// Gets or sets the border color of the warning panel. /// public Color GreenWarningBorderColor = ColorScheme.GetColor(0x72A45A); /// /// Gets or sets the back color of the warning panel. /// public Color GreenWarningBackColor1 = ColorScheme.GetColor(0xC3D9B9); /// /// Gets or sets the end gradient back color of the warning panel. /// public Color GreenWarningBackColor2 = ColorScheme.GetColor(0x9CBF8B); #endregion #region Yellow /// /// Gets or sets the background color of WarningBox control. /// public Color YellowBackColor = ColorScheme.GetColor(0xFFE69F); /// /// Gets or sets the border color of the warning panel. /// public Color YellowWarningBorderColor = ColorScheme.GetColor(0xEE9311); /// /// Gets or sets the back color of the warning panel. /// public Color YellowWarningBackColor1 = ColorScheme.GetColor(0xFFEBB6); /// /// Gets or sets the end gradient back color of the warning panel. /// public Color YellowWarningBackColor2 = ColorScheme.GetColor(0xFFDF86); #endregion #region Red /// /// Gets or sets the background color of WarningBox control. /// public Color RedBackColor = ColorScheme.GetColor(0xDDACAC); /// /// Gets or sets the border color of the warning panel. /// public Color RedWarningBorderColor = ColorScheme.GetColor(0xC16969); /// /// Gets or sets the back color of the warning panel. /// public Color RedWarningBackColor1 = ColorScheme.GetColor(0xE5BFBF); /// /// Gets or sets the end gradient back color of the warning panel. /// public Color RedWarningBackColor2 = ColorScheme.GetColor(0xD39696); #endregion } }