From 785cd3f71358072065dded7660c43890ffd58372 Mon Sep 17 00:00:00 2001 From: Benjamin Dweck Date: Fri, 25 Sep 2020 11:36:08 +0200 Subject: [PATCH] Yellow still was being a jerk --- src/main/java/io/rudefox/burrow/Dice8EntropyGenerator.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/io/rudefox/burrow/Dice8EntropyGenerator.java b/src/main/java/io/rudefox/burrow/Dice8EntropyGenerator.java index 80e1166..59baff0 100644 --- a/src/main/java/io/rudefox/burrow/Dice8EntropyGenerator.java +++ b/src/main/java/io/rudefox/burrow/Dice8EntropyGenerator.java @@ -11,7 +11,7 @@ import static com.diogonunes.jcolor.Attribute.*; public class Dice8EntropyGenerator { public static final AnsiFormat GREEN_STYLE = new AnsiFormat(BLACK_TEXT(), GREEN_BACK(), BOLD()); - public static final AnsiFormat YELLOW_STYLE = new AnsiFormat(BLACK_TEXT(), YELLOW_BACK(), BOLD()); + public static final AnsiFormat YELLOW_STYLE = new AnsiFormat(BLACK_TEXT(), BACK_COLOR(11), BOLD()); public static final AnsiFormat RED_STYLE = new AnsiFormat(WHITE_TEXT(), RED_BACK(), BOLD()); public static final int DICE_PER_ROLL = 11;