From ad1aeab45e4b4096dee0143d2cb81f56843a2e28 Mon Sep 17 00:00:00 2001 From: Collin Smith Date: Tue, 19 Mar 2019 13:38:45 -0700 Subject: [PATCH] Changed darken color reference to use existing grey color --- core/src/com/riiablo/Colors.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/com/riiablo/Colors.java b/core/src/com/riiablo/Colors.java index 0e42baec..8308c3b5 100644 --- a/core/src/com/riiablo/Colors.java +++ b/core/src/com/riiablo/Colors.java @@ -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();