Skip to content

Commit

Permalink
Merge pull request rabchev#15 from blainesch/feature/colors
Browse files Browse the repository at this point in the history
Add the rest of the escape sequences.
  • Loading branch information
rabchev committed Dec 29, 2014
2 parents fa26b0d + 02d466d commit 1f25738
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion web/init.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
vt100 = {
"" : ["", false],
"0" : ["", false],
"00" : ["", false],
"1" : ["<b>", "</b>"],
"01" : ["<b>", "</b>"],
"22" : ["</b>", true],
Expand Down Expand Up @@ -45,7 +46,8 @@
"44" : ["<span style=\"background-color:blue;\">", "</span>"],
"45" : ["<span style=\"background-color:magenta;\">", "</span>"],
"46" : ["<span style=\"background-color:cyan;\">", "</span>"],
"47" : ["<span style=\"background-color:white;\">", "</span>"]
"47" : ["<span style=\"background-color:white;\">", "</span>"],
"49" : ["", false]
},
scrolling = false,
prompt = ">",
Expand Down

0 comments on commit 1f25738

Please sign in to comment.