diff options
author | Petr Mrázek <peterix@gmail.com> | 2016-11-01 08:50:23 +0100 |
---|---|---|
committer | Petr Mrázek <peterix@gmail.com> | 2016-11-01 09:04:37 +0100 |
commit | 2e0a45cc2f7b3b3b84d72905bb4217bc1cffbf85 (patch) | |
tree | de72c629b91b29ad274091101e5baf2f36ec3fed /application/themes/BrightTheme.h | |
parent | fe68d5946073d92bc585b2b5372c420218807c91 (diff) | |
download | MultiMC-2e0a45cc2f7b3b3b84d72905bb4217bc1cffbf85.tar MultiMC-2e0a45cc2f7b3b3b84d72905bb4217bc1cffbf85.tar.gz MultiMC-2e0a45cc2f7b3b3b84d72905bb4217bc1cffbf85.tar.lz MultiMC-2e0a45cc2f7b3b3b84d72905bb4217bc1cffbf85.tar.xz MultiMC-2e0a45cc2f7b3b3b84d72905bb4217bc1cffbf85.zip |
NOISSUE add bright theme to complement the dark theme
Same style, different colors.
Diffstat (limited to 'application/themes/BrightTheme.h')
-rw-r--r-- | application/themes/BrightTheme.h | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/application/themes/BrightTheme.h b/application/themes/BrightTheme.h new file mode 100644 index 00000000..e7e0f834 --- /dev/null +++ b/application/themes/BrightTheme.h @@ -0,0 +1,16 @@ +#pragma once + +#include "ITheme.h" + +class BrightTheme: public ITheme +{ +public: + virtual ~BrightTheme() {} + + QString qtTheme() override; + QString id() override; + QString name() override; + QString appStyleSheet() override; + QPalette colorScheme() override; +}; + |