I never remembered to change my font color when making a post, so finding it rather annoying, i took it upon myself to write a greasemonkey script to automate the process.
Simply add this script to grease monkey with the specified include and you're good to go.
Code:
// ==UserScript==
// @name Kynox's Super Awesome Color Changer!
// @namespace http://kynox.wordpress.com
// @include http://www.mmowned.com/forums/*
// ==/UserScript==
window.addEventListener("load", function(z) {
var vB_Editor = unsafeWindow.vB_Editor;
if ( !vB_Editor )
return;
var Editor = vB_Editor['vB_Editor_QR'];
Editor.format( z, "forecolor", "#00FF00" );
document.innerHTML = document.innerHTML; // Without this, it doesn't work.. i really do not know why.
}, false);