From 29cf719a3ab23c045c394246443d9286724f9870 Mon Sep 17 00:00:00 2001 From: tterrag1098 Date: Wed, 24 May 2017 22:06:47 -0400 Subject: [PATCH] Change default background color to 75000000 --- src/main/java/com/tterrag/blur/Blur.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/java/com/tterrag/blur/Blur.java b/src/main/java/com/tterrag/blur/Blur.java index ec25fa0..91b4f4c 100644 --- a/src/main/java/com/tterrag/blur/Blur.java +++ b/src/main/java/com/tterrag/blur/Blur.java @@ -67,12 +67,12 @@ public class Blur { fadeTime = config.getInt("fadeTime", Configuration.CATEGORY_GENERAL, 200, 0, Integer.MAX_VALUE, "The time it takes for the blur to fade in, in ms."); colorFirst = Integer.parseUnsignedInt( - config.getString("gradientStartColor", Configuration.CATEGORY_GENERAL, "66000000", "The start color of the background gradient. Given in ARGB hex."), + config.getString("gradientStartColor", Configuration.CATEGORY_GENERAL, "75000000", "The start color of the background gradient. Given in ARGB hex."), 16 ); colorSecond = Integer.parseUnsignedInt( - config.getString("gradientEndColor", Configuration.CATEGORY_GENERAL, "66000000", "The end color of the background gradient. Given in ARGB hex."), + config.getString("gradientEndColor", Configuration.CATEGORY_GENERAL, "75000000", "The end color of the background gradient. Given in ARGB hex."), 16 );