I am trying to learn ncurses and was wondering if I can create my own custom colors. I am aware that by using init_color()
, I can modify any pre-defined colors
init_color()
is the only way to define new colors but the number of colors and color pairs available depends on the terminal you are using.
Many terminals can support up to 256 colors but on most systems the default TERM value is xterm
which only supports 8. xterm can be compiled with 256 color support and I think gnome-terminal supports 256. Try changing your TERM enviroment variable to xterm-256color
and check the COLORS variable in your ncurses program.