citra/src/citra_qt/uisettings.cpp
Bartosz Kaszubowski ff66f723bb GUI: fix minor issues with dark themes
GUI: rename and reorder themes
2020-01-28 14:24:52 +01:00

18 lines
382 B
C++

// Copyright 2016 Citra Emulator Project
// Licensed under GPLv2 or any later version
// Refer to the license.txt file included.
#include "uisettings.h"
namespace UISettings {
const Themes themes{{
{"Light", "default"},
{"Light Colorful", "colorful"},
{"Dark", "qdarkstyle"},
{"Dark Colorful", "colorful_dark"},
}};
Values values = {};
} // namespace UISettings