Skip to content

Instantly share code, notes, and snippets.

@K240-zz
Created April 19, 2013 20:49
Show Gist options
  • Save K240-zz/5423124 to your computer and use it in GitHub Desktop.
Save K240-zz/5423124 to your computer and use it in GitHub Desktop.
#include "mainwindow.h"
#include <QApplication>
#include <QStyleFactory>
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
a.setStyle( QStyleFactory::create("fusion") );
MainWindow w;
w.setStyleSheet(
"font-family: \"Verdana\";"
"font-size: 11px;"
"background-color: #323232;"
"selection-background-color: #d7801a;"
"alternate-background-color: #242424;"
"color: #c0c0c0;"
);
w.show();
return a.exec();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment