Description |
 |
The init_pair() routine initializes a color pair so that the macro COLOR_PAIR(n) can be used as an attribute. Its first argument is the number of the color pair to be changed; the second argument is the number of the foreground color; the third argument is the number of the background color. The maximum number of color pairs and colors that the terminal can support are defined in the global variables COLOR_PAIRS and COLORS, respectively.
Each time that a color pair is initialized, the screen is refreshed and all occurrences of that color pair are updated to reflect the new definition.
The init_color() routine redefines the color using the number of the color and the RGB values for red, blue, and green as arguments.
The following default colors are defined in curses.h. (CURSES assumes that COLOR_BLACK) is the default background color for all terminals.)
Each time that a color is redefined with init_color(), the screen is refreshed, and all occurrences of that color are updated to reflect the new definition.
See Also |
 |
can_change_color(), color_content(), has_color(), pair_content(), start_color()