using System;
using System.Text;
namespace DevComponents.DotNetBar.Rendering
{
    /// 
    /// Defines color table for RibbonBar in various states.
    /// 
    public class Office2007RibbonBarColorTable
    {
        /// 
        /// Gets or sets the colors for the default RibbonBar state.
        /// 
        public Office2007RibbonBarStateColorTable Default = new Office2007RibbonBarStateColorTable();
        /// 
        /// Gets or sets the colors for RibbonBar when mouse is over the control.
        /// 
        public Office2007RibbonBarStateColorTable MouseOver = new Office2007RibbonBarStateColorTable();
        /// 
        /// Gets or sets the colors for RibbonBar when ribbon bar is in overflow state and expanded to show all the items.
        /// 
        public Office2007RibbonBarStateColorTable Expanded = new Office2007RibbonBarStateColorTable();
    }
}