Ignore hexadecimal colors

This commit is contained in:
7cc5c4f330d47060 2024-07-16 11:14:33 -04:00
parent c5852bb381
commit ae432da277

View file

@ -37,6 +37,8 @@ const parse=function(data, l, resetColor){
if(data.color){
if(data.color=="reset"){
out[0]+=resetColor[0]
} else if (data.color.startsWith("#")){
out[0]+="";
} else {
out[0]+=consoleColors[data.color];
}