diff options
| author | bunnei <bunneidev@gmail.com> | 2022-01-17 01:04:47 -0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-01-17 01:04:47 -0800 |
| commit | ca2d90477067b43475cd4176bed04c88a3e9bb64 (patch) | |
| tree | 1952d0c4936721a71c361d7fad67265f39f2e4b3 /src/yuzu/uisettings.h | |
| parent | 480b03b6456b2fef81226c449493f6425e5137da (diff) | |
| parent | 78e233c4600a13caee1cbb41d495b168fc6e1e79 (diff) | |
Merge pull request #7719 from gidoly/patch-6
Change default theme to Dark colorful
Diffstat (limited to 'src/yuzu/uisettings.h')
| -rw-r--r-- | src/yuzu/uisettings.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/yuzu/uisettings.h b/src/yuzu/uisettings.h index 402c4556d..f7298ddad 100644 --- a/src/yuzu/uisettings.h +++ b/src/yuzu/uisettings.h @@ -29,6 +29,15 @@ struct Shortcut { ContextualShortcut shortcut; }; +enum class Theme { + Default, + DefaultColorful, + Dark, + DarkColorful, + MidnightBlue, + MidnightBlueColorful, +}; + using Themes = std::array<std::pair<const char*, const char*>, 6>; extern const Themes themes; |
