using System; using System.Text; using System.Drawing; namespace DevComponents.DotNetBar.Rendering { /// /// Represents the color table for key tips. /// public class Office2007KeyTipsColorTable { /// /// Gets or sets KeyTip Text color. /// public Color KeyTipText = ColorScheme.GetColor(0x4C4C4C); /// /// Gets or sets KeyTip border color. /// public Color KeyTipBorder = ColorScheme.GetColor(0x767676); /// /// Gets or sets KeyTip Background color. /// public Color KeyTipBackground = ColorScheme.GetColor(0xFDFDFE); } }