Skip to content

Commit

Permalink
Remove black color from Rascal prompt
Browse files Browse the repository at this point in the history
  • Loading branch information
Linus Wagner committed Jan 15, 2024
1 parent d962e8e commit bd26194
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/org/rascalmpl/repl/BaseREPL.java
Original file line number Diff line number Diff line change
Expand Up @@ -274,7 +274,7 @@ protected void stackTraceRequested() {
}

private String previousPrompt = "";
public static final String PRETTY_PROMPT_PREFIX = Ansi.ansi().reset().bold().fg(Color.BLACK).toString();
public static final String PRETTY_PROMPT_PREFIX = Ansi.ansi().reset().bold().toString();
public static final String PRETTY_PROMPT_POSTFIX = Ansi.ansi().boldOff().reset().toString();

protected void updatePrompt() {
Expand Down

0 comments on commit bd26194

Please sign in to comment.