bx-lib : the Basic X11 Library tuned for C beginners  1.0
Functions
Predefined secondary RGB colors
Color (the main attribute of the pen)

Secondary RGB colors are the three RGB colors (namely cyan, magenta and yellow) obtained by computing the sum of two of the three primary RGB colors (namely red, green, blue). They have two saturated channel and one zeroed channel. More...

Functions

bx_color bx_yellow (void)
 another name for bx_rgb_to_color (0xFF,0xFF,0x00); which is bx_add_color (bx_red (), bx_green ());
bx_color bx_cyan (void)
 another name for bx_rgb_to_color (0x00,0xFF,0xFF); which is bx_add_color (bx_green (), bx_blue ());
bx_color bx_magenta (void)
 another name for bx_rgb_to_color (0xFF,0x00,0xFF); which is bx_add_color (bx_red (), bx_blue ());
bx_color bx_pale_yellow (void)
 another name for bx_rgb_to_color (0xFF,0xFF,0xC0); which is bx_mean_color (bx_yellow (), bx_white ());
bx_color bx_pale_cyan (void)
 another name for bx_rgb_to_color (0xC0,0xFF,0xFF); which is bx_mean_color (bx_cyan (), bx_white ());
bx_color bx_pale_magenta (void)
 another name for bx_rgb_to_color (0xFF,0xC0,0xFF); which is bx_mean_color (bx_magenta (), bx_white ());
bx_color bx_dark_yellow (void)
 another name for bx_rgb_to_color (0x80,0x80,0x00); which is bx_mean_color (bx_yellow (), bx_black ());
bx_color bx_dark_cyan (void)
 another name for bx_rgb_to_color (0x00,0x80,0x80); which is bx_mean_color (bx_cyan (), bx_black ());
bx_color bx_dark_magenta (void)
 another name for bx_rgb_to_color (0xC0,0x00,0xC0); which is bx_mean_color (bx_magenta (), bx_black ());

Detailed Description

Secondary RGB colors are the three RGB colors (namely cyan, magenta and yellow) obtained by computing the sum of two of the three primary RGB colors (namely red, green, blue). They have two saturated channel and one zeroed channel.

Function Documentation

bx_color bx_yellow ( void  )

another name for bx_rgb_to_color (0xFF,0xFF,0x00); which is bx_add_color (bx_red (), bx_green ());

bx_color bx_cyan ( void  )

another name for bx_rgb_to_color (0x00,0xFF,0xFF); which is bx_add_color (bx_green (), bx_blue ());

bx_color bx_magenta ( void  )

another name for bx_rgb_to_color (0xFF,0x00,0xFF); which is bx_add_color (bx_red (), bx_blue ());

bx_color bx_pale_yellow ( void  )

another name for bx_rgb_to_color (0xFF,0xFF,0xC0); which is bx_mean_color (bx_yellow (), bx_white ());

bx_color bx_pale_cyan ( void  )

another name for bx_rgb_to_color (0xC0,0xFF,0xFF); which is bx_mean_color (bx_cyan (), bx_white ());

bx_color bx_pale_magenta ( void  )

another name for bx_rgb_to_color (0xFF,0xC0,0xFF); which is bx_mean_color (bx_magenta (), bx_white ());

bx_color bx_dark_yellow ( void  )

another name for bx_rgb_to_color (0x80,0x80,0x00); which is bx_mean_color (bx_yellow (), bx_black ());

bx_color bx_dark_cyan ( void  )

another name for bx_rgb_to_color (0x00,0x80,0x80); which is bx_mean_color (bx_cyan (), bx_black ());

bx_color bx_dark_magenta ( void  )

another name for bx_rgb_to_color (0xC0,0x00,0xC0); which is bx_mean_color (bx_magenta (), bx_black ());