diff options
author | Petr Mrázek <peterix@gmail.com> | 2016-10-21 09:07:26 +0200 |
---|---|---|
committer | Petr Mrázek <peterix@gmail.com> | 2016-10-21 09:07:26 +0200 |
commit | 872cfe036d9472739939ad401dbe9511193d62ca (patch) | |
tree | 2d8356848c4955b09d66d6fc96924cc4da85ccb9 /application/themes/DarkTheme.h | |
parent | f07496ac6d42986266f3bff5093fa0009521ecd5 (diff) | |
download | PrismLauncher-872cfe036d9472739939ad401dbe9511193d62ca.tar.gz PrismLauncher-872cfe036d9472739939ad401dbe9511193d62ca.tar.bz2 PrismLauncher-872cfe036d9472739939ad401dbe9511193d62ca.zip |
GH-903 simple theme switching and dark theme
Diffstat (limited to 'application/themes/DarkTheme.h')
-rw-r--r-- | application/themes/DarkTheme.h | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/application/themes/DarkTheme.h b/application/themes/DarkTheme.h new file mode 100644 index 00000000..11e621a6 --- /dev/null +++ b/application/themes/DarkTheme.h @@ -0,0 +1,14 @@ +#pragma once + +#include "ITheme.h" + +class DarkTheme: public ITheme +{ +public: + virtual ~DarkTheme() {} + + QString id() override; + QString name() override; + QString appStyleSheet() override; + QPalette colorScheme() override; +}; |