I'm trying to process 'top' output to set CPU performance data. When I just grep the output it is colorized:
or
The numbers are bold, and it adds a lot of unnecessary data to the output:

I tried to strip the color codes answer but it does not work. I want to avoid other much more complex answers in that question for sake of performance.
I've tried to disable colors by switching term mode but no luck:

So how can I disable the color output?
PS: I found how to get data: I can awk only numbers then it works, but still wonder if there is any way to disable color here.