using System;
using System.Text;
using System.Drawing;
namespace DevComponents.DotNetBar.Rendering
{
///
/// Represents the color table of RibbonBar for Office 2007 style. Default values represent blue Luna theme.
///
public class Office2007RibbonBarStateColorTable
{
#region Color Definition
///
/// Gets or sets the height in pixels of top background part.
///
public float TopBackgroundHeight = 15;
///
/// Gets or sets the outer border colors.
///
public LinearGradientColorTable OuterBorder = new LinearGradientColorTable(0xC6D2DF, 0x9FC1DB);
///
/// Gets or sets the inner border colors.
///
public LinearGradientColorTable InnerBorder = new LinearGradientColorTable(0xEFF4FA, 0xF3F9FF);
///
/// Gets or sets the top background colors.
///
public LinearGradientColorTable TopBackground = new LinearGradientColorTable(0xDEE8F5, 0xD1DFF0);
///
/// Gets or sets the bottom background colors.
///
public LinearGradientColorTable BottomBackground = new LinearGradientColorTable(0xC7D8ED, 0xE7F2FF);
///
/// Gets or sets the title background colors.
///
public LinearGradientColorTable TitleBackground = new LinearGradientColorTable(0xC2D9F1, 0xC1D9F0);
///
/// Gets or sets the color of title text.
///
public Color TitleText = ColorScheme.GetColor(0x3E6AAA);
#endregion
}
}