Merge pull request #6030 from Daisouji/daisouji-midnight-theme

Adding Midnight Theme
This commit is contained in:
SachinVin 2022-06-04 14:10:05 +05:30 committed by GitHub
commit b7c1c21019
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
252 changed files with 2891 additions and 1 deletions

View file

@ -11,6 +11,8 @@ const Themes themes{{
{"Light Colorful", "colorful"},
{"Dark", "qdarkstyle"},
{"Dark Colorful", "colorful_dark"},
{"Midnight Blue", "qdarkstyle_midnight_blue"},
{"Midnight Blue Colorful", "colorful_midnight_blue"},
}};
Values values = {};

View file

@ -25,7 +25,7 @@ struct Shortcut {
ContextualShortcut shortcut;
};
using Themes = std::array<std::pair<const char*, const char*>, 4>;
using Themes = std::array<std::pair<const char*, const char*>, 6>;
extern const Themes themes;
struct GameDir {