MediaWiki talk:H3CSS.css
setting table color to white
I just noticed this was already set but wasn't working for all the TH in the table:
.wikitable {
color: #ffffff !important;
}
Targeting specifically the TH actually worked because a more specific selector takes precedence over a less specific one.
.wikitable th {
color: #fff!important
}