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
This commit is contained in:
Janne Valkealahti
2022-07-20 09:01:05 +01:00
parent 2862cc855e
commit d81e2614e3

View File

@@ -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() {