NOISSUE add bright theme to complement the dark theme

Same style, different colors.
This commit is contained in:
Petr Mrázek
2016-11-01 08:50:23 +01:00
parent fe68d59460
commit 2e0a45cc2f
4 changed files with 63 additions and 0 deletions

View File

@ -14,6 +14,7 @@
#include "themes/ITheme.h"
#include "themes/SystemTheme.h"
#include "themes/DarkTheme.h"
#include "themes/BrightTheme.h"
#include <iostream>
#include <QDir>
@ -1010,6 +1011,7 @@ void MultiMC::initThemes()
};
insertTheme(new SystemTheme());
insertTheme(new DarkTheme());
insertTheme(new BrightTheme());
}
void MultiMC::setApplicationTheme(const QString& name)