Sheepluva suggestion - brighten so that the team colours look less muddy, if some artist hates the result, they are welcome to clean it up
#include <QtGui/QApplication>
#include "mainwindow.h"
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
MainWindow w;
w.show();
return a.exec();
}