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

Tertiary RGB colors are the six colors (namely pink, orange, violet, azure, spring, lawn) obtained by computing the mean between one of the three primary RGB colors (red, green, blue) and one the three secondary RGB colors (cyan, magenta, yellow) at the exclusion of the complementary color that would result into neutral gray. More...

Functions

bx_color bx_pink (void)
 another name for bx_rgb_to_color (0xFF,0x00,0x80); which is bx_mean_color (bx_red (), bx_magenta ());
bx_color bx_orange (void)
 another name for bx_rgb_to_color (0xFF,0x80,0x00); which is bx_mean_color (bx_red (), bx_yellow ());
bx_color bx_violet (void)
 another name for bx_rgb_to_color (0x80,0x00,0xFF); which is bx_mean_color (bx_blue (), bx_magenta ());
bx_color bx_azure (void)
 another name for bx_rgb_to_color (0x00, 0x80,0xFF); which is bx_mean_color (bx_blue (), bx_cyan ());
bx_color bx_spring (void)
 another name for bx_rgb_to_color (0x00, 0xFF,0x80); which is bx_mean_color (bx_green (), bx_cyan ());
bx_color bx_lawn (void)
 another name for bx_rgb_to_color (0x80, 0xFF,0x00); which is bx_mean_color (bx_green (), bx_yellow ());
bx_color bx_pale_pink (void)
 another name for bx_rgb_to_color (0xFF,0x80,0xC0); which is bx_mean_color (bx_pink (), bx_white ());
bx_color bx_pale_orange (void)
 another name for bx_rgb_to_color (0xFF,0xC0,0x80); which is bx_mean_color (bx_orange (), bx_white ());
bx_color bx_pale_violet (void)
 another name for bx_rgb_to_color (0xC0,0x80,0xFF); which is bx_mean_color (bx_violet (), bx_white ());
bx_color bx_pale_azure (void)
 another name for bx_rgb_to_color (0x80, 0xC0,0xFF); which is bx_mean_color (bx_azure (), bx_white ());
bx_color bx_pale_spring (void)
 another name for bx_rgb_to_color (0x80, 0xFF,0xC0); which is bx_mean_color (bx_spring (), bx_white ());
bx_color bx_pale_lawn (void)
 another name for bx_rgb_to_color (0xC0, 0xFF,0x80); which is bx_mean_color (bx_lawn (), bx_white ());
bx_color bx_dark_pink (void)
 another name for bx_rgb_to_color (0x80,0x00,0x40); which is bx_mean_color (bx_pink (), bx_black ());
bx_color bx_dark_orange (void)
 another name for bx_rgb_to_color (0x80,0x40,0x00); which is bx_mean_color (bx_orange (), bx_black ());
bx_color bx_dark_violet (void)
 another name for bx_rgb_to_color (0x40,0x00,0x80); which is bx_mean_color (bx_violet (), bx_black ());
bx_color bx_dark_azure (void)
 another name for bx_rgb_to_color (0x00, 0x40,0x80); which is bx_mean_color (bx_azure (), bx_black ());
bx_color bx_dark_spring (void)
 another name for bx_rgb_to_color (0x00, 0x80,0x40); which is bx_mean_color (bx_spring (), bx_black ());
bx_color bx_dark_lawn (void)
 another name for bx_rgb_to_color (0x40, 0x80,0x00); which is bx_mean_color (bx_lawn (), bx_black ());

Detailed Description

Tertiary RGB colors are the six colors (namely pink, orange, violet, azure, spring, lawn) obtained by computing the mean between one of the three primary RGB colors (red, green, blue) and one the three secondary RGB colors (cyan, magenta, yellow) at the exclusion of the complementary color that would result into neutral gray.

Function Documentation

bx_color bx_pink ( void  )

another name for bx_rgb_to_color (0xFF,0x00,0x80); which is bx_mean_color (bx_red (), bx_magenta ());

bx_color bx_orange ( void  )

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

bx_color bx_violet ( void  )

another name for bx_rgb_to_color (0x80,0x00,0xFF); which is bx_mean_color (bx_blue (), bx_magenta ());

bx_color bx_azure ( void  )

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

bx_color bx_spring ( void  )

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

bx_color bx_lawn ( void  )

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

bx_color bx_pale_pink ( void  )

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

bx_color bx_pale_orange ( void  )

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

bx_color bx_pale_violet ( void  )

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

bx_color bx_pale_azure ( void  )

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

bx_color bx_pale_spring ( void  )

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

bx_color bx_pale_lawn ( void  )

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

bx_color bx_dark_pink ( void  )

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

bx_color bx_dark_orange ( void  )

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

bx_color bx_dark_violet ( void  )

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

bx_color bx_dark_azure ( void  )

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

bx_color bx_dark_spring ( void  )

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

bx_color bx_dark_lawn ( void  )

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