diff --git a/src/components/sites/doExerciseSite/consolePanel/consoleItem.tsx b/src/components/sites/doExerciseSite/consolePanel/consoleItem.tsx
index d400f29ef68f18c1f38acb85301e27ff7540c055..f1e70ac967106c4b3ded8fb12ae0a63fcfdd2d03 100644
--- a/src/components/sites/doExerciseSite/consolePanel/consoleItem.tsx
+++ b/src/components/sites/doExerciseSite/consolePanel/consoleItem.tsx
@@ -191,34 +191,34 @@ const asciiColorCodeMap: AsciiColorCodeMap = {
   '\\033[46m': {
     backgroundColor: 'rgb(44,181,233)'
   },
-  '\\033[47m': {
+  '\\033[47m': { //white
     backgroundColor: 'rgb(204,204,204)'
   },
 
   //bg color bright
   '\\033[100m': {
-    color: 'rgb(\t128,128,128)'
+    backgroundColor: 'rgb(\t128,128,128)'
   },
   '\\033[101m': {
-    color: 'rgb(255,0,0)'
+    backgroundColor: 'rgb(255,0,0)'
   },
   '\\033[102m': {
-    color: 'rgb(0,255,0)'
+    backgroundColor: 'rgb(0,255,0)'
   },
   '\\033[103m': {
-    color: 'rgb(255,255,0)'
+    backgroundColor: 'rgb(255,255,0)'
   },
   '\\033[104m': {
-    color: 'rgb(0,0,255)'
+    backgroundColor: 'rgb(0,0,255)'
   },
   '\\033[105m': {
-    color: 'rgb(255,0,255)'
+    backgroundColor: 'rgb(255,0,255)'
   },
   '\\033[106m': {
-    color: 'rgb(0,255,255)'
+    backgroundColor: 'rgb(0,255,255)'
   },
   '\\033[107m': {
-    color: 'rgb(255,255,255)'
+    backgroundColor: 'rgb(255,255,255)'
   },
 }