qt_themes: add two colorful themes (#4004)
* qt_themes: add two colorful themes These two colorful themes are based on the Default and Dark themes, and contain icons that are colored rather than black and white. These icons come from https://icons8.com and they have been slightly revised by me. I'm pretty sure I was licensed to use them for Citra. * Add license for icons
This commit is contained in:
@@ -16,9 +16,11 @@ namespace UISettings {
|
||||
using ContextualShortcut = std::pair<QString, int>;
|
||||
using Shortcut = std::pair<QString, ContextualShortcut>;
|
||||
|
||||
static const std::array<std::pair<QString, QString>, 2> themes = {
|
||||
static const std::array<std::pair<QString, QString>, 4> themes = {
|
||||
{std::make_pair(QString("Default"), QString("default")),
|
||||
std::make_pair(QString("Dark"), QString("qdarkstyle"))}};
|
||||
std::make_pair(QString("Dark"), QString("qdarkstyle")),
|
||||
std::make_pair(QString("Colorful"), QString("colorful")),
|
||||
std::make_pair(QString("Colorful Dark"), QString("colorful_dark"))}};
|
||||
|
||||
struct GameDir {
|
||||
QString path;
|
||||
|
Reference in New Issue
Block a user