Skip to content
Snippets Groups Projects
Commit 3f9e313e authored by Janis Daniel Dähne's avatar Janis Daniel Dähne
Browse files

- fixed console background colors were interpreted as foreground colorrs

parent 8212015e
Branches
No related tags found
No related merge requests found
...@@ -191,34 +191,34 @@ const asciiColorCodeMap: AsciiColorCodeMap = { ...@@ -191,34 +191,34 @@ const asciiColorCodeMap: AsciiColorCodeMap = {
'\\033[46m': { '\\033[46m': {
backgroundColor: 'rgb(44,181,233)' backgroundColor: 'rgb(44,181,233)'
}, },
'\\033[47m': { '\\033[47m': { //white
backgroundColor: 'rgb(204,204,204)' backgroundColor: 'rgb(204,204,204)'
}, },
//bg color bright //bg color bright
'\\033[100m': { '\\033[100m': {
color: 'rgb(\t128,128,128)' backgroundColor: 'rgb(\t128,128,128)'
}, },
'\\033[101m': { '\\033[101m': {
color: 'rgb(255,0,0)' backgroundColor: 'rgb(255,0,0)'
}, },
'\\033[102m': { '\\033[102m': {
color: 'rgb(0,255,0)' backgroundColor: 'rgb(0,255,0)'
}, },
'\\033[103m': { '\\033[103m': {
color: 'rgb(255,255,0)' backgroundColor: 'rgb(255,255,0)'
}, },
'\\033[104m': { '\\033[104m': {
color: 'rgb(0,0,255)' backgroundColor: 'rgb(0,0,255)'
}, },
'\\033[105m': { '\\033[105m': {
color: 'rgb(255,0,255)' backgroundColor: 'rgb(255,0,255)'
}, },
'\\033[106m': { '\\033[106m': {
color: 'rgb(0,255,255)' backgroundColor: 'rgb(0,255,255)'
}, },
'\\033[107m': { '\\033[107m': {
color: 'rgb(255,255,255)' backgroundColor: 'rgb(255,255,255)'
}, },
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment