summaryrefslogtreecommitdiffstats
path: root/application/themes/BrightTheme.h
diff options
context:
space:
mode:
Diffstat (limited to 'application/themes/BrightTheme.h')
-rw-r--r--application/themes/BrightTheme.h16
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;
+};
+