update files

This commit is contained in:
nuintun
2015-11-25 10:59:33 +08:00
parent 513d1b0149
commit 8694c71a1b
6 changed files with 59 additions and 14 deletions

View File

@@ -107,11 +107,11 @@ module.exports = function (Terminal){
}
if (bgColor !== 256) {
out += 'background-color:' + Terminal.colors[bgColor] + ';';
out += 'background-color:' + this.colors[bgColor] + ';';
}
if (fgColor !== 257) {
out += 'color:' + Terminal.colors[fgColor] + ';';
out += 'color:' + this.colors[fgColor] + ';';
}
out += '">';