The header() function outputs HTML tags setting the background,
text and link colours for the generated page based on configured
colour scheme. The init_config() function sets the global
variables $tb and $cb which should be used as
the background colour for table headers and body rows respectively,
as in this example :
print "<table border width=100%>\n";
print "<tr $tb> <td><b>Foo</b></td> <td><b>Bar</b></td> </tr>\n";
print "<tr $cb> <td>some value</td> <td>another value</td> </tr>\n";
...