To anyone who want's to change the text colour:
<style>
body, td, th, tr{
color: red; /* red (via naming the color) */
}
.windowbg, #preview_body{
color: rgb(0,255,0); /* green (via RGB settings) */
}
h1, h2, h3, h4, h5, h6{
color: #0000ff; /* blue (via Hex value) */
}
</style>