Reputation: 12813
The text colour in the Run window during a webpack complition appears mainly in red. How can this be changed so that it is white (or another colour) and only red when there are errors?
Upvotes: 1
Views: 349
Reputation: 93848
you can't.
Webpack writes compilation progress to stderr stream. And it's highlighted according to Error output preferences (Preferences | Editor | Color Scheme | Console Colors
, Console/Error output
, default is red) in WebStorm. ANSI colors are not interpreted there (IDEA-137769)
Upvotes: 3