fusesource / jansi

Jansi is a small java library that allows you to use ANSI escape sequences to format your console output which works even on windows.
http://fusesource.github.io/jansi/
Apache License 2.0
1.11k stars 140 forks source link

bgBrightCyan changes Foreground colour #163

Closed markjfisher closed 4 years ago

markjfisher commented 4 years ago

Ansi.java line 483:

public Ansi bgBrightCyan() {
    return this.fgBright(Color.CYAN);
}
markjfisher commented 4 years ago

I've also noticed the normal bgCyan is wrong too

public Ansi bgCyan() {
    return this.fg(Color.CYAN);
}
hboutemy commented 4 years ago

good finding, fixed thank you