From d81e2614e3b16107ac3bc2ccceecdc3d05df55c7 Mon Sep 17 00:00:00 2001 From: Janne Valkealahti Date: Wed, 20 Jul 2022 09:01:05 +0100 Subject: [PATCH] Fix styling issue - For title styling change from bold,fg:bright-white to bold which should work better with different terminal color settings as forcing it into bright white is a bad idea. - Fixes #476 --- .../java/org/springframework/shell/style/StyleSettings.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spring-shell-core/src/main/java/org/springframework/shell/style/StyleSettings.java b/spring-shell-core/src/main/java/org/springframework/shell/style/StyleSettings.java index 28fae371..084dd31a 100644 --- a/spring-shell-core/src/main/java/org/springframework/shell/style/StyleSettings.java +++ b/spring-shell-core/src/main/java/org/springframework/shell/style/StyleSettings.java @@ -92,7 +92,7 @@ public abstract class StyleSettings { public final static String TAG_HIGHLIGHT = "style-highlight"; public String title() { - return "bold,fg:bright-white"; + return "bold"; } public String value() {