Added predefined Colors values for Green and Blue

This commit is contained in:
Michael Becker 2015-04-22 08:24:16 -04:00
parent 2b4e90632a
commit 6e28541e2e

View File

@ -120,6 +120,10 @@ namespace UniversalEditor
private static Color m_Red = Color.FromRGBA(255, 0, 0);
public static Color Red { get { return m_Red; } }
private static Color m_Green = Color.FromRGBA(0, 255, 0);
public static Color Green { get { return m_Green; } set { m_Green = value; } }
private static Color m_Blue = Color.FromRGBA(0, 0, 255);
public static Color Blue { get { return m_Blue; } set { m_Blue = value; } }
private static Color m_LightGreen = Color.FromRGBA(144, 238, 144);
public static Color LightGreen { get { return m_LightGreen; } }