mirror of
https://github.com/SCToolsfactory/SCJMapper-V2.git
synced 2024-11-10 13:10:25 +00:00
8e46f91780
- improvement - uniquely identified devices with the same name (use GUID) - improvement - shows jsN assignment in Joystick tab - improvement - detection of the SC install path extended to one more Registry entry - fix - blend unmapped works properly now - fix #16 - manual entry of SC directory works now - update doc
27 lines
809 B
C#
27 lines
809 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 UnassignedColor = Color.WhiteSmoke;
|
|
|
|
static public Color DirtyColor = Color.Tomato;
|
|
|
|
static public Color SuccessColor = Color.GreenYellow;
|
|
static public Color ValidColor = Color.White;
|
|
static public Color InvalidColor = Color.Tomato;
|
|
static public Color ErrorColor = Color.Gold;
|
|
|
|
static public Color ProfileColor = Color.DarkKhaki;
|
|
static public Color MappingColor = Color.DarkSeaGreen;
|
|
}
|
|
}
|