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:
args[0] = ' \u001b[9' + c + 'm' + name + ' '
for:
args[0] = ' \u001b[3' + c + ';1m' + name + ' '
Regards