I have noticed that when using Node.JS and attempting to utilize colors within it, the terminal removes the color from the output.
My scenario:
- Module named "Colors" from NPM
- console.log("Test".green)
Output:
Results in the output of Test uncolorized

Code:
`const colors = require("colors");
try{
console.log("Test".green);
} catch (error){
console.log(error);
}`