// // System.Drawing.SystemColors // // Authors: // Gonzalo Paniagua Javier (gonzalo@ximian.com) // // (C) 2002 Ximian, Inc (http://www.ximian.com) // // Generated using a slightly modified version of the program listed inside comments // in Color.cs // namespace System.Drawing { public sealed class SystemColors { static public Color ActiveBorder { get { return Color.FromArgbSystem (255, 131, 153, 177, "ActiveBorder"); } } static public Color ActiveCaption { get { return Color.FromArgbSystem (255, 79, 101, 125, "ActiveCaption"); } } static public Color ActiveCaptionText { get { return Color.FromArgbSystem (255, 255, 255, 255, "ActiveCaptionText"); } } static public Color AppWorkspace { get { return Color.FromArgbSystem (255, 128, 128, 128, "AppWorkspace"); } } static public Color Control { get { return Color.FromArgbSystem (255, 192, 192, 192, "Control"); } } static public Color ControlDark { get { return Color.FromArgbSystem (255, 79, 101, 125, "ControlDark"); } } static public Color ControlDarkDark { get { return Color.FromArgbSystem (255, 0, 0, 0, "ControlDarkDark"); } } static public Color ControlLight { get { return Color.FromArgbSystem (255, 131, 153, 177, "ControlLight"); } } static public Color ControlLightLight { get { return Color.FromArgbSystem (255, 193, 204, 217, "ControlLightLight"); } } static public Color ControlText { get { return Color.FromArgbSystem (255, 0, 0, 0, "ControlText"); } } static public Color Desktop { get { return Color.FromArgbSystem (255, 0, 0, 0, "Desktop"); } } static public Color GrayText { get { return Color.FromArgbSystem (255, 79, 101, 125, "GrayText"); } } static public Color Highlight { get { return Color.FromArgbSystem (255, 79, 101, 125, "Highlight"); } } static public Color HighlightText { get { return Color.FromArgbSystem (255, 255, 255, 255, "HighlightText"); } } static public Color HotTrack { get { return Color.FromArgbSystem (255, 0, 0, 255, "HotTrack"); } } static public Color InactiveBorder { get { return Color.FromArgbSystem (255, 131, 153, 177, "InactiveBorder"); } } static public Color InactiveCaption { get { return Color.FromArgbSystem (255, 128, 128, 128, "InactiveCaption"); } } static public Color InactiveCaptionText { get { return Color.FromArgbSystem (255, 193, 204, 217, "InactiveCaptionText"); } } static public Color Info { get { return Color.FromArgbSystem (255, 255, 255, 255, "Info"); } } static public Color InfoText { get { return Color.FromArgbSystem (255, 0, 0, 0, "InfoText"); } } static public Color Menu { get { return Color.FromArgbSystem (255, 131, 153, 177, "Menu"); } } static public Color MenuText { get { return Color.FromArgbSystem (255, 0, 0, 0, "MenuText"); } } static public Color ScrollBar { get { return Color.FromArgbSystem (255, 193, 204, 217, "ScrollBar"); } } static public Color Window { get { return Color.FromArgbSystem (255, 255, 255, 255, "Window"); } } static public Color WindowFrame { get { return Color.FromArgbSystem (255, 0, 0, 0, "WindowFrame"); } } static public Color WindowText { get { return Color.FromArgbSystem (255, 0, 0, 0, "WindowText"); } } } }