CPF/CPF.ReoGrid/Rendering/StaticResources.cs
2024-06-24 10:15:59 +08:00

25 lines
744 B
C#

using System;
using CPF.Drawing;
namespace CPF.ReoGrid.Rendering
{
internal static class StaticResources
{
public static Color SystemColor_Highlight = Color.FromRgb(0, 120, 215);
public static Color SystemColor_Window = Color.FromRgb(byte.MaxValue, byte.MaxValue, byte.MaxValue);
public static Color SystemColor_WindowText = Color.FromRgb(0, 0, 0);
public static Color SystemColor_Control = Color.FromRgb(240, 240, 240);
public static Color SystemColor_ControlLight = Color.FromRgb(227, 227, 227);
public static Color SystemColor_ControlDark = Color.FromRgb(160, 160, 160);
public static Color ControlDarkDarkBrush = Color.FromRgb(105, 105, 105);
public static Color DeepSkyBlue = Color.FromRgb(95, 191, 223);
}
}