using System;
using System.Drawing;
using System.Text;
namespace DevComponents.DotNetBar.Rendering
{
    /// 
    /// Defines the colors for the RibbonTabItem state like but not limited to selected, mouse over etc.
    /// 
    public class Office2007RibbonTabItemStateColorTable
    {
        /// 
        /// Gets or sets the colors for the outer border.
        /// 
        public LinearGradientColorTable OuterBorder = new LinearGradientColorTable();
        /// 
        /// Gets or sets the colors for the inner border.
        /// 
        public LinearGradientColorTable InnerBorder = new LinearGradientColorTable();
        /// 
        /// Gets or sets the background colors.
        /// 
        public LinearGradientColorTable Background = new LinearGradientColorTable();
        /// 
        /// Gets or sets the background highlight colors.
        /// 
        public LinearGradientColorTable BackgroundHighlight = new LinearGradientColorTable();
        /// 
        /// Gets or sets the text color.
        /// 
        public Color Text = Color.Empty;
        /// 
        /// Gets or sets the text color when rendered on Windows Glass.
        /// 
        public Color GlassText = Color.Empty;
    }
}