[longomatch] Add more preset colors



commit 70adab80b6ac88250f7ad6f96896d091863aae1c
Author: Andoni Morales Alastruey <ylatuya gmail com>
Date:   Tue May 27 18:39:44 2014 +0200

    Add more preset colors

 LongoMatch.Core/Common/Color.cs |    7 ++++++-
 1 files changed, 6 insertions(+), 1 deletions(-)
---
diff --git a/LongoMatch.Core/Common/Color.cs b/LongoMatch.Core/Common/Color.cs
index 04b7ac7..60a6e07 100644
--- a/LongoMatch.Core/Common/Color.cs
+++ b/LongoMatch.Core/Common/Color.cs
@@ -75,7 +75,12 @@ namespace LongoMatch.Common
                
                static public Color Black = new Color (0, 0, 0);
                static public Color White = new Color (ushort.MaxValue, ushort.MaxValue, ushort.MaxValue);
-               static public Color Grey = ColorFromRGB (190, 190, 190);
+               static public Color Red = new Color (ushort.MaxValue, 0, 0);
+               static public Color Green = new Color (0, ushort.MaxValue, 0);
+               static public Color Blue = new Color (0, 0, ushort.MaxValue);
+               static public Color Grey1 = ColorFromRGB (190, 190, 190);
+               static public Color Grey2 = ColorFromRGB (32, 32, 32);
+               static public Color Green1 = ColorFromRGB (99,192,56);
        }
 }
 


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]