Changed darken color reference to use existing grey color

This commit is contained in:
Collin Smith 2019-03-19 13:38:45 -07:00
parent 85b7602e15
commit ad1aeab45e

View File

@ -33,7 +33,7 @@ public class Colors {
public Color c12 = C12.cpy();
public Color highlight = new Color(0.15f, 0.15f, 0.12f, 0);
public Color darken = new Color(0.40f, 0.40f, 0.40f, 0);
public Color darken = GREY.cpy();//new Color(0.40f, 0.40f, 0.40f, 0);
public Color darkenRed = RED.cpy();//new Color(1.00f, 0.20f, 0.20f, 0);
public Color darkenGold = GOLD.cpy();