You can override the default font colours. For example, you may wish to display the table headings in red, and the table values in blue.
/* TABLE-SPECIFIC FORMATTING: */
th {background: #dddddd;
color: #000000;
padding: 0px 4px;
text-align: left;
border: solid 1px #cccccc;
font-size: 12px;
}
This is the source code that controls the appearance of the heading items. By default, the background colour is grey (#dddddd;), and the text colour is black (#000000;).
color: #ff0000;
td {margin: 10px;
padding-top: 1px;
padding-bottom: 1px;
padding-left: 4px;
padding-right: 4px;
border: solid 1px #cccccc;
font-size: 12px;
}
color: #0080ff;
This sets the default colour of the table data values to blue.