You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Debug is using high intensity foreground color for highlighting namespaces (\u001b[90m–\u001b[97m) which is not standard and results in no colors showing in some terminals (for example Titanium Studio's). I suggest we replace high intensity with bold, meaning, replacing node.js l.90:
args[0]=' \u001b[9'+c+'m'+name+' '
for:
args[0]=' \u001b[3'+c+';1m'+name+' '
Regards
The text was updated successfully, but these errors were encountered:
dmarcelino
added a commit
to dmarcelino/debug
that referenced
this issue
Mar 2, 2015
Hi,
Debug is using high intensity foreground color for highlighting namespaces (\u001b[90m–\u001b[97m) which is not standard and results in no colors showing in some terminals (for example Titanium Studio's). I suggest we replace high intensity with bold, meaning, replacing node.js l.90:
for:
Regards
The text was updated successfully, but these errors were encountered: