pineapple-src/src/yuzu/uisettings.cpp

21 lines
501 B
C++
Raw Normal View History

2020-12-28 10:15:37 -05:00
// Copyright 2016 Citra Emulator Project
// Licensed under GPLv2 or any later version
// Refer to the license.txt file included.
#include "yuzu/uisettings.h"
namespace UISettings {
const Themes themes{{
2021-11-25 05:41:27 -05:00
{"Default", "default"},
{"Default Colorful", "colorful"},
2020-12-28 10:15:37 -05:00
{"Dark", "qdarkstyle"},
{"Dark Colorful", "colorful_dark"},
{"Midnight Blue", "qdarkstyle_midnight_blue"},
{"Midnight Blue Colorful", "colorful_midnight_blue"},
}};
Values values = {};
} // namespace UISettings