citra/src/citra_qt/uisettings.cpp

20 lines
491 B
C++
Raw Normal View History

2016-01-24 18:34:05 +01:00
// Copyright 2016 Citra Emulator Project
// Licensed under GPLv2 or any later version
// Refer to the license.txt file included.
2019-08-15 06:38:54 +02:00
#include "uisettings.h"
2016-01-24 18:34:05 +01:00
namespace UISettings {
const Themes themes{{
{"Light", "default"},
{"Light Colorful", "colorful"},
{"Dark", "qdarkstyle"},
{"Dark Colorful", "colorful_dark"},
{"Midnight Blue", "qdarkstyle_midnight_blue"},
{"Midnight Blue Colorful", "colorful_midnight_blue"},
}};
2016-01-24 18:34:05 +01:00
Values values = {};
} // namespace UISettings