Ejemplo n.º 1
0
 public DeColorContent()
 {
     this.critical  = new DeSkinColor(new Color(1.0f, 0.8458418f, 0.4411765f, 1.0f), new Color(1.0f, 0.1691176f, 0.1691176f, 1.0f));
     this.def       = new DeSkinColor(new Color(0.7f, 0.7f, 0.7f, 1f));
     this.toggleOff = new DeSkinColor(new Color(1.0f, 0.9686275f, 0.6980392f, 1.0f), new Color(0.8117647f, 1.0f, 0.5607843f, 1.0f));
     this.toggleOn  = new DeSkinColor(new Color(0.3529412f, 0.3647059f, 0.3647059f, 1.0f), new Color(0.5294118f, 0.5294118f, 0.5294118f, 1.0f));
 }
Ejemplo n.º 2
0
 public DeColorBG()
 {
     this.critical  = Color.red;
     this.def       = Color.white;
     this.divider   = new DeSkinColor(new Color(0.5f, 0.5f, 0.5f, 1f), Color.black);
     this.toggleOff = Color.white;
     this.toggleOn  = Color.green;
 }
Ejemplo n.º 3
0
 public DeSkinColor(Color color)
 {
     this      = new DeSkinColor();
     this.free = color;
     this.pro  = color;
 }