mirror of
https://github.com/azahar-emu/azahar
synced 2025-11-13 02:19:57 +01:00
20 lines
525 B
C++
20 lines
525 B
C++
// Copyright Citra Emulator Project / Azahar Emulator Project
|
|
// Licensed under GPLv2 or any later version
|
|
// Refer to the license.txt file included.
|
|
|
|
#include "uisettings.h"
|
|
|
|
namespace UISettings {
|
|
|
|
const Themes themes{{
|
|
{"System", "default"},
|
|
{"System With Colorful Icons", "colorful"},
|
|
{"Dark", "qdarkstyle"},
|
|
{"Dark Colorful", "colorful_dark"},
|
|
{"Midnight Blue", "qdarkstyle_midnight_blue"},
|
|
{"Midnight Blue Colorful", "colorful_midnight_blue"},
|
|
}};
|
|
|
|
Values values = {};
|
|
} // namespace UISettings
|