mirror of
https://github.com/SCToolsfactory/SCJMapper-V2.git
synced 2024-11-10 13:10:25 +00:00
17 lines
421 B
C#
17 lines
421 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Text;
|
|||
|
using System.Drawing;
|
|||
|
|
|||
|
namespace SCJMapper_V2
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// Provide the colors used
|
|||
|
/// </summary>
|
|||
|
class MyColors
|
|||
|
{
|
|||
|
static public Color[] JColor = { Color.LightGreen, Color.LightBlue, Color.Khaki, Color.LightSalmon, Color.Beige, Color.Yellow, Color.Plum, Color.Lavender };
|
|||
|
static public Color DirtyColor = Color.Tomato;
|
|||
|
}
|
|||
|
}
|