Disable gdb highlight colors

Viewed 1297

I'm using gdb on Fedora 32 and gdb prints information with highlight color. However the color has less contrast for example dark blue text on black background. How can I disable the highlight color?

1 Answers

Use set style enabled off to disable all styling, as the manual says.

Related