Skip to content

Instantly share code, notes, and snippets.

@K240-zz
Created February 17, 2013 02:00
Show Gist options
  • Select an option

  • Save K240-zz/4969699 to your computer and use it in GitHub Desktop.

Select an option

Save K240-zz/4969699 to your computer and use it in GitHub Desktop.
#include "mainwindow.h"
#include <QApplication>
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
a.setStyle( "Fusion");
MainWindow w;
w.setStyleSheet(
"font-family: \"Verdana\";"
"font-size: 11px;"
"background-color: #323232;"
"alternate-background-color: #000000;"
"color: #c0c0c0;"
"selection-color: #000000;"
"selection-background-color: rgb(255, 162, 13);"
);
w.show();
return a.exec();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment