From 9c2135705937e0b142039c74e61e899b8011ec5c Mon Sep 17 00:00:00 2001 From: Andreas Billmann Date: Mon, 8 Aug 2016 17:11:11 +0200 Subject: [PATCH] the error color should be more red --- src/main/java/ninja/javafx/smartcsv/fx/util/ColorConstants.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/ninja/javafx/smartcsv/fx/util/ColorConstants.java b/src/main/java/ninja/javafx/smartcsv/fx/util/ColorConstants.java index 80dc7e6..3479e64 100644 --- a/src/main/java/ninja/javafx/smartcsv/fx/util/ColorConstants.java +++ b/src/main/java/ninja/javafx/smartcsv/fx/util/ColorConstants.java @@ -31,5 +31,5 @@ package ninja.javafx.smartcsv.fx.util; */ public class ColorConstants { public static final String OK_COLOR = "#22aa22"; - public static final String ERROR_COLOR = "#ff6622"; + public static final String ERROR_COLOR = "#ff3333"; }