Support high intensity colors

Close #671
pull/673/head
Junegunn Choi 8 years ago
parent 3bf51d8362
commit 0612074abe
No known key found for this signature in database
GPG Key ID: 254BC280FEF9C627

@ -140,6 +140,10 @@ func interpretCode(ansiCode string, prevState *ansiState) *ansiState {
state.fg = num - 30
} else if num >= 40 && num <= 47 {
state.bg = num - 40
} else if num >= 90 && num <= 97 {
state.fg = num - 90 + 8
} else if num >= 100 && num <= 107 {
state.bg = num - 100 + 8
}
}
case 1:

Loading…
Cancel
Save