using System;
using System.Text;
using System.Drawing;
namespace DevComponents.DotNetBar.Rendering
{
    /// 
    /// Defines the color table for the Ribbon Tab Group.
    /// 
    public class Office2007RibbonTabGroupColorTable
    {
        /// 
        /// Gets or sets the name of the color table.
        /// 
        public string Name = "";
        /// 
        /// Gets or sets the background color.
        /// 
        public LinearGradientColorTable Background = new LinearGradientColorTable(ColorScheme.GetColor(0xCADBF3), ColorScheme.GetColor(0xCDBFD7));
        /// 
        /// Gets or sets the background highlight colors.
        /// 
        public LinearGradientColorTable BackgroundHighlight = new LinearGradientColorTable(Color.FromArgb(192, ColorScheme.GetColor(0xD068C9)), Color.Transparent);
        /// 
        /// Gets or sets the text color.
        /// 
        public Color Text = ColorScheme.GetColor(0x15428B);
        /// 
        /// Gets or sets the border color
        /// 
        public LinearGradientColorTable Border = new LinearGradientColorTable(Color.FromArgb(16, Color.DarkGray), Color.FromArgb(192, Color.DarkGray));
    }
}