using System;
using System.Text;
using System.Drawing;
namespace DevComponents.DotNetBar.Rendering
{
    /// 
    /// Represents color table for ItemContainer object with BeginGroup set to true.
    /// 
    public class Office2007ItemGroupColorTable
    {
        /// 
        /// Gets or sets the outer border colors.
        /// 
        public LinearGradientColorTable OuterBorder = new LinearGradientColorTable(ColorScheme.GetColor("99B6E0"), ColorScheme.GetColor("7394BD"));
        /// 
        /// Gets or sets the inner border colors.
        /// 
        public LinearGradientColorTable InnerBorder = new LinearGradientColorTable(ColorScheme.GetColor("D5E3F1"), ColorScheme.GetColor("E3EDFB"));
        /// 
        /// Gets or sets the top background colors.
        /// 
        public LinearGradientColorTable TopBackground = new LinearGradientColorTable(ColorScheme.GetColor("C8DBEE"), ColorScheme.GetColor("C9DDF6"));
        /// 
        /// Gets or sets the bottom background colors.
        /// 
        public LinearGradientColorTable BottomBackground = new LinearGradientColorTable(ColorScheme.GetColor("BCD0E9"), ColorScheme.GetColor("D0E1F7"));
        /// 
        /// Gets or sets the dark color of item devider for items inside of the ItemContainer.
        /// 
        public Color ItemGroupDividerDark = Color.FromArgb(196, ColorScheme.GetColor("B8C8DC"));
        /// 
        /// Gets or sets the light color of item devider for items inside of the ItemContainer.
        /// 
        public Color ItemGroupDividerLight = Color.FromArgb(128, ColorScheme.GetColor("FFFFFF"));
    }
}